/* =============================================================
   Villa Maya — Natural Reserve, Cozumel
   Static site stylesheet
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette lifted from the current Villa Maya site */
  --bark:        #403f2b;  /* primary dark olive */
  --bark-soft:   #4d4b36;  /* raised surface on dark */
  --bark-deep:   #33321f;  /* footer / overlays */
  --cream:       #fefaf1;  /* light page background */
  --sand:        #f3f1c4;  /* type + accents on dark */
  --sand-dim:    rgba(243, 241, 196, 0.66);
  --line-dark:   rgba(243, 241, 196, 0.22);
  --line-light:  rgba(64, 63, 43, 0.16);

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

  /* Rhythm */
  --brass: #b7a778;      /* used only for hairlines and numerals */
  --gutter: clamp(1.35rem, 5vw, 6.5rem);
  --section-y: clamp(5.5rem, 12vw, 12rem);
  --maxw: 1280px;
  --readable: 62ch;

  --radius: 0px;
  --pill: 999px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@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;
  }
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--bark);
  font-family: var(--body);
  font-weight: 300;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.0625rem);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--bark); color: var(--sand); }

/* ---------- Utilities ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
/* Column caps sit on .wrap, so they have to allow for its side padding. */
.narrow { max-width: calc(74ch + 2 * var(--gutter)); }
.readable > p { max-width: var(--readable); }
/* Text block held to a readable measure but flush with the page gutter,
   so it lines up with the grids and cards below it. */
.measure { max-width: 66ch; }
.measure--center { margin-inline: auto; }
.section { padding-block: var(--section-y); }
.center { text-align: center; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--sand); color: var(--bark);
  padding: 0.7rem 1.1rem; border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

/* Small tracked-out label used all over the original design */
.eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 1.8rem;
  color: var(--bark);
  opacity: 0.72;
}
.on-dark .eyebrow, .dark .eyebrow, .deep .eyebrow { color: var(--sand); opacity: 0.75; }

.display-xl { font-size: clamp(3rem, 11.5vw, 9.5rem); letter-spacing: -0.035em; }
.display-l  { font-size: clamp(2.4rem, 6.4vw, 5rem); }
.display-m  { font-size: clamp(1.9rem, 3.8vw, 3.15rem); }
.display-s  { font-size: clamp(1.35rem, 2.1vw, 1.85rem); letter-spacing: -0.01em; }

.lede { font-size: clamp(1.075rem, 1rem + 0.45vw, 1.3rem); line-height: 1.65; }

.dark { background: var(--bark); color: var(--sand); }
.dark a { color: var(--sand); }
.deep { background: var(--bark-deep); color: var(--sand); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6em;
  padding: 1.15em 2.9em;
  border: 1px solid var(--sand);
  border-radius: var(--pill);
  background: var(--sand);
  color: var(--bark);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
}
.btn:hover { background: transparent; color: var(--sand); transform: translateY(-2px); }
/* `.dark a` would otherwise repaint button labels sand-on-sand. */
.dark .btn, .deep .btn, .hero .btn { color: var(--bark); }
.dark .btn:hover, .deep .btn:hover, .hero .btn:hover { color: var(--sand); }
.dark .btn--outline-dark, .deep .btn--outline-dark { border-color: var(--sand); color: var(--sand); }
.dark .btn--outline-dark:hover, .deep .btn--outline-dark:hover { background: var(--sand); color: var(--bark); }
.btn--ghost { background: transparent; color: var(--sand); }
.btn--ghost:hover { background: var(--sand); color: var(--bark); }
.btn--dark { background: var(--bark); border-color: var(--bark); color: var(--sand); }
.btn--dark:hover { background: transparent; color: var(--bark); }
.btn--outline-dark { background: transparent; border-color: var(--bark); color: var(--bark); }
.btn--outline-dark:hover { background: var(--bark); color: var(--sand); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  text-decoration: none; padding-bottom: 0.45em;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s var(--ease), opacity 0.3s var(--ease);
}
.link-arrow:hover { gap: 1em; opacity: 0.75; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--bark);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.site-header.is-transparent { background: transparent; }
.site-header.is-stuck { background: var(--bark); border-bottom-color: var(--line-dark); }

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: 84px;
  padding-inline: var(--gutter);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; color: var(--sand); }
