/* ==========================================================================
   BLUE OLIVE STAYS — "Olive Coast" design system
   Fresh coastal teal-blue + sage-olive on cream · Fraunces (display) + Jost (body)
   ========================================================================== */

/* ----------------------------- Tokens ---------------------------------- */
:root {
  /* ---- Palette: "Olive Coast" — fresh coastal blue + sage-olive on cream ---- */
  --ink:       #16414C;  /* deep coastal teal-blue: dark section bg + darkest headings on light */
  --deep:      #234E58;  /* secondary dark surface / default body text on light */
  --cream:     #F7F4EC;  /* primary light bg / knockout text on dark */
  --stone:     #E9E7D7;  /* secondary light surface (pale sage) */
  --olive:     #AEB65E;  /* primary accent on DARK: CTAs, ticks, underlines, glints */
  --olive-ink: #5C6A26;  /* accent/text on LIGHT — AA ~5.6:1 on cream, ~4.7:1 on stone */
  --moss:      #5F6B26;  /* deep accent / pressed state / taglines on light */
  --sand:      #DAD8A6;  /* pale accent on dark (eyebrows, numerals) */
  --slate:     #5A6668;  /* muted secondary text on light (cool taupe) */
  --blue:      #2C7B92;  /* coastal-blue flourish: map pin, coordinates, scroll line */

  /* Back-compat aliases — existing var(--amber) etc. usages now map to the palette above */
  --obsidian: var(--ink);
  --charred-oak: var(--deep);
  --alabaster: var(--cream);
  --limestone: var(--stone);
  --amber: var(--olive);
  --burnt-amber: var(--olive-ink);
  --cognac: var(--moss);
  --candlelight: var(--sand);
  --driftwood: var(--slate);

  /* Semantic */
  --bg: var(--cream);
  --text: var(--deep);
  --muted: var(--slate);

  /* Type */
  --font-display: "Fraunces", "Times New Roman", serif;
  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);
  --maxw: 1240px;
  --maxw-narrow: 720px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 82px;
}

/* ----------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: clamp(1rem, 0.97rem + 0.15vw, 1.075rem);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: 0; left: 50%; transform: translate(-50%, -120%);
  z-index: 1000; background: var(--obsidian); color: var(--alabaster);
  padding: 0.75rem 1.25rem; font-size: 0.85rem; letter-spacing: 0.1em;
  text-transform: uppercase; transition: transform 0.25s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

/* --------------------------- Typography --------------------------------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.26em;
  color: var(--burnt-amber);
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: var(--candlelight); }

.section-title {
  font-size: clamp(2rem, 1.3rem + 3.2vw, 3.65rem);
  color: var(--obsidian);
  max-width: 20ch;
}
.section-title--light { color: var(--alabaster); }
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head__lede { max-width: 56ch; margin-top: 1.35rem; }
.section-head--center .section-head__lede { margin-left: auto; margin-right: auto; }
.section-head--center { text-align: center; }
.section-head--center .section-title,
.section-head--center .eyebrow { margin-left: auto; margin-right: auto; }

.lede { font-size: 1.15rem; color: var(--charred-oak); margin-bottom: 1.25rem; }
p + p { margin-top: 1.1rem; }

/* Draw-in underline for key phrases + links */
.underline-draw { position: relative; white-space: nowrap; color: var(--cognac); }
.underline-draw::after {
  content: ""; position: absolute; left: 0; bottom: 0.04em; width: 100%; height: 2px;
  background: var(--burnt-amber); transform: scaleX(0); transform-origin: left;
  transition: transform 0.8s var(--ease) 0.3s;
}
.reveal.is-visible .underline-draw::after { transform: scaleX(1); }

.link-draw {
  position: relative; display: inline-block; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500;
  color: var(--burnt-amber); padding-bottom: 4px;
}
.link-draw::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0.001); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.link-draw:hover::after, .link-draw:focus-visible::after { transform: scaleX(1); }
.link-draw--light { color: var(--candlelight); }

