/*
  The Frame - Bolinao Beach Cabin
  styles.css

  Design rationale: Deep ocean-night dark grounds the beachfront A-frame cabin identity;
  coral-sunrise accent captures the Bolinao dawn breaking over Patar Beach, and warm sand
  highlight echoes the pristine coastline.
  Heading: Bellefair — an elegant, romantic serif evoking calm seaside mornings
  Body: Questrial — a clean geometric sans that lets the scenery do the talking
*/

/* ============================================================
   01. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --dark:       #0C1A1E;
  --bg-alt:     #122028;
  --accent:     #E0855A;
  --highlight:  #D4B870;
  --cream:      #F5F1EB;
  --cream-dim:  rgba(245,241,235,0.65);
  --accent-dim: rgba(224,133,90,0.14);
  --border:     rgba(224,133,90,0.22);
  --ff-display: 'Bellefair', Georgia, serif;
  --ff-body:    'Questrial', Arial, sans-serif;

  --radius:     6px;
  --radius-lg:  14px;
  --shadow:     0 4px 28px rgba(0,0,0,0.45);
  --transition: 0.3s ease;
  --max-w:      1200px;
}

/* ============================================================
   02. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: var(--ff-body);
}

/* ============================================================
   03. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; }

p {
  font-size: 1rem;
  color: var(--cream-dim);
  max-width: 68ch;
}

.section-label {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--ff-display);
  color: var(--cream);
}

.section-subtitle {
  color: var(--cream-dim);
  margin-top: 0.75rem;
}

/* ============================================================
   04. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--alt {
  background: var(--bg-alt);
}

.text-center { text-align: center; }
.text-accent  { color: var(--accent); }
.text-highlight { color: var(--highlight); }

/* ============================================================
   05. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-family: var(--ff-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}

.btn-primary:hover {
  background: #c96c3e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224,133,90,0.35);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--cream);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--accent);
  border: 1px solid var(--accent);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

/* ============================================================
   06. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem clamp(1.25rem, 5vw, 2.5rem);
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(12,26,30,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
}

.nav-brand span {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--bg-alt);
  z-index: 999;
  flex-direction: column;
  padding: 5.5rem 2rem 2rem;
  gap: 0.5rem;
  box-shadow: -6px 0 32px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform var(--transition);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer a {
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--cream-dim);
  transition: color var(--transition);
}

.nav-drawer a:hover {
  color: var(--accent);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
}

/* ============================================================
   07. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-bg.loaded {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,26,30,0.88) 0%,
    rgba(12,26,30,0.35) 50%,
    rgba(12,26,30,0.12) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.hero-content .container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  color: var(--cream);
  max-width: 14ch;
}

.hero-sub {
  color: var(--cream-dim);
  font-size: 1.05rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.75rem;
  right: clamp(1.25rem, 5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  z-index: 2;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Inner page hero (shorter) */
.page-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-overlay {
  background: linear-gradient(
    to right,
    rgba(12,26,30,0.82) 0%,
    rgba(12,26,30,0.4) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.page-hero h1 {
  color: var(--cream);
  max-width: 16ch;
}

.page-hero p {
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 50ch;
}

/* ============================================================
   08. FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--bg-alt);
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.feature-card h4 {
  font-family: var(--ff-display);
  color: var(--cream);
  font-size: 1rem;
}

.feature-card p {
  font-size: 0.88rem;
  max-width: none;
  color: var(--cream-dim);
}

/* ============================================================
   09. OFFERINGS / GRID
   ============================================================ */
.offerings-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.offerings-header {
  margin-bottom: 3rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.offering-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
}

.offering-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.offering-tile:hover img {
  transform: scale(1.07);
}

.offering-tile-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(to top, rgba(12,26,30,0.85) 0%, transparent 100%);
}

/* ============================================================
   10. BRAND TEASER (50/50 split)
   ============================================================ */
.brand-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.brand-teaser-img {
  position: relative;
  overflow: hidden;
}

.brand-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.brand-teaser-img:hover img {
  transform: scale(1.04);
}

.brand-teaser-content {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  gap: 1.25rem;
}

.brand-teaser-content h2 {
  color: var(--cream);
}

.brand-teaser-content p {
  max-width: none;
}

/* ============================================================
   11. STATS ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 0.4rem;
}

/* ============================================================
   12. REVIEW CARDS
   ============================================================ */
.reviews-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color var(--transition), transform var(--transition);
}

.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--highlight);
}

.review-stars svg {
  width: 16px;
  height: 16px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--cream-dim);
  font-style: italic;
  line-height: 1.8;
  max-width: none;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.review-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--cream);
}

.review-source {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ============================================================
   13. SOCIAL CTA
   ============================================================ */
.social-cta-section {
  background: var(--bg-alt);
  padding-block: clamp(3rem, 6vw, 5rem);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-cta-section h2 {
  margin-bottom: 0.75rem;
}

.social-cta-section p {
  margin-inline: auto;
  margin-bottom: 2rem;
}

.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--cream);
  transition: var(--transition);
  background: transparent;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* ============================================================
   14. SOCIAL FEED GRID
   ============================================================ */
.social-feed-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 2rem;
}

.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.feed-item:hover img {
  transform: scale(1.08);
}

.feed-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,26,30,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.feed-overlay svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.feed-item:hover .feed-overlay {
  opacity: 1;
}

/* ============================================================
   15. ABOUT PAGE SPECIFICS
   ============================================================ */