/* The logo already carries the wordmark and "Reserva Natural · Cozumel,
   México", so the brand block is the artwork alone. */
.brand__logo {
  width: auto;
  height: clamp(46px, 4.6vw, 62px);
  transition: opacity 0.3s var(--ease);
}
.brand:hover .brand__logo { opacity: 0.82; }

.header-locale {
  justify-self: center;
  font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--sand); opacity: 0.8; text-decoration: none;
}
@media (max-width: 860px) { .header-locale { display: none; } }

.nav-toggle {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: none; border: 0; padding: 0.5rem 0;
  color: var(--sand); cursor: pointer;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
}
.nav-toggle__glyph { font-size: 1rem; line-height: 1; transition: transform 0.4s var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle__glyph { transform: rotate(45deg); }

/* Fullscreen menu */
.nav-panel {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bark);
  display: grid; place-items: center;
  padding: 6rem var(--gutter) 3rem;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
.nav-panel.is-open { opacity: 1; visibility: visible; }
.nav-panel ul { list-style: none; margin: 0; padding: 0; }
.nav-panel a {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.9rem, 6vw, 3.6rem);
  color: var(--sand);
  text-decoration: none;
  padding: 0.16em 0;
  opacity: 0.85;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}
.nav-panel a:hover, .nav-panel a[aria-current="page"] { opacity: 1; transform: translateX(0.4rem); }
.nav-panel a[aria-current="page"]::after { content: " ·"; }
.nav-panel__meta {
  margin-top: 2.75rem; padding-top: 1.75rem;
  border-top: 1px solid var(--line-dark);
  font-size: 0.8rem; letter-spacing: 0.06em; color: var(--sand-dim);
}
.nav-panel__meta a { font: inherit; font-family: var(--body); display: inline; padding: 0; opacity: 1; }
.nav-panel__meta a:hover { transform: none; text-decoration: underline; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(96svh, 960px);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 9rem var(--gutter) 4rem;
  background: var(--bark);
  color: var(--sand);
}
.hero__inner { position: relative; z-index: 2; }
.hero h1 { font-family: var(--display); font-weight: 300; }
.hero__sub {
  margin: 1.9rem 0 3.2rem;
  font-size: 0.7rem; letter-spacing: 0.52em; text-transform: uppercase;
  color: var(--sand-dim);
}
.hero--page { min-height: min(62svh, 620px); }
.hero--page h1 { font-size: clamp(2.5rem, 7vw, 5.4rem); }

/* ---------- Marquee ---------- */
.ribbon { background: var(--bark); color: var(--sand); border-block: 1px solid var(--line-dark); }
.ribbon__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.9rem 1.6rem;
  padding-block: 1.5rem;
  font-size: 0.64rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--sand-dim); text-align: center;
}
.ribbon__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--brass); opacity: 0.8; }

/* ---------- Full-bleed image band ---------- */
.band {
  position: relative;
  height: clamp(300px, 58vh, 640px);
  overflow: hidden;
  background: var(--bark-soft);
}
.band img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Split (image + copy) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: clamp(2.25rem, 5vw, 5rem);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--radius);
}
.split__media--wide img { aspect-ratio: 4 / 3; }