/* ----------------------------- Layout ---------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--maxw-narrow); }

.section { position: relative; padding-block: var(--section-y); scroll-margin-top: var(--header-h); overflow: hidden; }
.section--dark { background: var(--obsidian); color: var(--alabaster); }
.section--dark p { color: #C0CBCC; }

.section-numeral {
  position: absolute; top: clamp(1rem, 4vw, 3rem); left: -0.15em;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(6rem, 18vw, 15rem); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1px rgba(92,106,38,0.16);
  pointer-events: none; user-select: none; z-index: 0;
}
.section-numeral--light { -webkit-text-stroke-color: rgba(218,216,166,0.14); }
.section > .container, .section > .section-head { position: relative; z-index: 1; }

/* ----------------------------- Buttons --------------------------------- */
.btn {
  --btn-color: var(--burnt-amber);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.16em;
  padding: 1rem 1.9rem; border-radius: 2px;
  border: 1px solid var(--btn-color); color: var(--btn-color); background: transparent;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease),
              border-color 0.28s var(--ease), transform 0.1s var(--ease);
}
.btn--sm { padding: 0.65rem 1.25rem; font-size: 0.72rem; }
.btn--lg { padding: 1.15rem 2.6rem; }
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--btn-color); color: var(--alabaster);
}
.btn--outline:active { background: var(--cognac); border-color: var(--cognac); transform: scale(0.985); }
.btn--light { --btn-color: var(--amber); color: var(--candlelight); border-color: var(--amber); }
.btn--light.btn--outline:hover, .btn--light.btn--outline:focus-visible { color: var(--obsidian); background: var(--amber); }
.btn--fill { background: var(--amber); border-color: var(--amber); color: var(--obsidian); }
.btn--fill:hover, .btn--fill:focus-visible { background: var(--candlelight); border-color: var(--candlelight); }
.btn--fill:active { transform: scale(0.985); }
.btn--ghost { border-color: transparent; padding-inline: 0.75rem; }
.btn--ghost.btn--light { color: var(--candlelight); }
.btn--ghost:hover, .btn--ghost:focus-visible { color: var(--amber); }

