/* ============================================================
   SOLARA — luxury beach resort
   Ivory & deep navy. Blend: heavy grotesque (Archivo) for the
   giant moments × elegant serif (Fraunces). Cinematic motion.
   ============================================================ */

:root {
  --ivory: #f4ede1;
  --paper: #fbf7ef;
  --sand: #e5d8c3;

  --ink: #17212f;        /* deep navy — text, dark sections, footer mark */
  --night: #141d2a;      /* dark section base */
  --night-2: #0f1620;
  --ink-soft: #5f6675;   /* muted text on light */

  --gold: #b88a46;       /* brass/gold accent */
  --gold-soft: #d8b576;  /* lighter gold — on dark */
  --gold-deep: #785a26;  /* bronze — accents on light (darkened for AA contrast ≥4.5:1) */

  --cream: #f4ede1;

  --grotesk: 'Archivo', system-ui, -apple-system, sans-serif;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  --pad: clamp(1.25rem, 5vw, 6rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-cinematic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.45, 0, 0.18, 1);
}

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

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--grotesk);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-loading {
  overflow: hidden;
  height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
::selection {
  background: var(--ink);
  color: var(--ivory);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 1rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.8rem;
  border-radius: 4px;
  transition: top 0.3s var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

/* ---- shared type ---- */
.label {
  display: inline-block;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.label--on-dark {
  color: var(--gold-soft);
}
h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.link {
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: gap 0.4s var(--ease), color 0.3s;
}
.link span {
  transition: transform 0.4s var(--ease);
}
.link:hover {
  color: var(--gold-deep);
}
.link:hover span {
  transform: translateX(5px);
}

/* ============================================================
   Loader + progress
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ivory);
  display: grid;
  place-items: center;
  transition: opacity 1s var(--ease-cinematic), visibility 1s;
}
.loader.is-done {
  opacity: 0;
  visibility: hidden;
}
.loader__mark {
  font-family: var(--grotesk);
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 3.4rem);
  letter-spacing: 0.04em;
  color: var(--ink);
}
.loader__bar {
  position: absolute;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 44vw);
  height: 2px;
  background: rgba(23, 33, 47, 0.14);
  overflow: hidden;
}
.loader__bar i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--gold);
  transition: transform 0.35s var(--ease);
}
.progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 60;
  pointer-events: none;
}
.progress i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--gold);
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem var(--pad);
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s, color 0.5s;
}
/* hero is dark imagery at the top → nav reads light until scrolled */
.nav__mark,
.nav__links a {
  color: var(--cream);
  transition: color 0.5s var(--ease);
}
.nav.is-scrolled {
  background: rgba(244, 237, 225, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  box-shadow: 0 1px 0 rgba(23, 33, 47, 0.08);
}
.nav.is-scrolled .nav__mark,
.nav.is-scrolled .nav__links a {
  color: var(--ink);
}
.nav__mark {
  font-family: var(--grotesk);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.06em;
}
.nav__links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after,
.nav__links a.is-active::after {
  transform: scaleX(1);
}
.nav__cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  padding: 0.7rem 1.3rem;
  border-radius: 100px;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease);
}
.nav.is-scrolled .nav__cta {
  background: var(--ink);
  color: var(--cream);
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-1px);
}

/* ============================================================
   Hero — full photo resolving into the image-filled wordmark
   ============================================================ */
.hero {
  position: relative;
  height: 210vh;
}
.hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--ivory);
}
.hero__photo {
  position: absolute;
  inset: -2.5%;          /* overscan so the subtle mouse parallax never reveals an edge */
  overflow: hidden;
  will-change: clip-path, opacity, transform;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroKen 20s var(--ease-smooth) forwards;
}
@keyframes heroKen {
  to { transform: scale(1.14) translate3d(-1%, -2%, 0); }
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 22, 32, 0.42) 0%,
    rgba(15, 22, 32, 0.12) 38%,
    rgba(15, 22, 32, 0.5) 100%
  );
}
.hero__intro {
  position: relative;
  z-index: 5;            /* stage-1 wordmark/tagline sit in FRONT of the palm (legible) */
  text-align: center;
  color: var(--cream);
}
.hero__meta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 1.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.82);
}
.hero__name {
  margin: 0;
  display: flex;
  justify-content: center;
  overflow: hidden;
  font-family: var(--grotesk);
  font-weight: 800;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  line-height: 1;
}
.hero__name span {
  display: inline-block;
}
.hero__sub {
  margin: 1.2rem 0 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.05rem, 2.2vw, 1.6rem);
  color: rgba(244, 237, 225, 0.9);
}
.hero__finale {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.5rem, 4vh, 3rem);
  text-align: center;
  width: 100%;
  padding: 0 var(--pad);
}
.hero__giant {
  position: static;
  margin: 0;
  font-family: var(--grotesk);
  font-weight: 900;
  font-size: clamp(3.5rem, 21vw, 19rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
  background-color: var(--ink);
  background-image: url('/img/hero.jpg');
  background-size: cover;
  background-position: center 72%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  will-change: opacity, transform;
}
/* hero finale overture — tagline + meta beneath the giant wordmark (fills the climax) */
.hero__overture {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.7rem, 1.6vh, 1.1rem);
  opacity: 0;            /* revealed by the scroll timeline; stays hidden in reduced-motion */
  will-change: opacity, transform;
}
.hero__overture-line {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.1rem, 2.3vw, 1.75rem);
  line-height: 1.2;
  color: var(--ink);
}
.hero__overture-meta {
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.hero__cue {
  position: absolute;
  z-index: 5;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.85);
}
.hero__cue i {
  width: 1px;
  height: 46px;
  background: linear-gradient(rgba(244, 237, 225, 0.7), transparent);
  position: relative;
  overflow: hidden;
}
.hero__cue i::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold-soft);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(100%); }
}

