/* ============================================================
   Casa dos Barcos — Shared Stylesheet
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --moss:  #3a4a35;
  --sage:  #7a9070;
  --lake:  #4a6e7a;
  --mist:  #c8d8cc;
  --stone: #e8e2d8;
  --cream: #f5f2ec;
  --dark:  #1e2a1e;
  --gold:  #b89a5a;
  --text:  #2c3825;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Typography ─────────────────────────────────────────── */
.section-label {
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
}
.section-title em { font-style: italic; color: var(--lake); }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 0.95rem 2.6rem;
  background: var(--gold);
  color: white;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--moss); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 0.95rem 2.6rem;
  border: 1.5px solid var(--moss);
  color: var(--moss);
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-outline:hover { background: var(--moss); color: white; transform: translateY(-2px); }

/* ── Navigation ─────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 1.5rem 3rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.32) 0%, transparent 100%);
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#nav.scrolled, #nav.solid {
  background: rgba(245,242,236,0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(58,74,53,0.1);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: white;
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: color 0.4s, text-shadow 0.4s;
  flex-shrink: 0;
  margin-right: auto;
}
#nav.scrolled .nav-logo, #nav.solid .nav-logo { color: var(--moss); text-shadow: none; }

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
  margin-right: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,1);
  text-decoration: none;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
  transition: color 0.3s;
}
#nav.scrolled .nav-links a, #nav.solid .nav-links a { text-shadow: none; }
#nav.scrolled .nav-links a, #nav.solid .nav-links a { color: var(--moss); }
.nav-links a:hover { color: var(--gold) !important; }
.nav-links a.active { color: var(--gold) !important; }

/* Desktop CTA button */
.nav-cta {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 1.3rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
#nav.scrolled .nav-cta, #nav.solid .nav-cta { border-color: var(--gold); color: var(--gold); }
.nav-cta:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: white !important; }

/* Mobile group — hidden on desktop */
.nav-mobile { display: none; align-items: center; gap: 1rem; }

.nav-cta-mobile {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.45rem 1rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: white;
  white-space: nowrap;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
#nav.scrolled .nav-cta-mobile, #nav.solid .nav-cta-mobile { border-color: var(--gold); color: var(--gold); }
.nav-cta-mobile:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: white !important; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: background 0.4s, transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
#nav.scrolled .nav-toggle span, #nav.solid .nav-toggle span { background: var(--moss); }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
#nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(300px, 80vw);
  height: 100%;
  background: var(--dark);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0.38s;
}
#nav-drawer.open {
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), visibility 0s linear 0s;
}
#nav-drawer ul { list-style: none; display: flex; flex-direction: column; gap: 2.8rem; text-align: center; }
#nav-drawer ul a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--mist);
  text-decoration: none;
  transition: color 0.3s;
  display: block;
}
#nav-drawer ul a:hover, #nav-drawer ul a.active { color: var(--gold); }

/* Language switcher */
.lang-switcher { display:flex; gap:.3rem; align-items:center; margin-left:.75rem; }
.lang-switcher a {
  font-size:.75rem; font-weight:600; letter-spacing:.12em;
  color: rgba(255,255,255,1);
  text-decoration:none; padding:.25rem .45rem; border-radius:2px; transition:color .2s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.lang-switcher a:hover, .lang-switcher a.active { color:var(--gold); }
#nav.scrolled .lang-switcher a, #nav.solid .lang-switcher a { color: var(--moss); text-shadow: none; }
#nav.scrolled .lang-switcher a:hover, #nav.scrolled .lang-switcher a.active,
#nav.solid .lang-switcher a:hover, #nav.solid .lang-switcher a.active { color: var(--gold); }
#nav-drawer .lang-switcher { margin-left:0; margin-top:2.8rem; justify-content:center; }
#nav-drawer .lang-switcher a { color: rgba(200,216,204,0.9); font-size:.8rem; padding:.35rem .55rem; text-shadow:none; }
#nav-drawer .lang-switcher a:hover, #nav-drawer .lang-switcher a.active { color: var(--gold); }

/* Backdrop */
#nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s, visibility 0s linear 0.38s;
}
#nav-backdrop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.38s, visibility 0s linear 0s;
}