/* ---------- Cards ---------- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 19rem), 1fr));
  gap: clamp(1.5rem, 3vw, 2.6rem);
}
.card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.dark .card, .deep .card {
  background: var(--bark-soft);
  border-color: var(--line-dark);
  color: var(--sand);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(51, 50, 31, 0.18); }
.card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--bark-soft); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__body { padding: 1.6rem 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.card__title { font-family: var(--display); font-size: 1.35rem; letter-spacing: -0.015em; }
.card__text { font-size: 0.95rem; opacity: 0.82; margin: 0; flex: 1; }
.card__foot {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-top: 0.6rem; padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}
.dark .card__foot, .deep .card__foot { border-top-color: var(--line-dark); }
.card__price { font-family: var(--display); font-size: 1.15rem; white-space: nowrap; }
.card__meta { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.62; }
.tag {
  align-self: flex-start;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.32em 0.85em; border: 1px solid currentColor; border-radius: var(--pill);
  opacity: 0.7;
}

/* ---------- Feature list ---------- */
.feature-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.feature-list li {
  position: relative; padding-left: 1.85rem;
  font-size: 1rem;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 0.72em;
  width: 0.7rem; height: 1px; background: currentColor; opacity: 0.55;
}

/* Numbered pillar blocks */
.pillars { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
.pillar {
  display: grid;
  grid-template-columns: minmax(0, 6rem) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding-top: 2.25rem;
  border-top: 1px solid var(--line-light);
}
.dark .pillar, .deep .pillar { border-top-color: var(--line-dark); }
.pillar__num { font-family: var(--display); font-size: 1.1rem; opacity: 0.5; letter-spacing: 0.1em; }
.pillar__body h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-bottom: 1rem; }
@media (max-width: 640px) {
  .pillar { grid-template-columns: 1fr; gap: 0.75rem; }
}

/* ---------- Menu (restaurant) ---------- */
.menu-course { margin-bottom: clamp(3rem, 6vw, 4.5rem); }
.menu-course > h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  padding-bottom: 1rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--line-light);
}
.dish {
  display: grid;
  grid-template-columns: minmax(0, 7rem) minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
  padding-block: 1.5rem;
  border-bottom: 1px dashed var(--line-light);
}
.dish:last-child { border-bottom: 0; }
.dish--no-thumb { grid-template-columns: minmax(0, 1fr) auto; }
.dish__thumb { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.dish__name { font-family: var(--display); font-size: 1.2rem; letter-spacing: -0.01em; margin-bottom: 0.35rem; }
.dish__desc { font-size: 0.95rem; opacity: 0.8; margin: 0; }
.dish__note { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-top: 0.5rem; }
.dish__price { font-family: var(--display); font-size: 1.15rem; white-space: nowrap; }
@media (max-width: 640px) {
  .dish { grid-template-columns: 4.5rem minmax(0, 1fr); }
  .dish__price { grid-column: 2; }
}

/* ---------- Forms ---------- */
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr)); gap: 1.25rem; }
.field { display: grid; gap: 0.45rem; }
.field label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; }
.field__opt { letter-spacing: 0.1em; opacity: 0.65; }
.field input, .field select, .field textarea {
  font: inherit; font-size: 0.98rem;
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  color: inherit;
  width: 100%;
}
.field textarea { min-height: 8rem; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: currentColor; opacity: 0.42; }
.form__note { font-size: 0.85rem; opacity: 0.7; }

/* ---------- Contact strip ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: clamp(1.75rem, 4vw, 3rem);
}
.contact-grid dt { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.62; margin-bottom: 0.6rem; }
.contact-grid dd { margin: 0; font-size: 1.05rem; line-height: 1.7; }
.contact-grid a { text-decoration: none; border-bottom: 1px solid currentColor; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bark-deep); color: var(--sand); padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem; }
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}
.footer-logo { width: auto; height: clamp(72px, 8vw, 96px); margin-bottom: 1.4rem; }
.footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-nav a { text-decoration: none; opacity: 0.78; font-size: 0.95rem; }
.footer-nav a:hover { opacity: 1; text-decoration: underline; }
.footer-title { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.6; margin-bottom: 1.1rem; }
.socials { display: flex; gap: 1.4rem; margin-top: 1.5rem; }
.socials a { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; opacity: 0.78; }
.socials a:hover { opacity: 1; text-decoration: underline; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.75rem;
  font-size: 0.78rem; opacity: 0.62;
}
.footer-bottom ul { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin: 0; padding: 0; }
.footer-bottom a { text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- Legal pages ---------- */
.legal { max-width: calc(70ch + 2 * var(--gutter)); }
.legal h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); margin: 2.75rem 0 1rem; }
.legal h2:first-of-type { margin-top: 0; }
.legal ul { padding-left: 1.2rem; }
.legal li { margin-bottom: 0.5rem; }
.callout {
  border-left: 2px solid var(--bark);
  padding: 1.1rem 1.4rem;
  background: rgba(64, 63, 43, 0.05);
  font-size: 0.93rem;
  margin-bottom: 2.5rem;
}

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* =============================================================
   Exclusive pass — editorial entries, service columns, reef
   index, and the reservations plate.
   ============================================================= */