/* ============================================================
   Statement
   ============================================================ */
.statement {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4rem, 9vh, 8rem) var(--pad) clamp(6rem, 14vh, 11rem);
}
.statement__top {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(2.6rem, 7vw, 5rem);
}
/* a thin rule sweeps right from the kicker — editorial structure */
.statement__top::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(23, 33, 47, 0.22), rgba(23, 33, 47, 0));
}
.statement__no {
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--gold-deep);
}
.statement__main {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: end;
}
.statement__head {
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 6.4vw, 5.8rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
/* line-mask reveal — padding-bottom keeps descenders (g, q, p) from clipping */
.statement__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.16em;
  margin-bottom: -0.08em;
}
.statement__line > span { display: block; will-change: transform; }
.statement__line em { font-style: italic; color: var(--gold-deep); }
.statement__aside {
  padding-bottom: 0.4rem;
}
.statement__body {
  margin: 0 0 1.6rem;
  max-width: 40ch;
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.75;
  color: var(--ink-soft);
}
.statement__more {
  font-size: 0.74rem;
}
.js .statement__line > span { transform: translateY(110%); }
.js [data-idea-rise] { opacity: 0; }
@media (max-width: 860px) {
  .statement__main {
    grid-template-columns: 1fr;
    gap: clamp(1.6rem, 5vw, 2.6rem);
    align-items: start;
  }
  .statement__aside { padding-bottom: 0; }
  /* the hard line-breaks overflow narrow screens — let the headline wrap naturally */
  .statement__line,
  .statement__line > span { display: inline; }
  .statement__line { overflow: visible; padding-bottom: 0; margin-bottom: 0; }
}

/* ============================================================
   The Days — dark navy, big word-rows
   ============================================================ */
