/* ==========================================================================
   Athena Ares — Cinematic Dark, Brightened
   Warm cream baseline + dark cinematic moments (hero, footer, accent CTAs)
   Single typeface (Inter) with italic emphasis + champagne gold accent
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Light surfaces (page baseline) */
  --c-bg:        #FAF6EC;          /* warm cream — page background */
  --c-bg-2:      #F2EBDB;          /* slightly raised — alternating section */
  --c-bg-3:      #FFFFFF;          /* cards / cleanest surface */
  --c-bg-4:      #F8F2E5;          /* hover surface */

  /* Dark surfaces (strategic cinematic moments) */
  --c-dark:      #0F1822;          /* deep ink — hero, footer, accent CTAs */
  --c-dark-2:    #16222F;          /* slightly raised on dark sections */
  --c-dark-3:    #1F2D3D;          /* dark hover surface */

  /* Text */
  --c-ink:       #1A2235;          /* primary text on light */
  --c-ink-2:     #3D4A60;          /* secondary text on light */
  --c-cream:     #EDE6D7;          /* primary text on dark */
  --c-cream-2:   #C8C0B0;          /* secondary text on dark */
  --c-mute:      #8A8270;          /* tertiary text, eyebrows */

  /* Accent — slightly deeper gold for contrast on cream */
  --c-gold:      #B58A40;
  --c-gold-2:    #C9A056;          /* hover accent */
  --c-gold-3:    #886428;          /* deep gold for hover bg */

  /* Light moment for booking widget */
  --c-paper:     #FFFFFF;
  --c-paper-2:   #F2EBDB;

  /* Lines */
  --c-line:      rgba(26, 34, 53, 0.10);
  --c-line-2:    rgba(26, 34, 53, 0.18);
  --c-line-3:    rgba(26, 34, 53, 0.32);
  --c-line-dark: rgba(237, 230, 215, 0.12);
  --c-line-dark-2: rgba(237, 230, 215, 0.20);

  /* Aliases for legacy class compatibility */
  --c-sand:      var(--c-bg-2);
  --c-sand-2:    var(--c-bg-4);
  --c-ocean:     var(--c-gold);
  --c-ocean-2:   var(--c-gold-2);
  --c-sun:       var(--c-gold);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 34, 53, .04);
  --shadow-md: 0 12px 32px rgba(26, 34, 53, .08);
  --shadow-lg: 0 32px 80px rgba(26, 34, 53, .14);

  /* Radii — tight, near-square */
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;

  /* Typography */
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 880px;

  /* Motion */
  --t-fast: 200ms ease;
  --t-base: 320ms cubic-bezier(.2,.7,.2,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--c-bg); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}
img, picture, video { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }
a { color: var(--c-gold); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-gold-3); }

/* Typography — thin weights, italic for emphasis */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  margin: 0 0 .5em;
  color: var(--c-ink);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.6rem, 5vw + .5rem, 4.8rem); }
h2 { font-size: clamp(2rem, 2.6vw + .5rem, 3.1rem); }
h3 { font-size: clamp(1.4rem, 1vw + .9rem, 1.7rem); font-weight: 400; }
h4 {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}
em, i { font-style: italic; color: var(--c-gold); font-weight: 300; }