/* ── Hero (full-screen, homepage) ───────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,32,20,0.08) 0%, rgba(20,32,20,0.6) 100%);
}
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.0); } }

.hero-content {
  position: relative;
  padding: 0 6vw 8vh;
  animation: fadeUp 1.2s 0.3s both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mist);
  margin-bottom: 1.8rem;
  border-left: 2px solid var(--gold);
  padding-left: 0.8rem;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  line-height: 1.0;
  color: white;
  margin-bottom: 1.4rem;
}
.hero h1 em { font-style: italic; color: var(--mist); }
.hero-sub {
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.74);
  max-width: 440px;
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  animation: fadeUp 1s 1.2s both;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent);
  animation: scrollDrop 2s 1.5s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.35); opacity: 0.4; }
}

/* ── Page Hero (interior pages) ─────────────────────────── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,32,20,0.2) 0%, rgba(20,32,20,0.65) 100%);
}
.page-hero-content {
  position: relative;
  padding: 0 6vw 5vh;
  animation: fadeUp 0.9s 0.2s both;
}
.page-hero-content .section-label { color: rgba(200,216,204,0.75); }
.page-hero-content .section-label::before { background: var(--gold); }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 5vw, 5rem);
  color: white;
  line-height: 1.1;
}
.page-hero h1 em { font-style: italic; color: var(--mist); }

/* ── Intro Strip ────────────────────────────────────────── */
.intro-strip {
  background: var(--moss);
  color: var(--mist);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  text-align: center;
}
.intro-item {
  padding: 2.2rem 1.5rem;
  border-right: 1px solid rgba(200,216,204,0.14);
}
.intro-item:last-child { border-right: none; }
.intro-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}
.intro-item p { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* ── Sections ───────────────────────────────────────────── */
section { padding: 7rem 6vw; }

/* ── About / Two-column ─────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

.col-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #4a5440;
  margin-top: 1.4rem;
}
.col-text p + p { margin-top: 1rem; }
.col-text .quote {
  margin-top: 2.4rem;
  padding-left: 1.6rem;
  border-left: 3px solid var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--moss);
}
.col-text .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.2rem;
  transition: color 0.3s, border-color 0.3s;
}
.col-text .cta-link:hover { color: var(--gold); }

/* ── Visual stack (overlapping images) ──────────────────── */
.img-stack { position: relative; height: 520px; }
.img-stack-main {
  position: absolute;
  top: 0; left: 0; right: 3rem; bottom: 3rem;
  overflow: hidden;
}
.img-stack-main img { width: 100%; height: 100%; object-fit: cover; object-position: 30% center; display: block; }
.img-stack-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 54%; height: 44%;
  overflow: hidden;
  border: 6px solid var(--cream);
  box-shadow: 0 8px 32px rgba(30,42,30,0.2);
}
.img-stack-accent img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Suites ─────────────────────────────────────────────── */
.suites-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}
.suites-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.suite-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.suite-card.tall { grid-row: span 2; }
.suite-img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.suite-card.tall .suite-img { min-height: 600px; }
.suite-card:hover .suite-img { transform: scale(1.06); }
.suite-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,32,20,0.8) 0%, transparent 52%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 0.88;
  transition: opacity 0.3s;
}
.suite-card:hover .suite-overlay { opacity: 1; }
.suite-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 300;
  color: white;
  margin-bottom: 0.3rem;
}
.suite-detail { font-size: 0.74rem; letter-spacing: 0.09em; color: rgba(255,255,255,0.68); line-height: 1.6; }

/* ── Amenities ──────────────────────────────────────────── */
.amenities-section { background: var(--dark); color: var(--mist); }
.amenities-section .section-title { color: var(--mist); }
.amenities-section .section-title em { color: var(--gold); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
.amenity {
  text-align: center;
  padding: 2.4rem 1.2rem;
  border: 1px solid rgba(200,216,204,0.1);
  transition: border-color 0.3s, transform 0.3s;
}
.amenity:hover { border-color: var(--gold); transform: translateY(-4px); }
.amenity-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.amenity h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.6rem;
}
.amenity p { font-size: 0.74rem; letter-spacing: 0.05em; line-height: 1.75; color: rgba(200,216,204,0.58); }