/* ----------------------------- Header ---------------------------------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
/* Always-on gradient scrim so the branding stays legible over any hero image */
.site-header::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 190%; z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(22,65,76,0.78) 0%, rgba(22,65,76,0.45) 45%, rgba(22,65,76,0) 100%);
  transition: opacity 0.4s var(--ease);
}
.site-header.is-scrolled::before { opacity: 0; }
.site-header::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--amber); transform: scaleX(0); transform-origin: center;
  transition: transform 0.5s var(--ease); opacity: 0.5;
}
.site-header.is-scrolled { background: rgba(22,65,76,0.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.site-header.is-scrolled::after { transform: scaleX(1); }

.nav {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 1rem; height: var(--header-h);
  max-width: 1360px; margin-inline: auto; padding-inline: var(--gutter);
}
.nav__group { display: flex; gap: clamp(1rem, 2vw, 2rem); align-items: center; }
.nav__group--right { justify-content: flex-end; }
.nav__group a {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 400; color: var(--alabaster); position: relative; padding-block: 0.35rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.nav__group a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--amber); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__group a:not(.btn):hover::after, .nav__group a:not(.btn):focus-visible::after { transform: scaleX(1); }

.nav__wordmark { text-align: center; line-height: 1; color: var(--alabaster); text-shadow: 0 1px 14px rgba(0,0,0,0.35); }
.nav__wordmark-main {
  display: block; font-family: var(--font-display); font-size: 1.35rem;
  letter-spacing: 0.06em; font-weight: 500;
}
.nav__wordmark-sub {
  display: block; font-size: 0.58rem; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--candlelight); margin-top: 0.3rem;
}

.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; justify-self: end; }
.nav__toggle-bar { display: block; width: 26px; height: 1.5px; background: var(--alabaster); transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 90; overflow-y: auto;
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(22,65,76,0.98); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  padding: 1.5rem var(--gutter) 2.5rem; border-top: 1px solid rgba(174,182,94,0.25);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu ul { display: flex; flex-direction: column; }
.mobile-menu a { display: block; color: var(--alabaster); font-family: var(--font-display); font-size: 1.5rem; padding: 0.6rem 0; }
.mobile-menu .btn { margin-top: 1.25rem; width: 100%; }

/* ------------------------------ Hero ----------------------------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: var(--alabaster); }
.hero__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; background: var(--obsidian); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(102deg, rgba(11,42,50,0.9) 0%, rgba(13,45,54,0.6) 40%, rgba(18,58,70,0.14) 70%, transparent 100%),
    linear-gradient(to top, rgba(11,42,50,0.92) 0%, rgba(18,58,70,0.42) 42%, rgba(18,58,70,0.26) 70%, rgba(18,58,70,0.58) 100%),
    radial-gradient(64% 55% at 88% 6%, rgba(174,182,94,0.18), transparent 70%);
}
.hero__content { position: relative; z-index: 2; padding-bottom: clamp(4rem, 10vh, 8rem); padding-top: calc(var(--header-h) + 2rem); max-width: 1240px; }
.hero__title {
  font-size: clamp(2.5rem, 0.6rem + 6.2vw, 7.25rem);
  font-weight: 500; line-height: 1; letter-spacing: -0.01em; margin: 0.35rem 0 0;
  max-width: min(15ch, 100%); overflow-wrap: break-word;
  text-shadow: 0 2px 50px rgba(0,0,0,0.45);
}
.hero__rule { display: block; width: 78px; height: 3px; background: var(--olive); margin: 1.5rem 0 1.35rem; }
.hero__tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.35rem, 1rem + 1.45vw, 2.15rem); color: var(--sand);
  line-height: 1.25; max-width: 32ch; margin-bottom: 1.3rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero__sub { max-width: 50ch; font-size: 1.08rem; color: #E9EFEA; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.25rem; }

.hero__scroll {
  position: absolute; bottom: 1.75rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; color: var(--candlelight);
}
.hero__scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--blue), transparent); }
.hero__scroll-label { font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; }

/* ------------------------------ Story ---------------------------------- */
.story__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.story__text { max-width: 60ch; }
.story__text .section-title { max-width: 18ch; margin-bottom: 1.75rem; }
.story__sign { font-family: var(--font-display); font-style: italic; color: var(--muted); margin-top: 1.5rem; }
.story__figure { position: relative; }
.story__figure img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.story__figure::before {
  content: ""; position: absolute; inset: -14px -14px auto auto; width: 60%; height: 60%;
  border-top: 1px solid var(--limestone); border-right: 1px solid var(--limestone); z-index: -1;
}

/* ------------------------------ Suites --------------------------------- */
.suites { background: var(--limestone); }
.suites__list { display: flex; flex-direction: column; }
.suite {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem);
  align-items: center; padding-block: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(107,97,82,0.25);
}
.suite:last-child { border-bottom: 0; }
.suite--reverse .suite__media { order: 2; }
.suite__media { overflow: hidden; }
.suite__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 1.2s var(--ease); }
.suite:hover .suite__media img { transform: scale(1.04); }
.suite__name { font-size: clamp(1.8rem, 1.2rem + 2vw, 2.75rem); color: var(--obsidian); }
.tick { display: block; width: 32px; height: 2px; background: var(--amber); margin: 0.9rem 0 1.1rem; }
.suite__tagline { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; color: var(--cognac); margin-bottom: 0.75rem; }
.suite__specs {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; margin: 1.5rem 0;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted);
}
.suite__specs li { position: relative; padding-right: 1.25rem; }
.suite__specs li:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; width: 1px; height: 12px; background: rgba(107,97,82,0.4); transform: translateY(-50%); }