.days {
  background: var(--night);
  color: var(--cream);
  padding: clamp(5rem, 12vh, 9rem) var(--pad);
}
.days .label {
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
}
.rows {
  border-bottom: 1px solid rgba(244, 237, 225, 0.16);
}
.row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(0, 380px);
  align-items: center;
  gap: clamp(1rem, 4vw, 3.5rem);
  padding: clamp(1.6rem, 3.4vw, 3rem) 0 clamp(1.6rem, 3.4vw, 3rem) 3.2rem;
  border-top: 1px solid rgba(244, 237, 225, 0.16);
  color: var(--cream);
}
.row__index {
  position: absolute;
  top: clamp(1.7rem, 3.6vw, 3.2rem);
  left: 0;
  z-index: 2;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
}
.row__word {
  font-family: var(--grotesk);
  font-weight: 800;
  font-size: clamp(2.6rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  transition: transform 0.55s var(--ease-cinematic), color 0.4s;
}
.row__copy {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(244, 237, 225, 0.6);
}
.row:hover .row__word {
  transform: translateX(1.4rem);
  color: var(--gold-soft);
}
.reveal {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 380px;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
  border-radius: 4px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.4s var(--ease), transform 0.55s var(--ease-cinematic);
}
.reveal.is-active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   Suites
   ============================================================ */
.suites {
  padding: clamp(6rem, 14vh, 11rem) var(--pad);
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  perspective: 1200px;
}
.suite {
  transform-style: preserve-3d;
  transition: transform 0.5s var(--ease);
}
.suite__img {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(150deg, var(--sand), var(--ink));
  transition: transform 0.7s var(--ease-cinematic);
}
.suite__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 26s var(--ease-smooth) infinite alternate;
}
.suite:nth-child(2) .suite__img img { animation-duration: 30s; animation-delay: -6s; }
.suite:nth-child(3) .suite__img img { animation-duration: 23s; animation-delay: -12s; }
@keyframes kenburns {
  0% { transform: scale(1.03) translate3d(0, 0, 0); }
  100% { transform: scale(1.13) translate3d(-1.5%, -1.5%, 0); }
}
.suite__img.img-missing img {
  opacity: 0;
}
.suite:hover .suite__img {
  transform: scale(1.025);
}
.suite__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 1.2rem 0 0.4rem;
}
.suite__row h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin: 0;
}
.suite__row span {
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  white-space: nowrap;
}
.suite p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 32ch;
}

/* ============================================================
   Feature band (Dining)
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  background: var(--sand);
}
.feature__media {
  position: relative;
  min-height: clamp(440px, 72vh, 780px);
  overflow: hidden;
  background: linear-gradient(150deg, var(--ink), var(--night-2));
}
.feature__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature__media.img-missing img {
  opacity: 0;
}
.feature__body {
  padding: clamp(2.5rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
}
.feature__head {
  max-width: 14ch;
  margin: 0;
}
.feature__copy {
  margin: 0;
  max-width: 42ch;
  color: var(--ink-soft);
}
/* The Table — gold rule, line-masked headline, detail line */
/* padding-bottom keeps descenders (the g in "goes") from clipping under overflow:hidden */
.feature__head .line { display: block; overflow: hidden; padding-bottom: 0.16em; margin-bottom: -0.08em; }
.feature__head .line > span { display: block; will-change: transform; }
.feature__rule {
  display: block;
  width: clamp(64px, 8vw, 120px);
  height: 2px;
  margin: 0.2rem 0;
  background: linear-gradient(90deg, var(--gold), rgba(184, 138, 70, 0));
  transform-origin: 0 50%;
}
.feature__detail {
  margin: 0;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
/* JS initial states for the crafted entrance */
.js .feature__body [data-feat] { opacity: 0; transform: translateY(22px); }
.js .feature__rule[data-feat] { transform: scaleX(0); }
.js .feature__head .line > span { transform: translateY(110%); }

/* ============================================================
   The Coast — full-bleed image + quote
   ============================================================ */
.coast {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
  overflow: hidden;
  background: var(--night-2);
}
.coast__media {
  position: absolute;
  inset: 0;
}
.coast__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}
.coast__media.img-missing img {
  opacity: 0;
}
.coast::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 22, 32, 0.62), rgba(15, 22, 32, 0.25));
}
.coast__quote {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 16ch;
  text-align: center;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 6.5vw, 5.5rem);
  line-height: 1.08;
  color: var(--cream);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
}
.coast__quote em {
  font-style: italic;
  color: var(--gold-soft);
}

/* ============================================================
   Reserve
   ============================================================ */