p { margin: 0 0 1em; color: var(--c-ink-2); }
.lede { font-size: 1.15rem; line-height: 1.7; color: var(--c-ink); font-weight: 300; max-width: 60ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

::selection { background: var(--c-gold); color: var(--c-bg); }

/* ---------- Layout ---------- */
.container        { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }
.section       { padding: 120px 0; }
.section-tight { padding: 64px 0; }

/* Section variants */
.section-sand,
.section-cream { background: var(--c-bg-2); }
.section-ink {                                  /* strategic dark moment */
  background: var(--c-dark);
  color: var(--c-cream);
}
.section-ink h1, .section-ink h2, .section-ink h3 { color: var(--c-cream); }
.section-ink p { color: var(--c-cream-2); }
.section-ink .eyebrow { color: var(--c-gold-2); }
.section-ink em { color: var(--c-gold-2); }
.section-ink .lede { color: var(--c-cream); }

/* Center alignment helper — fixes the "lede max-width prevents centering" bug */
.center { text-align: center; }
.center .lede,
.center > p,
.center > .lede {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 720px) {
  .container, .container-narrow { padding: 0 22px; }
  .section { padding: 80px 0; }
  .section-tight { padding: 48px 0; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 236, 0.86);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  border-bottom: 1px solid var(--c-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--c-ink);
  letter-spacing: 0.02em;
  line-height: 1.2;
}
.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}
.brand-name {
  display: block;
  line-height: 1.2;
  white-space: nowrap;
}
.brand:hover { color: var(--c-ink); }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: transparent;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0;
}
.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  color: var(--c-mute);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex; gap: 32px; align-items: center;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  color: var(--c-ink);
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.nav-links a:hover { color: var(--c-ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.is-current { color: var(--c-gold); }
.nav-links a.is-current::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.nav-toggle {
  display: none;
  background: none; border: 1px solid var(--c-line-2);
  width: 42px; height: 42px;
  padding: 0;
  border-radius: var(--radius-sm);
  color: var(--c-ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* Nav Book Direct — solid dark, fills gold on hover */
.nav-links a.btn-primary {
  background: var(--c-ink);
  color: var(--c-bg);
  border: 1px solid var(--c-ink);
  border-radius: 0;
  height: 40px;
  min-height: 40px;
  padding: 0 22px;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  transition: all var(--t-fast);
  display: inline-flex;
  align-items: center;
}
.nav-links a.btn-primary:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-bg);
  transform: none;
}
.nav-links a.btn-primary::after { display: none; }

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: var(--c-bg);
    padding: 16px 24px 28px;
    border-bottom: 1px solid var(--c-line-2);
    display: none;                            /* fully hidden until opened — no transform quirks */
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--c-line);
  }
  .nav-toggle { display: grid; place-items: center; }
  /* Book Direct is handled by the persistent .mobile-cta bar at the bottom */
  .nav-links li:has(> .nav-cta) { display: none; }
  .nav-cta { display: none; }
}
@media (max-width: 640px) {
  /* Mobile header: keep sticky, but solid background — backdrop-filter + sticky has iOS clipping bugs */
  .site-header {
    background: var(--c-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--c-line-2);
  }
  .nav {
    min-height: 88px;
    padding: 18px 0;
    align-items: center;
  }
  .brand { font-size: 1rem; gap: 12px; line-height: 1.2; }
  .brand-text { line-height: 1.2; }
  .brand-name { font-size: 1rem; line-height: 1.2; }
  .brand small {
    font-size: 0.55rem;
    letter-spacing: 0.22em;
    margin-top: 5px;
    line-height: 1;
  }
  .brand-mark { width: 36px; height: 36px; font-size: 0.9rem; flex-shrink: 0; }
  .nav-toggle { flex-shrink: 0; }
  .nav-links { inset: 88px 0 auto 0; }    /* match new header height */
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  height: 48px;            /* fixed height — guarantees identical sizing across variants */
  min-height: 48px;
  box-sizing: border-box;
  border-radius: 0;
  border: 1px solid transparent;
  font-weight: 500;
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
  white-space: nowrap;
  font-family: var(--font-body);
  vertical-align: middle;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--c-ink);
  color: var(--c-bg);
  border-color: var(--c-ink);
}
.btn-primary:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-bg);
}
.btn-ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-line-3);
}
.btn-ghost:hover {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
/* btn-light is used on dark sections — outline in cream */
.btn-light {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-cream);
}
.btn-light:hover {
  background: var(--c-cream);
  color: var(--c-dark);
}
.btn-sm {
  height: 40px;
  min-height: 40px;
  padding: 0 20px;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

/* ---------- Hero (stays cinematic dark) ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  color: var(--c-cream);
  background: var(--c-dark);
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.82) saturate(0.92) contrast(1.04);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,24,34,.25) 0%, rgba(15,24,34,.55) 60%, rgba(15,24,34,.92) 100%),
    linear-gradient(90deg, rgba(15,24,34,.45) 0%, rgba(15,24,34,0) 60%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 160px 32px 80px;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-tag {
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 28px;
  color: var(--c-gold-2);
  font-weight: 500;
}
.hero h1 {
  color: var(--c-cream);
  font-weight: 200;
  max-width: 18ch;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: italic;
  color: var(--c-gold-2);
  font-weight: 200;
}
.hero-sub {
  max-width: 56ch;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--c-cream-2);
  margin-top: 1.6rem;
  margin-bottom: 2.4rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-meta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line-dark-2);
}
.hero-meta div {
  padding: 28px 24px 0 0;
  display: flex;
  flex-direction: column;
}
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 200;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-top: 8px;
  font-weight: 500;
}
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hero-meta strong { font-size: 1.6rem; }
}

.hero-page { min-height: 60vh; }
.hero-page .hero-inner { padding: 130px 32px 80px; }

/* ---------- Cards / Grid blocks ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--t-base);
  color: var(--c-ink);
}
.card:hover {
  background: var(--c-bg-3);
  border-color: var(--c-line-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card h4 { color: var(--c-gold); margin-bottom: 14px; }
.card p { color: var(--c-ink-2); }
.card-icon {
  width: 44px; height: 44px;
  border: 1px solid var(--c-gold);
  border-radius: 50%;
  background: transparent;
  color: var(--c-gold);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 20px; height: 20px; }

/* ---------- Two-column feature ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.feature-img.tall { aspect-ratio: 3/4; }
@media (max-width: 980px) {
  .feature { grid-template-columns: 1fr; gap: 36px; }
  .feature-img { aspect-ratio: 4/3; }
}
.feature.reverse > :first-child { order: 2; }
@media (max-width: 980px) {
  .feature.reverse > :first-child { order: 0; }
}

/* ---------- Property at a glance ---------- */
.glance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line-2);
  border-bottom: 1px solid var(--c-line-2);
  background: transparent;
  overflow: hidden;
}
.glance > div {
  padding: 36px 28px;
  text-align: left;
  border-right: 1px solid var(--c-line);
}
.glance > div:last-child { border-right: none; }
.glance strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 200;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
}
.glance span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 500;
}
@media (max-width: 720px) {
  .glance { grid-template-columns: repeat(2, 1fr); }
  .glance > div { padding: 26px 18px; }
  .glance > div:nth-child(2) { border-right: none; }
  .glance > div:nth-child(1), .glance > div:nth-child(2) { border-bottom: 1px solid var(--c-line); }
  .glance strong {
    font-size: 1.45rem;
    margin-bottom: 8px;
    word-break: keep-all;
    overflow-wrap: normal;
  }
  .glance span {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    line-height: 1.4;
  }
}