/* ── Gallery mosaic ─────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 320px 280px;
  gap: 3px;
}
.gal-item { overflow: hidden; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease, filter 0.4s;
  filter: saturate(0.9);
}
.gal-item:hover img { transform: scale(1.06); filter: saturate(1.1); }
.gal-item.tall { grid-row: span 2; }

/* ── Landscape split ────────────────────────────────────── */
.landscape-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 560px;
  background: var(--moss);
  color: var(--mist);
}
.landscape-text {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.landscape-text .section-label { color: var(--sage); }
.landscape-text .section-title { color: white; }
.landscape-text .section-title em { color: var(--mist); }
.landscape-text p {
  margin-top: 1.4rem;
  font-size: 0.92rem;
  line-height: 1.9;
  color: rgba(200,216,204,0.88);
}
.landscape-text .highlights li {
  color: rgba(200,216,204,0.88);
  font-size: 0.85rem;
}
.landscape-text .highlights li::before {
  color: var(--gold);
  font-weight: 600;
}
.highlights { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 0.85rem; }
.highlights li {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--text);
  padding-left: 1.4rem;
  position: relative;
}
.highlights li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }
.landscape-photo { overflow: hidden; }
.landscape-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── CTA Section ────────────────────────────────────────── */
.cta-section {
  text-align: center;
  background: var(--cream);
  padding: 8rem 6vw;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: 'FURNAS';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22vw;
  font-weight: 300;
  color: rgba(58,74,53,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}
.cta-section .section-label { justify-content: center; }
.cta-section .section-title { margin-bottom: 1.4rem; }
.cta-section > p {
  font-size: 1rem;
  line-height: 1.85;
  color: #5a6a50;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.cta-buttons { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* ── Distances grid ─────────────────────────────────────── */
.distances-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(58,74,53,0.12);
  margin-top: 4rem;
}
.distance-item {
  background: var(--cream);
  padding: 2.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.dist-km {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
  min-width: 5rem;
}
.dist-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.dist-info p { font-size: 0.73rem; letter-spacing: 0.07em; color: var(--sage); }

/* ── Experiences grid ───────────────────────────────────── */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 4rem;
}
.exp-card { overflow: hidden; }
.exp-img { width: 100%; height: 260px; object-fit: cover; display: block; transition: transform 0.6s; }
.exp-card:hover .exp-img { transform: scale(1.04); }
.exp-info { padding: 1.6rem 0 0; }
.exp-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.exp-info p { font-size: 0.87rem; line-height: 1.8; color: #4a5440; }

/* ── Experiences booking layout ─────────────────────────── */
.exp-intro { max-width: 760px; }
.exp-intro p {
  font-size: 1rem;
  line-height: 1.9;
  color: #4a5440;
  margin-top: 1.35rem;
}
.booking-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.75fr);
  gap: 2rem;
  align-items: start;
}
.partner-note {
  background:
    linear-gradient(180deg, rgba(184,154,90,0.14), rgba(184,154,90,0.04)),
    rgba(255,255,255,0.82);
  border: 1px solid rgba(58,74,53,0.1);
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(58,74,53,0.08);
}
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.mini-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}
.partner-note h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.08;
  margin: 1rem 0 1.1rem;
}
.partner-note p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #55624b;
}
.partner-list {
  list-style: none;
  display: grid;
  gap: 0.9rem;
  margin-top: 1.4rem;
}
.partner-list li {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.7;
  color: var(--text);
  padding-left: 1.2rem;
  position: relative;
}
.partner-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.booking-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(58,74,53,0.12);
  margin-top: 3.2rem;
}
.summary-card {
  background: rgba(255,255,255,0.86);
  padding: 1.8rem 1.5rem;
  min-height: 160px;
}
.summary-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--lake);
  margin-bottom: 0.5rem;
}
.summary-card p {
  font-size: 0.82rem;
  line-height: 1.75;
  color: #4d5844;
}
.booking-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 2.2rem;
}
.booking-section-head p {
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #55624b;
}
.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
.book-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(58,74,53,0.08);
  box-shadow: 0 20px 50px rgba(30,42,30,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.book-card.featured {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(30,42,30,0.13);
}
.book-media {
  min-height: 260px;
  background-size: cover;
  background-position: center;
}
.book-body {
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.book-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.book-badge {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
}
.book-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--gold);
}
.book-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
}
.book-body p {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  line-height: 1.85;
  color: #4f5b46;
}
.book-meta,
.arrange-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.book-meta li,
.arrange-meta li {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  border: 1px solid rgba(122,144,112,0.24);
  padding: 0.48rem 0.65rem;
}
.book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1.6rem;
}
.btn-secondary {
  display: inline-block;
  padding: 0.95rem 2rem;
  background: rgba(58,74,53,0.08);
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
}
.btn-secondary:hover {
  background: rgba(58,74,53,0.16);
  transform: translateY(-2px);
}
.arrange-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.arrange-card {
  background: linear-gradient(180deg, rgba(245,242,236,0.98), rgba(232,226,216,0.82));
  border: 1px solid rgba(58,74,53,0.08);
  padding: 1.6rem;
}
.arrange-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--dark);
}
.arrange-card p {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  line-height: 1.8;
  color: #4b5742;
}
.arrange-card a { margin-top: 1.2rem; }
.booking-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.process-card {
  background: var(--dark);
  color: var(--mist);
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
}
.process-card::after {
  content: '';
  position: absolute;
  inset: auto -20% -40% auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(184,154,90,0.22), transparent 70%);
}
.process-step {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(200,216,204,0.6);
}
.process-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 300;
  color: white;
  margin: 0.8rem 0;
  position: relative;
  z-index: 1;
}
.process-card p {
  font-size: 0.86rem;
  line-height: 1.8;
  color: rgba(200,216,204,0.75);
  position: relative;
  z-index: 1;
}
.booking-footnote {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--sage);
}