.reserve {
  position: relative;
  text-align: center;
  padding: clamp(7rem, 16vh, 13rem) var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.reserve__head {
  font-size: clamp(2.6rem, 8vw, 6.5rem);
}
.reserve p {
  margin: 0;
  max-width: 40ch;
  color: var(--ink-soft);
}
.reserve__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.4rem;
}
.btn {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 100px;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn--solid {
  background: var(--ink);
  color: var(--ivory);
}
.btn--solid:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn--ghost {
  border: 1px solid rgba(23, 33, 47, 0.25);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* ============================================================
   Footer — giant logotype
   ============================================================ */
.footer {
  background: var(--night);
  color: var(--cream);
  padding: clamp(4rem, 9vh, 7rem) var(--pad) 2.5rem;
  overflow: hidden;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}
.footer__news {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 360px;
}
.footer__form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(244, 237, 225, 0.3);
  padding-bottom: 0.6rem;
}
.footer__form input {
  flex: 1;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--grotesk);
  font-size: 1rem;
  padding: 0.3rem 0;
}
.footer__form input::placeholder {
  color: rgba(244, 237, 225, 0.45);
}
.footer__form input:focus {
  outline: none;
}
.footer__form button {
  background: none;
  border: none;
  color: var(--gold-soft);
  font-size: 1.3rem;
  cursor: pointer;
}
.footer__cols {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3rem);
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer__cols a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(244, 237, 225, 0.7);
  transition: color 0.3s;
}
.footer__cols a:hover {
  color: var(--gold-soft);
}
.footer__mark {
  font-family: var(--grotesk);
  font-weight: 900;
  font-size: clamp(4rem, 26vw, 23rem);
  line-height: 0.8;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--cream);
  margin: clamp(1rem, 3vw, 2rem) 0;
  user-select: none;
}
.footer__fine {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 237, 225, 0.14);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.5);
}
.footer__credit {
  color: var(--gold-soft);
}

/* ============================================================
   Motion — JS-gated initial states (progressive enhancement)
   ============================================================ */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
}
.js .hero__giant {
  opacity: 0;
}
.js [data-mask] {
  clip-path: inset(0 0 100% 0);
}
.js .row {
  opacity: 0;
  transform: translateY(40px);
}
/* stack the giant word above its copy below 900px so the word never clips */
@media (max-width: 900px) {
  .row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .suite-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
  .feature {
    grid-template-columns: 1fr;
  }
  .feature__media {
    min-height: 56vh;
  }
}