.story-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.philosophy-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg-alt);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color var(--transition), transform var(--transition);
}

.philosophy-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.philosophy-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}

.philosophy-card h3 {
  font-size: 1.2rem;
  color: var(--cream);
}

.philosophy-card p {
  font-size: 0.9rem;
  max-width: none;
}

.values-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.value-item:hover {
  background: var(--accent-dim);
}

.value-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  color: var(--border);
  line-height: 1;
  transition: color var(--transition);
}

.value-item:hover .value-num {
  color: var(--accent);
}

.value-body h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.value-body p {
  font-size: 0.9rem;
  max-width: none;
}

.timeline-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg-alt);
}

.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(224,133,90,0.45);
}

.timeline-year {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--cream-dim);
  max-width: none;
}

/* About CTA Split */
.about-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.about-cta-img {
  overflow: hidden;
}

.about-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta-content {
  background: var(--dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
  gap: 1.25rem;
  border-left: 1px solid var(--border);
}

.about-cta-content h2 {
  color: var(--cream);
}

.about-cta-content p {
  max-width: none;
}

.about-cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ============================================================
   16. ROOMS PAGE
   ============================================================ */
.disclaimer-bar {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem clamp(1.25rem, 5vw, 2.5rem);
  text-align: center;
  font-size: 0.82rem;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}

.cabin-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.cabin-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.cabin-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cabin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.cabin-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.78rem;
  color: var(--cream-dim);
  background: var(--accent-dim);
}

.cabin-cta {
  margin-top: 1rem;
}

.cabin-details-photos {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 0.75rem;
  height: 540px;
}

.cabin-photo {
  border-radius: var(--radius);
  overflow: hidden;
}

.cabin-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cabin-photo:hover img {
  transform: scale(1.05);
}

.amenity-section {
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--bg-alt);
}

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.amenity-category {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.amenity-category h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.amenity-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.amenity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.amenity-item::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.55em;
}

.checkin-section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.checkin-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.checkin-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
}

.checkin-time {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--highlight);
  margin-bottom: 0.3rem;
}

.checkin-card p {
  font-size: 0.82rem;
  max-width: none;
  text-align: center;
  margin-inline: auto;
}

.rooms-cta {
  text-align: center;
  padding-block: clamp(4rem, 8vw, 6rem);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.rooms-cta h2 {
  margin-bottom: 0.75rem;
}

.rooms-cta p {
  margin-inline: auto;
  margin-bottom: 2rem;
}

/* ============================================================
   17. GALLERY PAGE
   ============================================================ */
.gallery-filter-bar {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 70px;
  background: var(--dark);
  z-index: 100;
}

.filter-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.masonry-grid {
  column-count: 3;
  column-gap: 0.75rem;
  padding-block: 2rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img {
  transform: scale(1.04);
}

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(12,26,30,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.masonry-overlay svg {
  width: 36px;
  height: 36px;
  color: #fff;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 16px 60px rgba(0,0,0,0.6);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245,241,235,0.12);
  color: var(--cream);
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(245,241,235,0.25);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245,241,235,0.1);
  color: var(--cream);
  transition: background var(--transition);
  z-index: 2001;
}

.lightbox-nav:hover {
  background: rgba(245,241,235,0.22);
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--cream-dim);
  letter-spacing: 0.1em;
}

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-block-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-block-value {
  font-size: 0.95rem;
  color: var(--cream);
}

.contact-block-value a {
  color: var(--cream);
  transition: color var(--transition);
}

.contact-block-value a:hover {
  color: var(--accent);
}

.contact-social-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}

.contact-social-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-social-link:hover {
  color: var(--accent);
}

/* Inquiry Form */
.inquiry-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.inquiry-form h3 {
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  color: var(--cream);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select option {
  background: var(--dark);
  color: var(--cream);
}

.form-submit {
  margin-top: 0.5rem;
}

.form-note {
  font-size: 0.78rem;
  color: var(--cream-dim);
  max-width: none;
}

/* Map Placeholder */
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.map-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
}

.map-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.map-placeholder h4 {
  font-family: var(--ff-display);
  color: var(--cream);
  font-size: 1.2rem;
}

.map-placeholder p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  text-align: center;
  max-width: none;
}

/* FAQ */
.faq-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--bg-alt);
}

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  color: var(--cream);
  font-family: var(--ff-display);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--accent);
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  transition: transform var(--transition);
}

.faq-item.open .faq-icon svg {
  transform: rotate(45deg);
}

.faq-item.open .faq-icon {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer-inner {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
}

.footer-logo-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--cream-dim);
  font-style: italic;
  max-width: none;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: var(--transition);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--cream);
}

.footer-reserve {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-reserve p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  max-width: none;
}

.footer-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--cream-dim);
  max-width: none;
}

/* ============================================================
   20. SCROLL ANIMATION (fade-up)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   21. UTILITY CLASSES
   ============================================================ */
.divider {
  width: 48px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 0.75rem;
}

.tag {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tag-accent {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
}

/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .brand-teaser {
    grid-template-columns: 1fr;
  }

  .brand-teaser-img {
    min-height: 380px;
  }

  .about-cta-split {
    grid-template-columns: 1fr;
  }

  .about-cta-img {
    min-height: 300px;
  }

  .cabin-intro {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .navbar > .btn-primary {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-drawer {
    display: flex;
  }

  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .social-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-grid {
    column-count: 2;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .social-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry-grid {
    column-count: 1;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .checkin-cards {
    grid-template-columns: 1fr 1fr;
  }
}