/* ---------- Mode cards ---------- */
.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px) {
  .mode-grid { grid-template-columns: 1fr; }
}
.mode {
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 44px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.mode.featured {
  background: var(--c-dark);
  color: var(--c-cream);
  border-color: var(--c-dark);
}
.mode.featured h3 { color: var(--c-cream); }
.mode.featured p { color: var(--c-cream-2); }
.mode h3 { color: var(--c-ink); margin-bottom: 8px; }
.mode-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--c-gold);
  color: var(--c-bg);
  padding: 5px 12px;
  border-radius: 0;
  font-weight: 500;
}
.mode-list {
  list-style: none; margin: 24px 0 32px; padding: 0;
}
.mode-list li {
  padding: 11px 0;
  display: flex; gap: 14px;
  font-size: 0.95rem;
  color: var(--c-ink-2);
  border-bottom: 1px solid var(--c-line);
  font-weight: 300;
}
.mode-list li:last-child { border-bottom: none; }
.mode-list li::before {
  content: "—";
  color: var(--c-gold);
  flex-shrink: 0;
  font-weight: 400;
}
.mode.featured .mode-list li {
  color: var(--c-cream-2);
  border-bottom-color: var(--c-line-dark);
}
.mode.featured .mode-list li::before { color: var(--c-gold-2); }
.mode .btn { margin-top: auto; align-self: flex-start; }