@media (max-width: 720px) {
  .nav__links {
    display: none;
  }
  .hero {
    height: 200vh;
  }
  .row {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding-left: 2.4rem;
  }
  .hero__meta {
    flex-direction: column;
    gap: 0.3rem;
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal],
  .js .row,
  .js .hero__giant {
    opacity: 1 !important;
    transform: none !important;
  }
  .js [data-mask] {
    clip-path: none !important;
  }
  .hero__photo img,
  .suite__img img {
    animation: none !important;
  }
  .hero__cue i::after {
    animation: none !important;
  }
  .hero {
    height: auto !important;
  }
  .hero__stage {
    position: relative !important;
  }
  .hero__giant {
    display: none !important;
  }
  * {
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   "The idea" — scroll-lit headline + flowing chevron
   ============================================================ */
.statement__head .word {
  opacity: 0.16;
  will-change: opacity;
}
.statement__head .word.is-em {
  font-style: italic;
  color: var(--gold-deep);
  opacity: 0.24;
}
.chev svg path {
  stroke-dasharray: 7 7;
  animation: chevFlow 1.1s linear infinite;
}
@keyframes chevFlow {
  to { stroke-dashoffset: -14; }
}

/* ============================================================
   Footer v2 — professional + useful
   ============================================================ */
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr 0.9fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}
.footer__logo {
  font-family: var(--grotesk);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.footer__tag {
  margin: 0.9rem 0 1.3rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(244, 237, 225, 0.6);
  max-width: 30ch;
}
.footer__addr {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(244, 237, 225, 0.55);
}
.footer__addr a {
  transition: color 0.3s;
}
.footer__addr a:hover {
  color: var(--gold-soft);
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer__col h4,
.footer__news h4 {
  margin: 0 0 0.4rem;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.footer__col a {
  font-size: 0.92rem;
  color: rgba(244, 237, 225, 0.72);
  transition: color 0.3s;
}
.footer__col a:hover {
  color: var(--cream);
}
.footer__news p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(244, 237, 225, 0.6);
  max-width: 30ch;
}
.footer__bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(244, 237, 225, 0.14);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 237, 225, 0.5);
}
.footer__bar a {
  transition: color 0.3s;
}
.footer__bar a:hover {
  color: var(--gold-soft);
}
.footer__credit {
  color: var(--gold-soft);
}

@media (max-width: 900px) {
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer__bar {
    flex-direction: column;
    gap: 0.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .statement__head .word {
    opacity: 1 !important;
  }
  .chev svg path {
    animation: none !important;
  }
}

/* ============================================================
   "Your Days" — row-fill image reveal (replaces cursor-follow)
   ============================================================ */
.row {
  overflow: hidden;
  isolation: isolate;
}
.row__word,
.row__copy {
  position: relative;
  z-index: 2;
}
.row__copy {
  transition: color 0.5s var(--ease);
}
.row__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  clip-path: inset(0 0 0 100%);
  opacity: 0;
  transition: clip-path 0.85s var(--ease-cinematic), opacity 0.6s var(--ease);
  pointer-events: none;
}
.row__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 29, 42, 0.9) 28%, rgba(20, 29, 42, 0.45));
}
.row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 22s var(--ease-smooth) infinite alternate;
}
.row:hover .row__media,
.row:focus-visible .row__media {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.row:hover .row__copy {
  color: rgba(244, 237, 225, 0.85);
}

/* ============================================================
   The Suites — horizontal scroll gallery (vertical fallback)
   ============================================================ */
.suites {
  overflow: hidden;
  padding: 0;
}
.suites__track {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(2.5rem, 7vw, 4rem);
  padding: clamp(5rem, 12vh, 8rem) var(--pad);
}
.suites__panel {
  flex: 0 0 auto;
}
.suites__intro,
.suites__cta,
.suites .suite {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.suites__intro h2 {
  margin: 1.1rem 0;
}
.suites__intro p {
  color: var(--ink-soft);
  max-width: 34ch;
  margin: 0 0 1.8rem;
}
.suites .suite {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  transform-style: preserve-3d;
}
.suite__frame {
  padding: 12px;
  border: 1px solid rgba(23, 33, 47, 0.18);
  background: var(--paper);
}
.suites .suite__img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(150deg, var(--sand), var(--ink));
}
.suite__meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.suites__cta h2 {
  margin: 1rem 0 1.8rem;
}

@media (min-width: 900px) {
  .js .suites__track {
    flex-direction: row;
    align-items: center;
    width: max-content;
    height: 100vh;
    height: 100svh;
    gap: clamp(2rem, 4vw, 5rem);
    padding: 0 var(--pad);
    will-change: transform;
  }
  .js .suites__intro {
    width: min(42vw, 440px);
    margin: 0;
  }
  .js .suites__cta {
    width: min(44vw, 460px);
    margin: 0;
  }
  .js .suites .suite {
    width: min(56vw, 560px);
    margin: 0;
  }
  .js .suites .suite__img {
    aspect-ratio: auto;
    height: 60vh;
  }
}

@media (max-width: 720px) {
  .row__media {
    position: relative;
    grid-column: 1 / -1;
    height: 190px;
    margin-top: 1.1rem;
    clip-path: none !important;
    opacity: 1 !important;
    border-radius: 3px;
  }
  .row__media::after {
    display: none;
  }
}

/* ============================================================
   The Suites — elevated (ghost numeral, glass plate, focus, HUD)
   ============================================================ */
.suite {
  position: relative;
}
.suite__no {
  display: none;
}
.suites .suite__frame {
  position: relative;
  padding: 0;
  border: none;
  background: none;
  overflow: hidden;
  box-shadow: 0 50px 90px -36px rgba(15, 22, 32, 0.55);
  transform-origin: center;
  will-change: transform, opacity;
}
.suite__plate {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.3rem, 2.2vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: linear-gradient(0deg, rgba(15, 22, 32, 0.88) 6%, rgba(15, 22, 32, 0.32) 62%, transparent);
  color: var(--cream);
}
.suite__plate .suite__row {
  margin: 0;
}
.suite__plate h3 {
  color: var(--cream);
}
.suite__plate .suite__row span {
  color: var(--gold-soft);
}
.suite__plate p {
  color: rgba(244, 237, 225, 0.82);
  max-width: 36ch;
}
.suite__book {
  align-self: flex-start;
  margin-top: 0.4rem;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  display: inline-flex;
  gap: 0.5rem;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(216, 181, 118, 0.4);
  transition: gap 0.4s var(--ease), color 0.3s;
}
.suite__book span {
  transition: transform 0.4s var(--ease);
}
.suite__book:hover {
  color: var(--cream);
}
.suite__book:hover span {
  transform: translateX(5px);
}
.suites__hud {
  position: absolute;
  bottom: clamp(1.4rem, 4vh, 3rem);
  left: var(--pad);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  font-family: var(--grotesk);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.suites__count b {
  color: var(--gold-deep);
  font-weight: 700;
}
.suites__bar {
  width: clamp(80px, 12vw, 160px);
  height: 2px;
  background: rgba(23, 33, 47, 0.16);
  overflow: hidden;
}
.suites__bar i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: var(--gold);
}
.suites__cue {
  opacity: 0.7;
}
@media (max-width: 900px) {
  .suites__hud {
    display: none;
  }
  .suite__no {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }
}

/* feature & coast images: scroll-driven pan + zoom (see main.js) */

@media (prefers-reduced-motion: reduce) {
  .feature__media img,
  .coast__media img,
  .row__media img {
    animation: none !important;
  }
  .suites .suite__frame {
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   Mobile menu
   ============================================================ */
.nav__burger {
  display: none;
  position: relative;
  width: 30px;
  height: 18px;
  padding: 0;
  margin-left: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav__burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  transition: transform 0.4s var(--ease), top 0.4s var(--ease), background 0.4s;
}
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { top: 12px; }
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__burger.is-open span { background: var(--cream); }
.nav__burger.is-open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { top: 8px; transform: rotate(-45deg); }

.nav-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: var(--night);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  overscroll-behavior: contain;
  transition: opacity 0.5s var(--ease-cinematic), visibility 0.5s;
}
.nav-menu.is-open {
  opacity: 1;
  visibility: visible;
}
.nav-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  text-align: center;
}
.nav-menu a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.2rem, 10vw, 3.4rem);
  color: var(--cream);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.nav-menu.is-open a { opacity: 1; transform: none; }