/* ---------- Services: three terse columns ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.service { border-top: 1px solid var(--line-light); padding-top: 1.6rem; }
.dark .service, .deep .service { border-top-color: var(--line-dark); }
.service__title {
  font-family: var(--body);
  font-size: 0.66rem; letter-spacing: 0.34em; text-transform: uppercase;
  font-weight: 400; opacity: 0.6;
  margin-bottom: 1.6rem;
}
.service__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.85rem; }
.service__list li {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.footnote {
  font-size: 0.8rem; letter-spacing: 0.04em; opacity: 0.6;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}

/* ---------- Editorial entries (experiences) ---------- */
.entries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
  gap: clamp(2.75rem, 5vw, 4.5rem) clamp(1.75rem, 3vw, 3rem);
}
.entry { display: flex; flex-direction: column; }
.entry__media {
  aspect-ratio: 4 / 5; overflow: hidden; background: var(--bark-soft);
  margin-bottom: 1.6rem;
}
.entry__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.8s var(--ease);
  filter: saturate(0.92);
}
.entry:hover .entry__media img { transform: scale(1.04); filter: saturate(1); }
.entry__num {
  font-family: var(--display); font-size: 0.8rem; letter-spacing: 0.18em;
  color: var(--brass); margin: 0 0 0.7rem;
}
.entry__title {
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.9vw, 1.65rem);
  margin-bottom: 0.6rem;
}
.entry__text { font-size: 0.95rem; opacity: 0.78; margin: 0 0 1.2rem; flex: 1; }
.entry__foot {
  display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap;
  margin: 0; padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}
.dark .entry__foot, .deep .entry__foot { border-top-color: var(--line-dark); }
.entry__price { font-family: var(--display); font-size: 1.1rem; }
.entry__meta, .entry__state {
  font-size: 0.64rem; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.55;
}
.entry__state { color: var(--brass); opacity: 0.9; }

/* ---------- Reef index ---------- */
.site-list { list-style: none; margin: 0; padding: 0; }
.site-row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.5fr) minmax(0, 1.1fr);
  gap: 1rem 2rem;
  align-items: baseline;
  padding-block: 1.15rem;
  border-bottom: 1px solid var(--line-dark);
}
.site-row:first-child { border-top: 1px solid var(--line-dark); }
.site-row__name { font-family: var(--display); font-size: clamp(1.1rem, 1.6vw, 1.4rem); }
.site-row__depth {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass);
}
.site-row__note { font-size: 0.9rem; opacity: 0.66; }
@media (max-width: 700px) {
  .site-row { grid-template-columns: minmax(0, 1fr) auto; gap: 0.3rem 1rem; }
  .site-row__note { grid-column: 1 / -1; }
  /* trailing letter-spacing would otherwise hang past the gutter */
  .site-row__depth { text-align: right; margin-right: -0.2em; }
}