/* ── Contact ────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 1.4rem;
  margin-top: 2.4rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.35rem;
}
.contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
}
.contact-value a { color: inherit; text-decoration: none; border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.contact-value a:hover { color: var(--gold); }

.faq { margin-top: 3rem; }
.faq-item { border-top: 1px solid rgba(58,74,53,0.15); padding: 1.6rem 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(58,74,53,0.15); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 0.9rem;
  line-height: 1.85;
  color: #4a5440;
  margin-top: 0.8rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.open .faq-a { max-height: 200px; }

/* ── Booking ────────────────────────────────────────────── */
.book-wrapper {
  background: var(--dark);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 6vw;
}
.book-inner { text-align: center; max-width: 560px; }
.book-inner .section-title { color: var(--mist); margin-bottom: 1rem; }
.book-inner .section-title em { color: var(--gold); }
.book-inner p { font-size: 0.95rem; line-height: 1.85; color: rgba(200,216,204,0.65); margin-bottom: 2.5rem; }
#amenitiz-container { margin-top: 2rem; }
#amenitiz-container iframe { width: 100%; min-height: 500px; border: none; background: white; }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(200,216,204,0.45);
  padding: 3.5rem 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: white;
  letter-spacing: 0.06em;
  text-decoration: none;
}
.footer-address { font-size: 0.7rem; letter-spacing: 0.08em; line-height: 1.8; text-align: center; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200,216,204,0.4);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(200,216,204,0.08);
  margin: 0.5rem 0;
}
.footer-copy { font-size: 0.62rem; letter-spacing: 0.1em; color: rgba(200,216,204,0.2); }

/* ── Stone section bg ───────────────────────────────────── */
.bg-stone { background: var(--stone); }
.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--dark); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .amenities-grid { grid-template-columns: repeat(3,1fr); }
  .exp-grid { grid-template-columns: repeat(2,1fr); }
  .booking-grid,
  .arrange-grid,
  .booking-process,
  .booking-summary { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1100px) {
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-mobile { display: flex; }

  section { padding: 5rem 5vw; }
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse { direction: ltr; }
  .img-stack { height: 360px; }
  .amenities-grid { grid-template-columns: repeat(2,1fr); }
  .suites-grid { grid-template-columns: 1fr; }
  .suite-card.tall { grid-row: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; }
  .gal-item.tall { grid-row: auto; }
  .landscape-split { grid-template-columns: 1fr; }
  .landscape-photo { min-height: 300px; }
  .landscape-text { padding: 3.5rem 5vw; }
  .distances-grid { grid-template-columns: 1fr 1fr; }
  .exp-grid { grid-template-columns: 1fr; }
  .booking-intro-grid,
  .booking-grid,
  .arrange-grid,
  .booking-process,
  .booking-summary { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}

@media (max-width: 540px) {
  .intro-strip { grid-template-columns: 1fr; }
  .intro-item { border-right: none; border-bottom: 1px solid rgba(200,216,204,0.14); }
  .distances-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
}