/* ---------- Photo strip ---------- */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.strip a {
  display: block;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: filter var(--t-fast);
}
.strip a:hover { filter: brightness(1.04); }
@media (max-width: 720px) {
  .strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 980px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .gallery { grid-template-columns: 1fr; gap: 8px; } }
.gallery a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  background: var(--c-bg-2);
}
.gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-base);
}
.gallery a:hover img { transform: scale(1.04); }

/* Lightbox — stays dark for cinematic viewing */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(15, 24, 34, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: transparent;
  border: 1px solid var(--c-line-dark-2);
  color: var(--c-cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
}
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--c-gold); color: var(--c-bg); border-color: var(--c-gold); }
.lightbox-counter {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  color: var(--c-cream-2);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- Amenity list ---------- */
.amen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 980px) { .amen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .amen-grid { grid-template-columns: 1fr; } }
.amen-grid h3 {
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 500;
  border-bottom: 1px solid var(--c-line-2);
  padding-bottom: 14px;
  margin-bottom: 16px;
}
.amen-grid ul { list-style: none; padding: 0; margin: 0; }
.amen-grid li {
  padding: 8px 0;
  display: flex; gap: 10px;
  font-size: 0.95rem;
  color: var(--c-ink-2);
  font-weight: 300;
}
.amen-grid li::before {
  content: "›";
  color: var(--c-gold);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.2;
}

/* ---------- FAQ — card grid ---------- */
.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  align-items: start;
}
@media (max-width: 720px) {
  .faq { grid-template-columns: 1fr; gap: 12px; }
}
.faq details {
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}
.faq details:hover {
  border-color: var(--c-line-2);
  box-shadow: var(--shadow-md);
}
.faq details[open] {
  border-color: var(--c-gold);
  box-shadow: var(--shadow-md);
}
.faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  color: var(--c-ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--c-gold);
  font-family: var(--font-display);
  font-weight: 200;
  line-height: 1;
  transition: transform var(--t-fast);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "–"; }
.faq details p {
  margin: 16px 0 0;
  color: var(--c-ink-2);
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.95rem;
}

/* ---------- Form ---------- */
.form {
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 22px;
}
.form-row.full { grid-template-columns: 1fr; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
  margin-bottom: 8px;
}
.form input, .form select, .form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--c-line-2);
  border-radius: var(--radius-sm);
  background: var(--c-bg);
  font: inherit;
  color: var(--c-ink);
  transition: all var(--t-fast);
}
.form input::placeholder, .form textarea::placeholder { color: var(--c-mute); }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--c-gold);
  background: var(--c-bg-3);
}
.form textarea { min-height: 140px; resize: vertical; }
.form button { width: 100%; }

/* ---------- Booking widget ---------- */
.booking-wrap {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.booking-wrap p { color: var(--c-ink-2); }
.booking-wrap a { color: var(--c-gold-3); }
.booking-wrap a:hover { color: var(--c-gold); }
.guesty-placeholder {
  min-height: 320px;
  border: 1px dashed var(--c-line-3);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  color: var(--c-ink);
}
.guesty-placeholder strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.guesty-placeholder code {
  background: var(--c-paper-2);
  color: var(--c-ink);
  padding: 4px 10px;
  border-radius: 2px;
  font-size: 0.85rem;
}

/* ---------- Table of contents widget ---------- */
.toc {
  background: var(--c-bg-3);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.toc .eyebrow { margin-bottom: 18px; }
.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 2;
  column-gap: 48px;
}
.toc li {
  break-inside: avoid;
  border-bottom: 1px solid var(--c-line);
  padding: 13px 0;
}
.toc li:last-child { border-bottom: none; }
.toc a {
  color: var(--c-ink);
  font-weight: 400;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: color var(--t-fast);
}
.toc a::before {
  content: "—";
  color: var(--c-gold);
  flex-shrink: 0;
}
.toc a:hover { color: var(--c-gold); }
@media (max-width: 600px) {
  .toc { padding: 28px 24px; }
  .toc ul { column-count: 1; column-gap: 0; }
}

/* ---------- Things to Do ---------- */
.area-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  margin-bottom: 80px;
  align-items: start;
}
.area-block:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
  .area-block { grid-template-columns: 1fr; gap: 28px; }
}
.area-block img {
  border-radius: var(--radius-md);
}
.area-block h3 {
  font-size: 1.7rem;
  margin-bottom: 18px;
  color: var(--c-ink);
}
.area-list {
  list-style: none; padding: 0; margin: 18px 0 0;
}
.area-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--c-line);
}
.area-list strong {
  display: block;
  font-weight: 500;
  color: var(--c-ink);
  margin-bottom: 4px;
  font-size: 0.95rem;
}
.area-list span {
  font-size: 0.92rem;
  color: var(--c-mute);
  font-weight: 300;
}