/* ---------------------------- Amenities -------------------------------- */
.amenities__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.amenity { padding: 1.5rem clamp(1rem, 2vw, 2rem); text-align: center; position: relative; }
.amenity:not(:first-child)::before { content: ""; position: absolute; left: 0; top: 12%; height: 76%; width: 1px; background: rgba(174,182,94,0.22); }
.amenity__icon { display: inline-flex; color: var(--amber); margin-bottom: 1.25rem; }
.amenity__icon svg { width: 40px; height: 40px; }
.amenity__label { font-size: 1.25rem; color: var(--alabaster); margin-bottom: 0.75rem; }
.amenity p { color: #A7B4B5; font-size: 0.95rem; }

/* ----------------------------- Gallery --------------------------------- */
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; gap: clamp(0.75rem, 1.5vw, 1.25rem); }
.gallery__item { position: relative; overflow: hidden; cursor: pointer; grid-row: span 1; }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(22,65,76,0.55), transparent 55%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item figcaption {
  position: absolute; left: 1rem; bottom: 0.9rem; z-index: 2; color: var(--candlelight);
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.18em;
  opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* --------------------------- Experiences ------------------------------- */
.experiences__list { margin-top: 1rem; }
.experience { position: relative; min-height: 62vh; display: flex; align-items: center; overflow: hidden; }
.experience::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-image: var(--exp-img); background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 1.4s var(--ease);
}
.experience::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(22,65,76,0.9) 0%, rgba(22,65,76,0.72) 45%, rgba(22,65,76,0.35) 100%);
}
.experience:hover::before { transform: scale(1.1); }
.experience__inner { position: relative; z-index: 2; display: flex; align-items: center; gap: clamp(1.5rem, 4vw, 3.5rem); width: 100%; }
.experience__num { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 6rem); color: transparent; -webkit-text-stroke: 1px rgba(218,216,166,0.4); line-height: 1; }
.experience__text { max-width: 46ch; }
.experience__title { font-size: clamp(1.7rem, 1.2rem + 2vw, 2.75rem); color: var(--alabaster); margin: 0.3rem 0 0.9rem; }