.nav-menu.is-open a:nth-child(1) { transition-delay: 0.1s; }
.nav-menu.is-open a:nth-child(2) { transition-delay: 0.16s; }
.nav-menu.is-open a:nth-child(3) { transition-delay: 0.22s; }
.nav-menu.is-open a:nth-child(4) { transition-delay: 0.28s; }
.nav-menu.is-open a:nth-child(5) { transition-delay: 0.34s; }
.nav-menu a:hover { color: var(--gold-soft); }

@media (max-width: 720px) {
  .nav__burger { display: block; }
  .nav__cta { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .nav-menu a { transform: none !important; }
}

/* ============================================================
   Praise / social proof
   ============================================================ */
.proof {
  text-align: center;
  padding: clamp(6rem, 14vh, 11rem) var(--pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}
.proof__quote {
  margin: 0;
  max-width: 24ch;
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 1.2;
  color: var(--ink);
}
.proof__by {
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
/* press marquee — slow editorial scroll with faded edges */
.proof__marquee {
  width: 100%;
  margin-top: 1.4rem;
  padding-top: clamp(1.4rem, 4vw, 2.4rem);
  border-top: 1px solid rgba(23, 33, 47, 0.12);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.proof__track {
  display: flex;
  width: max-content;
  animation: pressMarquee 34s linear infinite;
}
.proof__track span {
  margin-right: clamp(2.5rem, 6vw, 5rem);
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  opacity: 0.72;
  white-space: nowrap;
}
@keyframes pressMarquee {
  to { transform: translateX(-50%); }
}
.proof__marquee:hover .proof__track {
  animation-play-state: paused;
}
@media (prefers-reduced-motion: reduce) {
  .proof__track { animation: none !important; }
}

/* ============================================================
   Booking / availability bar
   ============================================================ */
.booking {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(23, 33, 47, 0.16);
  border-radius: 4px;
  background: var(--paper);
  box-shadow: 0 30px 70px -40px rgba(23, 33, 47, 0.4);
}
.booking__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}
.booking__field label {
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.booking input,
.booking select {
  font-family: var(--grotesk);
  font-size: 0.95rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(23, 33, 47, 0.25);
  padding: 0.4rem 0.2rem;
  min-width: 150px;
}
.booking input:focus,
.booking select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.booking .btn {
  white-space: nowrap;
}
@media (max-width: 620px) {
  .booking {
    flex-direction: column;
    align-items: stretch;
  }
  .booking input,
  .booking select {
    min-width: 0;
  }
  .booking .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   Modals — booking / menu / location / legal
   ============================================================ */
.linklike {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.3s;
}
.footer__legal .linklike:hover { color: var(--gold-soft); }

html.is-modal { overflow: hidden; }

.modal {
  width: min(560px, 92vw);
  max-height: 90vh;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 50px 120px -30px rgba(15, 22, 32, 0.6);
  overflow: visible;
}
.modal::backdrop {
  background: rgba(15, 22, 32, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.modal[open] { animation: modalIn 0.5s var(--ease-cinematic); }
.modal[open]::backdrop { animation: modalFade 0.4s ease; }
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }

.modal__panel {
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  padding: clamp(1.6rem, 4vw, 2.8rem);
  -webkit-overflow-scrolling: touch;
}
.modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 33, 47, 0.18);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s, color 0.3s, transform 0.4s var(--ease);
}
.modal__close svg { width: 16px; height: 16px; }
.modal__close:hover { background: var(--ink); color: var(--cream); transform: rotate(90deg); }

.modal__eyebrow {
  margin: 0 0 0.5rem;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.modal__title {
  margin: 0 0 1.2rem;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  line-height: 1.05;
}

/* booking form */
.bk__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.1rem;
  margin-bottom: 1.2rem;
}
.bk__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.bk__field--full { grid-column: 1 / -1; }
.bk__field input,
.bk__field select {
  font-family: var(--grotesk);
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(23, 33, 47, 0.25);
  padding: 0.5rem 0.1rem;
}
.bk__field input:focus,
.bk__field select:focus { outline: none; border-bottom-color: var(--gold); }
.bk__summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(23, 33, 47, 0.12);
  border-bottom: 1px solid rgba(23, 33, 47, 0.12);
}
.bk__nights { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.bk__total { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); }
.bk .btn { width: 100%; text-align: center; margin-top: 1rem; }
.bk__err { margin: 0.6rem 0 0; min-height: 1.1em; font-size: 0.85rem; color: #b23a2e; }
.bk__fine { margin: 0.8rem 0 0; font-size: 0.78rem; color: var(--ink-soft); text-align: center; }

/* booking confirmation */
.bk-done { text-align: center; padding: 0.5rem 0; }
.bk-done__mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(184, 138, 70, 0.14);
  color: var(--gold-deep);
}
.bk-done__mark svg { width: 34px; height: 34px; }
.bk-done__meta { margin: 0.4rem 0; color: var(--ink-soft); line-height: 1.6; }
.bk-done__total { margin: 1rem 0; font-family: var(--serif); font-size: 1.3rem; }
.bk-done__total b { color: var(--gold-deep); }
.bk-done__note { margin: 0.6rem 0 1.4rem; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.bk-done .btn { min-width: 160px; }

/* sheets — menu / location / legal */
.sheet__lead,
.sheet__body { color: var(--ink-soft); line-height: 1.7; margin: 0 0 1.4rem; }
.sheet__body a { color: var(--gold-deep); border-bottom: 1px solid var(--gold); }
.menu-list { list-style: none; margin: 0 0 1.6rem; padding: 0; }
.menu-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(23, 33, 47, 0.1);
}
.menu-list li:last-child { border-bottom: 1px solid rgba(23, 33, 47, 0.1); }
.menu-list span {
  font-family: var(--grotesk);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.menu-list b { font-family: var(--serif); font-weight: 400; font-size: 1.1rem; }
.sheet .btn { width: 100%; text-align: center; }

.loc__map {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(23, 33, 47, 0.14);
}
.loc__map { position: relative; }
.loc__map iframe { width: 100%; height: 100%; border: 0; display: block; filter: grayscale(0.2) contrast(1.02); }
.loc__credit {
  position: absolute;
  right: 6px;
  bottom: 4px;
  font-size: 0.6rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: rgba(251, 247, 239, 0.7);
  padding: 1px 5px;
  border-radius: 3px;
}
.loc__ways { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.2rem; }
.loc__ways p { margin: 0; font-size: 0.85rem; line-height: 1.5; color: var(--ink-soft); }
.loc__ways b { color: var(--ink); font-weight: 600; }
.loc__addr { font-style: normal; font-size: 0.85rem; color: var(--ink-soft); }
.loc__addr a { color: var(--gold-deep); }

.footer__thanks { margin: 0; font-size: 0.92rem; color: var(--gold-soft); }
.footer__form.is-invalid input { border-bottom-color: #d9756b; }

@media (max-width: 540px) {
  .bk__grid { grid-template-columns: 1fr; }
  .loc__ways { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .modal[open],
  .modal[open]::backdrop { animation: none !important; }
  .modal__close:hover { transform: none; }
}