/* ---------- Footer (stays dark for anchor) ---------- */
.site-footer {
  background: var(--c-dark);
  color: var(--c-cream-2);
  padding: 96px 0 32px;
  font-size: 0.92rem;
}
.site-footer a { color: var(--c-cream-2); }
.site-footer a:hover { color: var(--c-gold-2); }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--c-line-dark);
}
@media (max-width: 980px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  /* Mobile footer: brand on top full-width, then 2x2 grid of link blocks underneath */
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding-bottom: 36px;
  }
  .foot-brand { grid-column: 1 / -1; }
  .site-footer { padding: 64px 0 28px; }
  .site-footer h4 { font-size: 0.65rem; margin-bottom: 12px; letter-spacing: 0.2em; }
  .site-footer ul li { margin-bottom: 6px; font-size: 0.88rem; }
}
.site-footer h4 {
  color: var(--c-gold-2);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 500;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; font-weight: 300; }
.foot-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--c-mute);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.foot-brand .brand { color: var(--c-cream); margin-bottom: 16px; }
.foot-brand .brand small { color: var(--c-mute); }
.foot-brand p { color: var(--c-cream-2); margin: 0; max-width: 36ch; font-weight: 300; }

/* ---------- Trust strip ---------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--c-line-2);
  border-bottom: 1px solid var(--c-line-2);
}
.trust-strip > div {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 32px 28px;
  border-right: 1px solid var(--c-line);
}
.trust-strip > div:last-child { border-right: none; }
.trust-strip strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-ink);
  font-weight: 400;
  margin-bottom: 6px;
}
.trust-strip span {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-mute);
  font-weight: 500;
}
@media (max-width: 720px) {
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip > div:nth-child(2) { border-right: none; }
  .trust-strip > div:nth-child(1), .trust-strip > div:nth-child(2) { border-bottom: 1px solid var(--c-line); }
}

/* ---------- Stars ---------- */
.stars { color: var(--c-gold); letter-spacing: 2px; margin-bottom: 6px; }

/* ---------- Utility ---------- */
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 56px; }
.muted { color: var(--c-mute); }
.divider {
  height: 1px;
  background: var(--c-line);
  margin: 80px 0;
}

/* ---------- Mobile sticky CTA bar — Call + Book Direct ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--c-ink);
  border-top: 1px solid var(--c-line-2);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 18px;
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--c-bg);
  transition: background var(--t-fast), color var(--t-fast);
  text-decoration: none;
}
.mobile-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-cta--call {
  flex: 0 0 auto;
  padding: 16px 22px;
  border-right: 1px solid var(--c-line-2);
  color: var(--c-gold-2);
}
.mobile-cta--book {
  flex: 1;
  background: var(--c-gold);
  color: var(--c-ink) !important;
}
.mobile-cta--call:hover { background: var(--c-dark-2); color: var(--c-bg); }
.mobile-cta--book:hover { background: var(--c-gold-2); color: var(--c-ink) !important; }

@media (max-width: 980px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 64px; }
}

/* ---------- Skip link / a11y ---------- */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip:focus {
  left: 12px; top: 12px;
  z-index: 999;
  background: var(--c-gold);
  color: var(--c-bg);
  padding: 10px 14px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