/* ---------- Reservations plate ---------- */
.reserve {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}
.reserve__lines { display: grid; }
.reserve__line {
  display: grid;
  grid-template-columns: minmax(0, 8rem) minmax(0, 1fr);
  gap: 1rem 1.5rem;
  align-items: baseline;
  padding-block: 1.4rem;
  border-top: 1px solid var(--line-dark);
  text-decoration: none;
  transition: opacity 0.3s var(--ease);
}
.reserve__line:last-of-type { border-bottom: 1px solid var(--line-dark); }
.reserve__line:hover { opacity: 0.7; }
.section:not(.dark):not(.deep) .reserve__line { border-color: var(--line-light); }
.reserve__label {
  font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase; opacity: 0.55;
}
.reserve__value {
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  letter-spacing: -0.015em;
  overflow-wrap: anywhere;
}
.reserve__addr { margin-top: 1.6rem; font-size: 0.88rem; opacity: 0.62; line-height: 1.8; }
@media (max-width: 460px) {
  .reserve__line { grid-template-columns: 1fr; gap: 0.3rem; }
}

/* ---------- Quieter cards: no chrome, just image and type ---------- */
.card {
  background: transparent;
  border: 0;
}
.dark .card, .deep .card { background: transparent; border: 0; }
.card:hover { transform: none; box-shadow: none; }
.card__media { aspect-ratio: 4 / 5; }
.card__body { padding: 1.5rem 0 0; }
.card__foot { border-top: 0; padding-top: 0.4rem; }
.dark .card__foot, .deep .card__foot { border-top: 0; }

/* ---------- Slower, gentler reveals ---------- */
.reveal { transform: translateY(28px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease); }

/* ---------- FAQ ---------- */
.faq { max-width: calc(78ch); }
.faq__item { border-top: 1px solid var(--line-light); }
.faq__item:last-child { border-bottom: 1px solid var(--line-light); }
.dark .faq__item, .deep .faq__item { border-color: var(--line-dark); }
.faq__q {
  list-style: none; cursor: pointer;
  display: flex; align-items: baseline; justify-content: space-between; gap: 2rem;
  padding-block: 1.5rem;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  letter-spacing: -0.012em;
  transition: opacity 0.3s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { opacity: 0.72; }
.faq__q::after {
  content: "+"; flex: none;
  font-family: var(--body); font-size: 1.1rem; color: var(--brass);
  transition: transform 0.35s var(--ease);
}
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a { padding-bottom: 1.75rem; max-width: 62ch; font-size: 0.98rem; opacity: 0.8; }

/* ---------- Finding us: the drawn island map ---------- */
.map-frame {
  display: block;
  background: var(--bark-deep);
  color: var(--sand);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  text-decoration: none;
  transition: background 0.45s var(--ease);
}
.map-frame:hover { background: #2c2b1a; }
.map-frame:hover .pin-halo { r: 22; opacity: 0.42; }
.map-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
@media (min-width: 820px) { .map-grid { grid-template-columns: minmax(0, 300px) minmax(0, 1fr); } }
.map-svg { width: 100%; height: auto; }
.pin-halo { transition: r 0.6s var(--ease), opacity 0.6s var(--ease); }
.map-side h3 { margin-bottom: 1.1rem; }
.map-side p { font-size: 0.95rem; opacity: 0.8; }
.map-addr { font-size: 0.88rem !important; opacity: 0.6 !important; line-height: 1.8; }
.map-cta {
  display: inline-flex; align-items: center; gap: 0.7em;
  margin-top: 1.6rem; padding-bottom: 0.45em;
  border-bottom: 1px solid currentColor;
  font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase;
  transition: gap 0.3s var(--ease);
}
.map-frame:hover .map-cta { gap: 1.1em; }

/* ---------- Getting here: written route, for readers and for crawlers ---------- */
.route {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.route > div { border-top: 1px solid var(--line-light); padding-top: 1.5rem; }
.dark .route > div, .deep .route > div { border-top-color: var(--line-dark); }
.route__title {
  font-family: var(--body);
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 400; opacity: 0.6; margin-bottom: 1rem;
}
.route p { font-size: 0.95rem; opacity: 0.82; }