/* --------------------------- Testimonials ------------------------------ */
.testimonials { background: var(--alabaster); }
.testimonial-slider { position: relative; max-width: 820px; margin-inline: auto; text-align: center; min-height: 260px; }
.testimonial { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.5s var(--ease); }
.testimonial.is-active { opacity: 1; visibility: visible; position: relative; }
.quote-mark { font-family: var(--font-display); font-size: 5rem; line-height: 0.5; color: transparent; -webkit-text-stroke: 1px var(--amber); display: block; height: 2.2rem; }
.testimonial blockquote { font-family: var(--font-display); font-style: italic; font-weight: 400; font-size: clamp(1.35rem, 1rem + 1.6vw, 2rem); line-height: 1.35; color: var(--obsidian); max-width: 26ch; margin: 1.5rem auto; }
.testimonial__cite { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); display: inline-flex; align-items: center; gap: 0.75rem; }
.testimonial__cite .rule { width: 28px; height: 1px; background: var(--amber); display: inline-block; }
.testimonial-slider__controls { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2.5rem; }
.slider-arrow { color: var(--burnt-amber); font-size: 1.25rem; width: 44px; height: 44px; border: 1px solid transparent; border-radius: 50%; transition: border-color 0.3s var(--ease), color 0.3s var(--ease); }
.slider-arrow:hover { border-color: var(--burnt-amber); }
.slider-dots { display: flex; gap: 0.6rem; }
.slider-dots button { width: 8px; height: 8px; border-radius: 50%; background: rgba(107,97,82,0.35); transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.slider-dots button.is-active { background: var(--burnt-amber); transform: scale(1.3); }

/* ----------------------------- Location -------------------------------- */
.location { padding: 0; overflow: hidden; }
.location > .section-numeral { z-index: 2; }
.location__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.location__map { position: relative; overflow: hidden; background: var(--limestone); }
.location__map svg { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.location__info { background: var(--charred-oak); color: var(--alabaster); display: flex; align-items: center; padding-block: var(--section-y); }
.location__info .container { max-width: 560px; margin: 0; padding-inline: clamp(1.5rem, 5vw, 4.5rem); }
.location__address { font-style: normal; font-family: var(--font-display); font-size: 1.4rem; line-height: 1.5; color: var(--alabaster); margin: 0.5rem 0 2rem; }
.location__times { margin-bottom: 2rem; }
.location__times li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.85rem 0; border-bottom: 1px solid rgba(218,216,166,0.18); font-size: 0.92rem; }
.location__times li span:first-child { color: #C0CBCC; }
.location__times li span:last-child { color: var(--candlelight); text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; }
.location__coord { font-family: var(--font-display); font-style: italic; color: var(--amber); margin-bottom: 1.75rem; letter-spacing: 0.05em; }

/* ------------------------------- FAQ ----------------------------------- */
.faq__list { border-top: 1px solid var(--limestone); }
.faq__item { border-bottom: 1px solid var(--limestone); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0; font-family: var(--font-display); font-size: clamp(1.1rem, 0.95rem + 0.6vw, 1.4rem); color: var(--obsidian);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--burnt-amber); transition: transform 0.3s var(--ease); }
.faq__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq__icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq__item[open] .faq__icon::after { transform: translateX(-50%) scaleY(0); }
.faq__answer { overflow: hidden; }
.faq__item[open] .faq__answer { animation: faqReveal 0.35s var(--ease); }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq__answer p { padding-bottom: 1.5rem; color: var(--muted); max-width: 62ch; }
.faq__answer a { color: var(--burnt-amber); text-decoration: underline; text-underline-offset: 3px; }

/* ----------------------------- Booking --------------------------------- */
.booking { text-align: center; }
.booking__plate { position: relative; z-index: 1; border-block: 1px solid rgba(174,182,94,0.35); padding-block: clamp(1rem, 3vw, 2.5rem); }
.booking__title { margin: 0.5rem auto 1.5rem; max-width: 18ch; }
.booking__sub { max-width: 46ch; margin: 0 auto 2.25rem; color: #CBD6D2; }
.booking__sub strong { color: var(--candlelight); font-weight: 500; }
.booking__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.booking__email { margin-top: 1.75rem; font-size: 0.9rem; color: #A7B4B5; }
.booking__email a { color: var(--candlelight); text-decoration: underline; text-underline-offset: 3px; }

/* ------------------------------ Footer --------------------------------- */
.site-footer { background: var(--obsidian); color: var(--alabaster); padding-top: clamp(3.5rem, 7vw, 6rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1.6fr 1fr; gap: clamp(2rem, 5vw, 4rem); padding-bottom: 3rem; border-bottom: 1px solid rgba(218,216,166,0.14); }
.footer__wordmark { font-size: 2rem; font-weight: 500; letter-spacing: 0.04em; }
.footer__ethos { color: var(--candlelight); font-family: var(--font-display); font-style: italic; margin-top: 0.5rem; }
.footer__social { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer__social a { color: #A7B4B5; transition: color 0.3s var(--ease); }
.footer__social a:hover { color: var(--amber); }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer__col-title { font-family: var(--font-body); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--candlelight); margin-bottom: 1.1rem; font-weight: 500; }
.footer__nav ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav a { color: #C0CBCC; font-size: 0.92rem; position: relative; }
.footer__nav a:hover { color: var(--amber); }
.footer__newsletter p { color: #A7B4B5; font-size: 0.9rem; margin-bottom: 1rem; }
.newsletter__field { display: flex; align-items: center; border-bottom: 1px solid rgba(218,216,166,0.35); }
.newsletter__field input { flex: 1; background: transparent; border: none; color: var(--alabaster); padding: 0.6rem 0; font-family: var(--font-body); }
.newsletter__field input::placeholder { color: #7C8A8B; }
.newsletter__field input:focus { outline: none; }
.newsletter__field button { color: var(--amber); font-size: 1.2rem; padding: 0.4rem 0.5rem; }
.newsletter__msg { font-size: 0.82rem; color: var(--candlelight); margin-top: 0.75rem; min-height: 1.2em; }
.footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; padding-block: 2rem; font-size: 0.78rem; color: #7C8A8B; }

/* ------------------------------ Grain ---------------------------------- */
.grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------- Lightbox --------------------------------- */
.lightbox { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: rgba(22,65,76,0.94); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.lightbox[hidden] { display: none; }
.lightbox__img { max-width: min(90vw, 1100px); max-height: 82vh; object-fit: contain; border: 1px solid rgba(174,182,94,0.5); }
.lightbox__caption { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: var(--candlelight); font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; }
.lightbox__close { position: absolute; top: 1.25rem; right: 1.5rem; color: var(--alabaster); font-size: 2rem; line-height: 1; width: 44px; height: 44px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); color: var(--alabaster); font-size: 1.75rem; width: 56px; height: 56px; border: 1px solid rgba(250,246,239,0.25); border-radius: 50%; transition: border-color 0.3s var(--ease); }
.lightbox__nav:hover { border-color: var(--amber); }
.lightbox__nav--prev { left: clamp(0.75rem, 3vw, 2.5rem); }
.lightbox__nav--next { right: clamp(0.75rem, 3vw, 2.5rem); }

/* --------------------------- Scroll reveal ----------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================= RESPONSIVE ============================== */
@media (max-width: 1024px) {
  .nav__group--left { display: none; }
  .nav { grid-template-columns: 1fr auto 1fr; }
  .nav__group--right { display: none; }
  .nav__toggle { display: flex; }
  .nav__wordmark { justify-self: start; text-align: left; }
  .nav__toggle { grid-column: 3; }
  .amenities__grid { grid-template-columns: repeat(2, 1fr); }
  /* In 2-col, items 1 & 3 are the left column — hide their left dividers. */
  .amenity:nth-child(odd)::before { display: none; }
}
@media (max-width: 860px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__figure { max-width: 460px; }
  .suite { grid-template-columns: 1fr; gap: 1.5rem; }
  .suite--reverse .suite__media { order: 0; }
  .footer__grid { grid-template-columns: 1fr; }
  .location__grid { grid-template-columns: 1fr; }
  .location__map { min-height: 300px; }
  .gallery__grid { grid-auto-rows: 200px; }
}
@media (max-width: 560px) {
  .amenities__grid { grid-template-columns: 1fr; }
  .amenity::before { display: none !important; }
  .amenity { border-bottom: 1px solid rgba(174,182,94,0.18); }
  .amenity:last-child { border-bottom: 0; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery__item--wide { grid-column: span 2; }
  .footer__base { flex-direction: column; }
  .hero__actions .btn { flex: 1 1 auto; }
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* --------------------------- Reduced motion ---------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  [data-kenburns] { animation: none !important; }
  .experience::before { transform: none !important; }
}

/* ----------------------------- Ken Burns ------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  [data-kenburns] { animation: kenburns 20s ease-out both; }
  @keyframes kenburns { from { transform: scale(1.005); } to { transform: scale(1.08); } }
}

/* ======================================================================
   PROJECT GLUE — minimal additions on top of the Olive Coast system
   (logo image sizing + a few layout helpers the markup needs)
   ====================================================================== */
.nav__logo { height: 58px; width: auto; transition: height 0.4s var(--ease); }
.site-header.is-scrolled .nav__logo { height: 46px; }
.footer__logo { height: 68px; width: auto; margin-bottom: 0.9rem; }
@media (max-width: 1024px) { .nav__logo { height: 50px; } .site-header.is-scrolled .nav__logo { height: 42px; } }

/* Experiences intro block (full-bleed bands sit outside the container) */
.experiences { position: relative; overflow: hidden; }
.experiences__intro { text-align: center; padding-block: var(--section-y) clamp(1.5rem, 4vw, 3rem); }
.experiences__intro .section-title { margin-inline: auto; }

/* Location needs a positioning context for its numeral (added via .section too) */
.suite__body .lede { margin-bottom: 1rem; }
.suite__desc { max-width: 46ch; }
