/* ==========================================================================
   Aurum Stays — public website styles
   Plain CSS (no build step) for conventional shared hosting.
   Mobile first: base rules are written for phones; min-width queries add room.
   ========================================================================== */

/* ---------- Fonts (self-hosted, SIL Open Font License) ---------- */
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/cormorant-garamond-italic-latin.woff2") format("woff2");
}
@font-face {
  font-family: "Jost";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/jost-latin.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  /* Champagne gold is an accent: rules, active states, small icons and the primary CTA. */
  --gold: #C6A15B;
  --gold-deep: #A98243;
  --ivory: #F8F4ED;
  --cream: #F2ECE3;
  --paper: #FFFDF8;
  --night: #181816;
  --night-2: #22201D;
  --ink: #26231F;
  --body: #3F3B35;
  --muted: #706A62;
  --line: #DDD5CA;
  --line-strong: #CFC5B8;
  --on-night: #F4EFE6;
  --on-night-muted: #B7AFA3;
  --on-night-line: rgba(244, 239, 230, 0.14);

  --serif: "Cormorant Garamond", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --sans: "Jost", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(1rem, 4.2vw, 3rem);
  --max: 1320px;
  --section: clamp(3.75rem, 2.25rem + 6vw, 8.5rem);
  --section-sm: clamp(2.5rem, 1.75rem + 3.5vw, 5rem);
  --header-h: 4.25rem;
  --cta-h: 3.5rem;
  --ease: cubic-bezier(0.22, 0.61, 0.24, 1);
  --shadow: 0 1px 2px rgba(24, 24, 22, 0.05), 0 18px 40px -18px rgba(24, 24, 22, 0.28);

  /* Image corners: restrained, never pill-like. Full-bleed heroes and edge-to-edge bands stay square. */
  --radius-thumb: 8px;
  --radius-photo: 10px;
  --radius-card: 12px;

  --focus-ring: var(--ink);
  --focus-halo: rgba(198, 161, 91, 0.55);

  color-scheme: light;
}
@media (min-width: 1080px) {
  :root { --header-h: 5.25rem; }
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1.0625rem, 1rem + 0.2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.7;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img, svg, picture { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }
p a, dd a, li a { text-decoration-color: var(--gold); }
p a:hover, dd a:hover, li a:hover { text-decoration-thickness: 2px; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; }

p { margin: 0 0 1.1em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

ul, ol { margin: 0; padding: 0; }
address { font-style: normal; }
dl, dd { margin: 0; }
figure { margin: 0; }
table { border-collapse: collapse; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--focus-halo);
}
.on-dark { --focus-ring: var(--gold); --focus-halo: transparent; }
main:focus { outline: none; }

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

[hidden] { display: none !important; }

.visually-hidden {
  position: absolute !important;
  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.75rem; left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1.1rem;
  background: var(--night);
  color: var(--paper);
  font-size: 0.9rem;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s;
}
.skip-link:focus { transform: none; }

.icon { width: 1.05rem; height: 1.05rem; flex: none; }
.icon--gold { color: var(--gold-deep); }
.on-dark .icon--gold { color: var(--gold); }

/* ---------- Layout ---------- */
.container {
  width: min(100% - 2 * var(--gutter), var(--max));
  margin-inline: auto;
}

.section { padding-block: var(--section); }
.section--flush-top { padding-top: 0; }
.page-head + .section--flush-top { padding-top: var(--section-sm); }

.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-night { background: var(--night); color: var(--on-night); }

.muted { color: var(--muted); }
.on-dark .muted { color: var(--on-night-muted); }
.small { font-size: 0.92rem; }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2.5rem;
  margin-bottom: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
}
.section-head__text { max-width: 26rem; margin: 0; color: var(--muted); }
.on-dark .section-head__text { color: var(--on-night-muted); }

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 2rem;
}

/* ---------- Type ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.25rem;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow::before {
  content: "";
  flex: none;
  width: 2rem;
  height: 2px;
  background: var(--gold);
}
.eyebrow--light, .on-dark .eyebrow { color: var(--on-night-muted); }

.h2 { font-size: clamp(2.2rem, 1.5rem + 3.2vw, 4rem); }
.h3 { font-size: clamp(1.75rem, 1.35rem + 1.8vw, 2.5rem); }
.h4 { font-size: clamp(1.4rem, 1.25rem + 0.6vw, 1.65rem); font-weight: 600; line-height: 1.15; }

.lead {
  font-size: clamp(1.125rem, 1.05rem + 0.35vw, 1.3rem);
  line-height: 1.65;
  font-weight: 400;
}
.fineprint {
  margin-top: 1.5rem;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
}
.on-dark .fineprint { color: var(--on-night-muted); }

.page-title {
  font-size: clamp(2.6rem, 1.6rem + 4.6vw, 5.5rem);
  line-height: 1;
  max-width: 17ch;
}

/* ---------- Buttons & links ----------
   Primary (gold): WhatsApp / key conversion.  Secondary (charcoal): view a stay, explore.
   Tertiary (outline): call, directions, details.  Ivory / light: the same roles over dark or photos. */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  --btn-bd: var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--btn-bd);
  border-radius: 2px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.btn .icon { transition: transform 0.35s var(--ease); }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }
.btn:hover .icon:last-child:not(:first-child) { transform: translateX(3px); }
.btn:disabled { cursor: progress; opacity: 0.85; transform: none; }

.btn--sm { min-height: 2.75rem; padding: 0.55rem 1.1rem; font-size: 0.74rem; }
@media (max-width: 399px) {
  .btn { padding-inline: 1rem; letter-spacing: 0.11em; }
}

.btn--gold { --btn-bg: var(--gold); --btn-fg: var(--night); --btn-bd: var(--gold); }
.btn--gold:hover { --btn-bg: var(--gold-deep); --btn-bd: var(--gold-deep); box-shadow: 0 12px 24px -14px rgba(169, 130, 67, 0.9); }

.btn--dark { --btn-bg: var(--night); --btn-fg: var(--ivory); --btn-bd: var(--night); }
.btn--dark:hover { --btn-bg: #35322D; --btn-bd: #35322D; }

.btn--outline { --btn-fg: var(--ink); --btn-bd: var(--line-strong); }
.btn--outline:hover { --btn-bg: rgba(38, 35, 31, 0.04); --btn-bd: var(--ink); }

.btn--ivory { --btn-bg: var(--ivory); --btn-fg: var(--night); --btn-bd: var(--ivory); }
.btn--ivory:hover { --btn-bg: #fff; --btn-bd: #fff; }

.btn--light { --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, 0.45); }
.btn--light:hover { --btn-bg: rgba(255, 255, 255, 0.1); --btn-bd: #fff; }

.link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-block: 0.45rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  background: linear-gradient(var(--gold), var(--gold)) 0 100% / 1.75rem 2px no-repeat;
  transition: background-size 0.45s var(--ease);
}
.link:hover { background-size: 100% 2px; }
.link .icon { width: 0.9rem; height: 0.9rem; }
.link--light, .on-dark .link { color: var(--on-night); }

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.75rem;
  margin-top: 1.5rem;
  list-style: none;
}

.tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--gold-deep);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.icon-btn .icon { width: 1.2rem; height: 1.2rem; }

.photo-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 0.75rem;
  margin-top: 0.9rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}
.photo-caption span {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
}
.photo-tag {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.4rem 0.75rem;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 1px 0 var(--line);
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
@supports (backdrop-filter: blur(1px)) {
  .site-header { background: rgba(255, 253, 248, 0.86); backdrop-filter: saturate(1.3) blur(14px); }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: var(--header-h);
}
.site-header__actions { display: flex; align-items: center; gap: 1rem; }
.site-header__cta { display: none; }
@media (min-width: 760px) {
  .site-header__cta { display: inline-flex; }
}

.has-overlay-header .site-header:not(.is-solid) {
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  --focus-ring: var(--gold);
  --focus-halo: transparent;
}
.has-overlay-header .site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 -3rem;
  z-index: -1;
  background: linear-gradient(rgba(24, 24, 22, 0.55), rgba(24, 24, 22, 0));
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.45s var(--ease);
}
.has-overlay-header .site-header.is-solid::before { opacity: 0; }

body:not(.has-overlay-header) main { padding-top: var(--header-h); }

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 2.75rem;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.wordmark__a {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
/* Oval emblem before the header / menu wordmark; sized to sit inside the header height. */
.wordmark__mark { flex: none; width: auto; height: 2.35rem; margin-right: 0.1rem; }
@media (min-width: 1080px) {
  .wordmark__mark { height: 2.75rem; margin-right: 0.15rem; }
}
@media (max-width: 399px) {
  .wordmark__mark { height: 1.9rem; margin-right: 0; }
  .site-header .wordmark, .mobile-menu__top .wordmark { gap: 0.5rem; }
  .site-header__inner { gap: 0.5rem; }
}
.wordmark__rule { width: 1.5px; height: 1.35rem; background: var(--gold); }
.wordmark__s {
  padding-top: 0.12rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}
.wordmark--lg .wordmark__a { font-size: 2.3rem; }
.wordmark--lg .wordmark__rule { height: 1.75rem; }
.wordmark--lg .wordmark__s { font-size: 0.8rem; }

.nav { display: none; }
.nav__list { display: flex; gap: clamp(1.1rem, 1.7vw, 2rem); list-style: none; }
.nav__link {
  position: relative;
  padding-block: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  background: linear-gradient(var(--gold), var(--gold)) 0 100% / 0 2px no-repeat;
  transition: background-size 0.4s var(--ease);
}
.nav__link:hover, .nav__link[aria-current="page"] { background-size: 100% 2px; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.75rem;
  padding: 0 0 0 0.75rem;
  border: 0;
  background: none;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-toggle__icon {
  position: relative;
  width: 1.6rem;
  height: 0.65rem;
}
.menu-toggle__icon::before, .menu-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: currentColor;
}
.menu-toggle__icon::before { top: 0; }
.menu-toggle__icon::after { bottom: 0; left: 0.5rem; }

@media (min-width: 1080px) {
  .nav { display: block; margin-left: auto; }
  .menu-toggle { display: none; }
  .site-header__inner { gap: clamp(1.5rem, 2.4vw, 2.75rem); }
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: var(--night);
  color: var(--on-night);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  --focus-ring: var(--gold);
  --focus-halo: transparent;
}
.mobile-menu.is-open { opacity: 1; }
.mobile-menu[hidden] { display: none; }
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  border-bottom: 1px solid var(--on-night-line);
}
.mobile-menu__top .icon-btn { border-color: var(--on-night-line); }
.mobile-menu__top .icon-btn:hover { border-color: var(--gold); color: var(--gold); }
.mobile-menu__nav { flex: 1; padding-block: 1.25rem 1.5rem; }
.mobile-menu__nav ul { list-style: none; counter-reset: menu; }
.mobile-menu__nav li { border-bottom: 1px solid var(--on-night-line); counter-increment: menu; }
.mobile-menu__nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  min-height: 3.6rem;
  padding-block: 0.55rem;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 7vw, 2.5rem);
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transform: translateY(0.6rem);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.3s;
}
.mobile-menu__nav a::before {
  content: counter(menu, decimal-leading-zero);
  min-width: 1.6rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--on-night-muted);
}
.mobile-menu.is-open .mobile-menu__nav a { transform: none; opacity: 1; }
.mobile-menu__nav li:nth-child(2) a { transition-delay: 0.03s; }
.mobile-menu__nav li:nth-child(3) a { transition-delay: 0.06s; }
.mobile-menu__nav li:nth-child(4) a { transition-delay: 0.09s; }
.mobile-menu__nav li:nth-child(5) a { transition-delay: 0.12s; }
.mobile-menu__nav li:nth-child(6) a { transition-delay: 0.15s; }
.mobile-menu__nav li:nth-child(7) a { transition-delay: 0.18s; }
.mobile-menu__nav a:hover, .mobile-menu__nav a[aria-current="page"] { color: var(--gold); }
.mobile-menu__nav a[aria-current="page"]::before { color: var(--gold); }
.mobile-menu__foot {
  display: grid;
  gap: 1.25rem;
  padding-bottom: calc(1.75rem + env(safe-area-inset-bottom));
}
.mobile-menu__actions { display: grid; grid-template-columns: 1.6fr 1fr; gap: 0.75rem; }
.mobile-menu__meta { margin: 0; font-size: 0.9rem; line-height: 1.6; color: var(--on-night-muted); }
.mobile-menu__meta a { color: var(--on-night); text-decoration: none; }
.menu-open { overflow: hidden; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  display: flex;
  height: 100vh;
  height: 100svh;
  min-height: 34rem;
  max-height: 62rem;
  overflow: hidden;
  background: var(--night);
  color: #fff;
  isolation: isolate;
}
.hero__media, .hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero__media { z-index: -2; }
.hero__media img { object-fit: cover; object-position: 50% 58%; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(24, 24, 22, 0.84) 0%, rgba(24, 24, 22, 0.45) 40%, rgba(24, 24, 22, 0) 68%),
    linear-gradient(to right, rgba(24, 24, 22, 0.4) 0%, rgba(24, 24, 22, 0) 58%);
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(2.25rem, 8vh, 6rem);
  --focus-ring: var(--gold);
  --focus-halo: transparent;
}
.hero__eyebrow { color: rgba(255, 255, 255, 0.88); }
@media (max-width: 429px) {
  .hero__eyebrow { letter-spacing: 0.15em; }
  .hero__eyebrow::before { display: none; }
}
.hero__title {
  max-width: 13.5ch;
  font-size: clamp(2.75rem, 1.6rem + 5.4vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.012em;
}
.hero__title em { color: var(--gold); }
.hero__lead {
  max-width: 32rem;
  margin-top: 1.25rem;
  font-size: clamp(1.08rem, 1rem + 0.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
}
.hero__actions { margin-top: 2rem; }
@media (min-width: 700px) {
  .hero { min-height: 40rem; }
}
@media (max-width: 699px) {
  .hero::after {
    background: linear-gradient(to top, rgba(24, 24, 22, 0.9) 0%, rgba(24, 24, 22, 0.62) 50%, rgba(24, 24, 22, 0.2) 80%, rgba(24, 24, 22, 0.3) 100%);
  }
  .hero__media img { object-position: 50% 45%; }
  .hero__actions { gap: 0.65rem; }
  .hero__actions .btn { flex: 1 1 100%; }
}
@media (prefers-reduced-motion: no-preference) {
  .hero__media img, .loc-hero__media img { animation: hero-settle 2.4s var(--ease) both; }
  .hero__content > *, .loc-hero__content > * { animation: rise 1.1s var(--ease) both; }
  .hero__content > :nth-child(2), .loc-hero__content > :nth-child(2) { animation-delay: 0.1s; }
  .hero__content > :nth-child(3), .loc-hero__content > :nth-child(3) { animation-delay: 0.2s; }
  .hero__content > :nth-child(4), .loc-hero__content > :nth-child(4) { animation-delay: 0.3s; }
  .loc-hero__content > :nth-child(5) { animation-delay: 0.4s; }
}
@keyframes hero-settle { from { transform: scale(1.05); } to { transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---------- Highlights band ---------- */
.highlights { background: var(--ivory); border-bottom: 1px solid var(--line); }
.highlights__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}
.highlights__item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.35rem 1rem 1.35rem 0;
}
.highlights__item:nth-child(n + 3) { border-top: 1px solid var(--line); }
.highlights__item:nth-child(even) { padding-left: 1rem; border-left: 1px solid var(--line); }
.highlights__title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.15rem + 0.6vw, 1.55rem);
  font-weight: 600;
  line-height: 1.15;
}
.highlights__text { font-size: 0.92rem; line-height: 1.5; color: var(--muted); }
@media (min-width: 900px) {
  .highlights__list { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .highlights__item, .highlights__item:nth-child(even) { padding: 2.1rem 1.75rem; border-top: 0; border-left: 0; }
  .highlights__item + .highlights__item { border-left: 1px solid var(--line); }
  .highlights__item:first-child { padding-left: 0; }
}

/* ---------- Intro & ratings ---------- */
.intro__grid { display: grid; gap: 1.75rem; }
.intro__heading .h2 { max-width: 11ch; }
@media (min-width: 960px) {
  .intro__grid { grid-template-columns: 5fr 6fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
}

.ratings {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.rating { position: relative; }
.rating__value {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.9rem, 2.2rem + 2.6vw, 4rem);
  font-weight: 500;
  line-height: 1;
}
.rating__value span { margin-left: 0.15em; font-size: 0.38em; color: var(--muted); }
.rating__label { margin-top: 0.7rem; font-size: 0.92rem; line-height: 1.55; color: var(--muted); }
.rating__label strong { color: var(--ink); font-weight: 500; }
.rating__label a { text-decoration: none; }

/* ---------- Stay feature ---------- */
.stay { display: grid; gap: 1.75rem; align-items: center; }
.stay + .stay { margin-top: clamp(4rem, 2.5rem + 6vw, 8rem); }
.stay__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--ivory);
  isolation: isolate;
}
.stay__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 82vh;
  object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.stay__media:hover img { transform: scale(1.035); }
.stay__index {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.stay__index span {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  letter-spacing: 0;
  color: var(--gold-deep);
}
.stay__title { font-size: clamp(2.3rem, 1.7rem + 2.6vw, 3.6rem); }
.stay__title a { text-decoration: none; background: linear-gradient(var(--gold), var(--gold)) 0 92% / 0 2px no-repeat; transition: background-size 0.5s var(--ease); }
.stay__title a:hover { background-size: 100% 2px; }
.stay__tagline {
  margin: 0.75rem 0 1.1rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.2rem + 0.4vw, 1.45rem);
  font-style: italic;
  line-height: 1.35;
  color: var(--muted);
}
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin: 1.5rem 0;
  padding-block: 0.95rem;
  border-block: 1px solid var(--line);
  list-style: none;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.facts strong {
  margin-right: 0.3rem;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  vertical-align: -0.12em;
}
.stay__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.6rem;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.stay__meta strong { font-weight: 500; }
.stay__meta > .icon + span { flex: 1 1 12rem; min-width: 0; }
.price-note {
  margin: 0.6rem 0 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--muted);
}
.stay__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.5rem; margin-top: 1.75rem; }
@media (max-width: 499px) {
  .stay__actions .btn { flex: 1 1 100%; }
}
@media (min-width: 960px) {
  .stay { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(3rem, 6vw, 6.5rem); }
  .stay--reverse { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .stay--reverse .stay__media { order: 2; }
}

/* ---------- Story blocks ---------- */
.story { display: grid; gap: 3.25rem; align-items: center; }
.story__media { position: relative; }
.story__main { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-photo); }
.story__main--landscape { aspect-ratio: 4 / 3; }
.story__inset {
  position: absolute;
  right: 0;
  bottom: -2.25rem;
  width: 42%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 0.5rem solid var(--paper);
  border-radius: calc(var(--radius-thumb) + 0.5rem);
}
.bg-ivory .story__inset { border-color: var(--ivory); }
.story__body .h2 { margin-bottom: 1.25rem; }
.story__body > p:not(.eyebrow) { max-width: 34rem; }
.story__body .link { margin-top: 1rem; }
@media (min-width: 960px) {
  .story { grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 0 2rem; }
  .story__media { grid-column: 1 / 8; grid-row: 1; }
  .story__body { grid-column: 9 / 13; grid-row: 1; }
  .story--reverse .story__media { grid-column: 6 / 13; }
  .story--reverse .story__body { grid-column: 1 / 5; }
  .story__inset { right: -9%; bottom: -12%; width: 40%; border-width: 0.75rem; border-radius: calc(var(--radius-thumb) + 0.75rem); }
  .story--reverse .story__inset { right: auto; left: -9%; }
}

/* ---------- Split (dark arrival) ---------- */
.split { display: grid; }
.split__media { position: relative; min-height: 16rem; aspect-ratio: 4 / 3; }
.split__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }
.split__body { padding: clamp(3rem, 2rem + 5vw, 6rem) var(--gutter); }
.split__body .h2 { margin-bottom: 1.25rem; }
.split__body > p:not(.eyebrow) { max-width: 30rem; color: var(--on-night-muted); }
@media (min-width: 960px) {
  .split { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); min-height: min(88vh, 50rem); }
  .split__media { aspect-ratio: auto; }
  .split__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--section) max(var(--gutter), calc((100vw - var(--max)) / 2)) var(--section) clamp(3rem, 6vw, 6rem);
  }
}

/* ---------- Destination (Guwahati, home) ---------- */
.destination {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(34rem, 92vh, 56rem);
  overflow: hidden;
  background: var(--night);
  color: #fff;
  isolation: isolate;
}
.destination__figure { position: absolute; inset: 0; z-index: -1; }
.destination__img { width: 100%; height: 100%; object-fit: cover; object-position: 28% 50%; }
.destination__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(24, 24, 22, 0.86) 0%, rgba(24, 24, 22, 0.25) 45%, rgba(24, 24, 22, 0) 70%),
    linear-gradient(to right, rgba(24, 24, 22, 0.45) 0%, rgba(24, 24, 22, 0) 55%);
}
.destination__body { padding-top: 8rem; padding-bottom: 7rem; }
.destination__body .h2 { max-width: 11ch; margin-bottom: 1.25rem; }
.destination__text { max-width: 31rem; color: rgba(255, 255, 255, 0.88); }
.destination__body .btn { margin-top: 1.25rem; }
@media (min-width: 960px) {
  .destination__body { padding-bottom: var(--section); }
}
/* Narrow screens: show the whole photograph above the text rather than a sliver of sky. */
@media (max-width: 699px) {
  .destination { display: block; min-height: 0; }
  .destination__figure { position: relative; z-index: 0; }
  .destination__img { height: auto; aspect-ratio: 16 / 10; }
  .destination__figure::after { display: none; }
  .destination__body { padding-top: 2.25rem; padding-bottom: 4rem; }
  .destination__body .btn { width: 100%; }
}

/* ---------- Reviews ---------- */
.reviews__grid { display: grid; gap: 2.75rem; }
.quote { margin: 0; }
.quote blockquote { margin: 0; }
.quote blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 1.25rem + 0.6vw, 1.6rem);
  font-weight: 500;
  line-height: 1.35;
}
.quote__mark {
  display: block;
  height: 2.6rem;
  font-family: var(--serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--gold);
}
.quote--lead blockquote p {
  font-size: clamp(1.85rem, 1.4rem + 2vw, 2.85rem);
  font-style: italic;
  line-height: 1.2;
}
.quote__cite {
  margin-top: 1.1rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.6;
  text-transform: uppercase;
  color: var(--muted);
}
.quote__cite a { text-decoration: none; background: linear-gradient(var(--gold), var(--gold)) 0 100% / 100% 2px no-repeat; }
.quote-list .quote { padding-block: 1.75rem; border-top: 1px solid var(--line); }
.quote-list .quote:first-child { padding-top: 0; border-top: 0; }
.quote-row { display: grid; gap: 2.5rem; }
@media (min-width: 960px) {
  .reviews__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
  .quote-row { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 3.5rem; }
}
.new-listing { max-width: 48rem; }
.new-listing .h2 { margin-bottom: 1.25rem; }

/* ---------- Key times ---------- */
.times {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid var(--line);
}
.times__item { position: relative; padding: 1.4rem 0.75rem 1.35rem 0; border-bottom: 1px solid var(--line); }
.times__item:nth-child(even) { padding-left: 1.1rem; border-left: 1px solid var(--line); }
.times__item::before { content: ""; position: absolute; top: -1px; left: 0; width: 1.75rem; height: 2px; background: var(--gold); }
.times__item:nth-child(even)::before { left: 1.1rem; }
.times__item:nth-child(odd):last-child { grid-column: 1 / -1; }
.on-dark .times, .on-dark .times__item { border-color: var(--on-night-line); }
.times__value {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.35rem;
  font-family: var(--serif);
  font-size: clamp(2.05rem, 1.45rem + 2.9vw, 3.75rem);
  font-weight: 500;
  line-height: 1;
}
.times__meridiem {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.on-dark .times__meridiem { color: var(--gold); }
.times__label {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--muted);
}
.on-dark .times__label { color: var(--on-night-muted); }
@media (min-width: 900px) {
  .times { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: minmax(0, 1fr); }
  .times__item:nth-child(odd):last-child { grid-column: auto; }
  .times__item, .times__item:nth-child(even) { padding: 1.75rem 1.25rem 0.25rem 0; border-bottom: 0; border-left: 0; }
  .times__item:nth-child(even)::before { left: 0; }
  .times__item + .times__item { padding-left: 1.75rem; border-left: 1px solid var(--line); }
  .times__item + .times__item::before { left: 1.75rem; }
  .on-dark .times__item + .times__item { border-color: var(--on-night-line); }
}

.rules-glance__notes {
  display: grid;
  gap: 0.9rem 3rem;
  margin-top: clamp(2.5rem, 2rem + 2.5vw, 4.5rem);
  list-style: none;
  color: var(--on-night-muted);
  font-size: 1rem;
}
.rules-glance__notes li { padding-left: 1.6rem; position: relative; }
.rules-glance__notes li::before { content: ""; position: absolute; left: 0; top: 0.85rem; width: 0.75rem; height: 2px; background: var(--gold); }
@media (min-width: 900px) { .rules-glance__notes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .rules-glance__notes:has(li:nth-child(3):last-child) { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

/* ---------- FAQ accordion (home + FAQ page) ---------- */
.faq-home__grid { display: grid; gap: 2.25rem; }
.faq-home__intro .h2 { margin-bottom: 1.1rem; }
@media (min-width: 960px) { .faq-home__grid { grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(3rem, 8vw, 8rem); } }

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 4.25rem;
  padding-block: 1.1rem;
  list-style: none;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 1.2rem + 0.45vw, 1.55rem);
  font-weight: 600;
  line-height: 1.25;
  transition: color 0.25s;
}
.faq-item__icon {
  position: relative;
  flex: none;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 1.5px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease);
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item summary:hover .faq-item__icon { border-color: var(--gold); }
.faq-item[open] .faq-item__icon { background: var(--night); border-color: var(--night); color: var(--ivory); }
.faq-item[open] .faq-item__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-item__answer { max-width: 44rem; padding: 0 3.25rem 1.6rem 0; color: var(--body); }
.faq-item__answer a { color: var(--ink); }
@media (max-width: 599px) {
  .faq-item__answer { padding-right: 0; }
}
@media (prefers-reduced-motion: no-preference) {
  :root { interpolate-size: allow-keywords; }
  .faq-item::details-content {
    block-size: 0;
    overflow-y: clip;
    transition: block-size 0.4s var(--ease), content-visibility 0.4s var(--ease) allow-discrete;
  }
  .faq-item[open]::details-content { block-size: auto; }
}

/* Jump links (FAQ topics, house-rules sections) on small screens */
.jump-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  list-style: none;
}
.jump-grid a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 3.25rem;
  height: 100%;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.95rem;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 0.25s, background-color 0.25s;
}
.jump-grid a:hover { border-color: var(--gold); background: var(--ivory); }
.jump-grid__num { font-family: var(--serif); font-size: 1.05rem; font-style: italic; color: var(--gold-deep); }

/* ---------- FAQ page ---------- */
.faq-page { padding-block: var(--section-sm) var(--section); }
.faq-layout { display: grid; gap: 2.5rem; }
.faq-group { scroll-margin-top: calc(var(--header-h) + 1rem); }
.faq-group + .faq-group { margin-top: clamp(1.5rem, 1rem + 2vw, 3rem); }
.faq-group--tint {
  margin-inline: calc(-1 * var(--gutter));
  padding: clamp(2rem, 1.5rem + 2vw, 3rem) var(--gutter);
  background: var(--ivory);
}
.faq-group--tint .faq-list, .faq-group--tint .faq-item { border-color: var(--line-strong); }
.faq-group:not(.faq-group--tint) { padding-block: 0.5rem; }
.faq-group__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.9rem;
  margin-bottom: 1.1rem;
}
.faq-group__num { font-family: var(--serif); font-size: 1.5rem; font-style: italic; color: var(--gold-deep); }
.faq-group__title { font-size: clamp(2rem, 1.6rem + 1.6vw, 2.75rem); }
.faq-group__count {
  margin-left: auto;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.faq-topics--aside { display: none; }
.faq-topics__title, .rules-index__title {
  margin: 0 0 0.9rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.faq-topics--aside ul, .rules-index ul { list-style: none; border-top: 1px solid var(--line); }
.faq-topics--aside li, .rules-index li { border-bottom: 1px solid var(--line); }
.faq-topics--aside a, .rules-index a {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0 0.7rem 1rem;
  font-size: 1rem;
  line-height: 1.35;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.25s;
}
.faq-topics--aside a::before, .rules-index a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 2px;
  height: 0;
  background: var(--gold);
  transform: translateY(-50%);
  transition: height 0.3s var(--ease);
}
.faq-topics--aside a:hover, .rules-index a:hover, .faq-topics--aside a.is-active, .rules-index a.is-active { color: var(--ink); }
.faq-topics--aside a.is-active::before, .rules-index a.is-active::before { height: 1.2rem; }
.faq-topics__count { font-size: 0.8rem; color: var(--muted); }

.ask-panel {
  padding: clamp(1.75rem, 1.25rem + 2vw, 2.25rem);
  background: var(--night);
  color: var(--on-night);
}
.ask-panel__title { margin-bottom: 0.7rem; font-size: 2.1rem; line-height: 1.1; }
.ask-panel > p:not(.eyebrow) { color: var(--on-night-muted); }
.ask-panel .btn { width: 100%; margin: 0.6rem 0 0.75rem; }
@media (min-width: 960px) {
  .faq-layout { grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: clamp(3rem, 6vw, 6rem); align-items: start; }
  .faq-topics--inline { display: none; }
  .faq-topics--aside { display: block; }
  .faq-aside { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 2rem; }
  .faq-group--tint { margin-inline: -2rem; padding: 2.5rem 2rem; }
}

/* ---------- Closing CTA ---------- */
.closing { background: var(--ivory); }
.bg-ivory + .closing, .bg-cream + .closing, .visit-band + .closing { background: var(--paper); border-top: 1px solid var(--line); }
.closing__grid { display: grid; gap: 2.75rem; }
.closing__main .h2 { max-width: 14ch; margin-bottom: 1.25rem; }
.closing__main .lead { max-width: 36rem; }
.contact-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.contact-list > div { display: grid; grid-template-columns: 6.5rem minmax(0, 1fr); gap: 1rem; padding-block: 0.95rem; border-bottom: 1px solid var(--line); }
.contact-list dt { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding-top: 0.25rem; }
.contact-list dd { font-size: 1rem; line-height: 1.6; overflow-wrap: anywhere; }
.contact-list a { text-decoration: none; }
.contact-list a:hover { text-decoration: underline; text-decoration-color: var(--gold); }
.closing__aside .link { margin-top: 1.25rem; }
@media (max-width: 499px) {
  .closing .button-row .btn { flex: 1 1 100%; }
}
@media (min-width: 960px) {
  .closing__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
}

/* ---------- Footer ---------- */
.site-footer {
  padding-block: clamp(3.5rem, 2.5rem + 4vw, 6rem) 1.75rem;
  background: var(--night);
  color: var(--on-night-muted);
  font-size: 0.98rem;
}
.site-footer a { color: var(--on-night); text-decoration: none; transition: color 0.25s; }
.site-footer a:hover { color: var(--gold); }
.site-footer .btn--gold, .site-footer .btn--gold:hover { color: var(--night); }
.site-footer .btn--light:hover { color: #fff; }
.site-footer__intro {
  display: grid;
  gap: 1.5rem;
  padding-bottom: clamp(2rem, 1.5rem + 2vw, 3.25rem);
  border-bottom: 1px solid var(--on-night-line);
}
.site-footer__brand .wordmark { color: var(--on-night); }
.site-footer__brand p { max-width: 24rem; margin: 1rem 0 0; }
.site-footer__cta { display: grid; grid-template-columns: 1.6fr 1fr; gap: 0.75rem; }
.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.25rem 1.5rem;
  padding-top: clamp(2rem, 1.5rem + 2vw, 3.25rem);
}
.site-footer__col--wide { grid-column: 1 / -1; }
.site-footer__heading {
  margin-bottom: 0.75rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-night-muted);
}
.site-footer__heading::before { content: ""; display: block; width: 1.5rem; height: 2px; margin-bottom: 0.85rem; background: var(--gold); }
.site-footer__col ul { display: grid; list-style: none; }
.site-footer__col li a { display: inline-block; padding-block: 0.4rem; line-height: 1.45; overflow-wrap: anywhere; }
.site-footer__col address { margin-bottom: 0.4rem; line-height: 1.65; }
.site-footer__bottom {
  display: grid;
  gap: 1.25rem;
  margin-top: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--on-night-line);
  font-size: 0.86rem;
}
.site-footer__legal p { margin: 0; }
.site-footer__links { display: flex; flex-wrap: wrap; gap: 0 1.5rem; list-style: none; }
.site-footer__links a { display: inline-block; padding-block: 0.35rem; }
.site-footer__credit { margin: 0; color: var(--on-night-muted); letter-spacing: 0.02em; }
.site-footer__credit a { color: var(--on-night-muted); text-decoration: underline; text-decoration-color: rgba(198, 161, 91, 0.6); text-underline-offset: 0.25em; }
.site-footer__credit a:hover { color: var(--gold); }
@media (min-width: 760px) {
  .site-footer__intro { grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 2rem; }
  .site-footer__cta { display: flex; }
  .site-footer__cols { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.5rem 2rem; }
  .site-footer__col--wide { grid-column: auto; }
  .site-footer__bottom { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
  .site-footer__credit { grid-column: 1 / -1; }
}
@media (min-width: 1080px) {
  .site-footer__cols { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .site-footer__bottom { grid-template-columns: minmax(0, 1fr) auto auto; gap: 2.5rem; }
  .site-footer__credit { grid-column: auto; text-align: right; }
}

/* ---------- Mobile quick-contact bar ---------- */
.cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--night);
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06), 0 -10px 30px rgba(0, 0, 0, 0.14);
  transition: transform 0.45s var(--ease);
  --focus-ring: var(--gold);
  --focus-halo: transparent;
}
.cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--cta-h);
  color: var(--on-night);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}
.cta-bar a + a { border-left: 1px solid var(--on-night-line); }
.cta-bar .icon { width: 1.15rem; height: 1.15rem; }
.cta-bar .cta-bar__primary { background: var(--gold); color: var(--night); }
.cta-bar a:not(.cta-bar__primary):active { background: var(--night-2); }
.js .page-home .cta-bar:not(.is-shown) { transform: translateY(110%); }
body { padding-bottom: calc(var(--cta-h) + env(safe-area-inset-bottom)); }
@media (min-width: 760px) {
  .cta-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Inner page head ---------- */
.page-head {
  margin-top: calc(-1 * var(--header-h));
  padding: calc(var(--header-h) + clamp(1.5rem, 1rem + 2.5vw, 3.25rem)) 0 clamp(2.25rem, 1.5rem + 3vw, 4.25rem);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.page-head__grid { display: grid; gap: 1.1rem; }
.page-head__lead { max-width: 34rem; margin: 0; color: var(--muted); }
@media (min-width: 960px) {
  .page-head--split .page-head__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(3rem, 6vw, 6rem); align-items: end; }
  .page-head__lead { padding-bottom: 0.4rem; }
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
  margin-bottom: clamp(1.5rem, 1rem + 2vw, 2.75rem);
  list-style: none;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumbs li + li::before { content: "/"; margin-right: 0.6rem; color: var(--line-strong); }
.breadcrumbs a { display: inline-block; padding-block: 0.3rem; text-decoration: none; }
.breadcrumbs span { display: inline-block; padding-block: 0.3rem; }
.breadcrumbs a:hover { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); }
.breadcrumbs--light ol { color: rgba(255, 255, 255, 0.78); }
.breadcrumbs--light li + li::before { color: rgba(255, 255, 255, 0.4); }
.breadcrumbs--light a:hover { color: #fff; }

/* ---------- Property hero ---------- */
.p-hero { display: grid; background: var(--ivory); }
.p-hero__media { position: relative; height: min(56svh, 30rem); overflow: hidden; }
.p-hero__media picture, .p-hero__media img { width: 100%; height: 100%; }
.p-hero__media img { object-fit: cover; object-position: 50% 68%; }
.p-hero__body { padding: 2rem var(--gutter) 3rem; }
.p-hero__title { max-width: 12ch; }
.p-hero__tagline {
  margin: 0.9rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 1.2rem + 0.7vw, 1.75rem);
  font-style: italic;
  line-height: 1.3;
  color: var(--muted);
}
.p-hero .button-row { margin: 0 0 1.5rem; }
@media (max-width: 499px) { .p-hero .button-row .btn { flex: 1 1 100%; } }
@media (min-width: 960px) {
  .p-hero { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); min-height: min(calc(100svh - var(--header-h)), 58rem); }
  .p-hero__media { order: 2; height: auto; }
  .p-hero__media picture { position: absolute; inset: 0; }
  .p-hero__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4.5vw, 4.5rem) clamp(2.5rem, 5vw, 4rem) max(var(--gutter), calc((100vw - var(--max)) / 2));
  }
}

/* ---------- Overview & essentials ---------- */
.overview__grid { display: grid; gap: 2.75rem; }
.overview__text .h2 { margin-bottom: 1.25rem; }
.overview__text .lead { margin-bottom: 1.25rem; }
.overview__text > p:not(.eyebrow):not(.lead) { max-width: 40rem; color: var(--body); }
.overview__facts { padding: clamp(1.5rem, 1rem + 2vw, 2.25rem); background: var(--ivory); border-top: 2px solid var(--gold); }
.overview__facts .h4 { margin-bottom: 1rem; }
.overview__facts .link { margin-top: 1.25rem; }
.dl { border-top: 1px solid var(--line); }
.dl > div { display: flex; justify-content: space-between; gap: 1.5rem; padding-block: 0.85rem; border-bottom: 1px solid var(--line); }
.dl dt { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding-top: 0.25rem; }
.dl dd { text-align: right; }
@media (min-width: 960px) {
  .overview__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 4fr); gap: clamp(3rem, 7vw, 7rem); align-items: start; }
  .overview__facts { position: sticky; top: calc(var(--header-h) + 2rem); }
}

/* ---------- Gallery ----------
   Phones: a lead photo, then an even two-column grid.
   Desktop: a 2×2 lead tile beside four, with the last row filled whatever the photo count. */
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem; list-style: none; }
.gallery__item { min-width: 0; }
.gallery__item:first-child, .gallery__item:nth-child(even):last-child { grid-column: 1 / -1; }
.gallery__link { position: relative; display: block; height: 100%; overflow: hidden; border-radius: var(--radius-thumb); background: var(--ivory); cursor: zoom-in; isolation: isolate; }
.gallery__link img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.4s var(--ease); }
.gallery__item:first-child img, .gallery__item:nth-child(even):last-child img { aspect-ratio: 4 / 3; }
.gallery__link:hover img { transform: scale(1.04); }
.gallery__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.25rem 0.75rem 0.6rem;
  background: linear-gradient(to top, rgba(24, 24, 22, 0.66), rgba(24, 24, 22, 0));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}
@media (min-width: 900px) {
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: clamp(11.5rem, 15vw, 16rem); gap: 0.9rem; }
  .gallery__item:nth-child(even):last-child { grid-column: auto; }
  .gallery__item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery__link img, .gallery__item:first-child img, .gallery__item:nth-child(even):last-child img { aspect-ratio: auto; }
  .gallery__item:nth-child(4n + 6):last-child { grid-column: span 4; }
  .gallery__item:nth-child(4n + 6):nth-last-child(2), .gallery__item:nth-child(4n + 7):last-child, .gallery__item:nth-child(4n + 8):last-child { grid-column: span 2; }
  .gallery__caption { padding: 2.5rem 1rem 0.8rem; font-size: 0.72rem; opacity: 0; transform: translateY(0.5rem); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease); }
  .gallery__link:hover .gallery__caption, .gallery__link:focus-visible .gallery__caption { opacity: 1; transform: none; }
}

/* Keep the 1RK's mixed portrait, square and landscape previews uncropped. */
.gallery--natural { display: flex; flex-wrap: wrap; }
.gallery--natural .gallery__item { --image-ratio: 1; flex: var(--image-ratio) 1 calc(var(--image-ratio) * clamp(10rem, 22vw, 18rem)); }
/* Ratios come from shape classes because the Content-Security-Policy blocks inline style attributes. */
.gallery--natural .gallery__item--portrait { --image-ratio: 0.75; }
.gallery--natural .gallery__item--landscape { --image-ratio: 1.3333; }
.gallery--natural .gallery__link { height: auto; }
.gallery--natural .gallery__link img { height: auto; aspect-ratio: auto; }
.gallery--natural .gallery__link:hover img { transform: none; }

/* ---------- Lightbox ---------- */
.lightbox {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(17, 17, 15, 0.97);
  color: #fff;
  --focus-ring: var(--gold);
  --focus-halo: transparent;
}
.lightbox::backdrop { background: rgba(17, 17, 15, 0.9); }
.lightbox__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 4.5rem 1rem 2rem;
}
.lightbox__img { width: auto; max-width: min(100%, 1400px); max-height: calc(100% - 3rem); object-fit: contain; }
.lightbox__caption { margin-top: 1rem; font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.76); text-align: center; }
.lightbox__close { position: absolute; top: 1rem; right: 1rem; z-index: 1; }
.lightbox__nav { position: absolute; top: 50%; z-index: 1; transform: translateY(-50%); background: rgba(17, 17, 15, 0.5); }
.lightbox__nav--prev { left: 1rem; }
.lightbox__nav--next { right: 1rem; }
.lightbox .icon-btn:hover { background: #fff; color: var(--ink); }
@media (max-width: 699px) {
  .lightbox__nav { top: auto; bottom: 1rem; transform: none; }
  .lightbox__figure { padding-bottom: 5rem; }
}

/* ---------- Amenities ---------- */
.amenities { display: grid; gap: 2.25rem; }
.amenities__group .h4 { margin-bottom: 0.75rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--line-strong); }
.ticks { list-style: none; }
.ticks li { position: relative; padding: 0.4rem 0 0.4rem 1.6rem; line-height: 1.55; }
.ticks li::before { content: ""; position: absolute; left: 0; top: 1.2rem; width: 0.75rem; height: 2px; background: var(--gold); }
.not-included {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 1rem;
}
.not-included span {
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 0.2rem;
}
@media (min-width: 760px) { .amenities { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 4rem); } }

/* ---------- Visit band (contact, property pages) ---------- */
.visit-band {
  position: relative;
  padding-block: var(--section-sm);
  background: var(--ivory);
  border-top: 1px solid var(--line);
  isolation: isolate;
  overflow: hidden;
}
.visit-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(38, 35, 31, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 35, 31, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(ellipse 60% 90% at 88% 50%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 90% at 88% 50%, #000 0%, transparent 75%);
}
.visit-band__inner { display: grid; gap: 1.5rem; }
.visit-band__pin {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--night);
  color: var(--gold);
}
.visit-band__pin .icon { width: 1.35rem; height: 1.35rem; }
.visit-band .eyebrow { margin-bottom: 0.75rem; }
.visit-band__address { margin: 0.75rem 0 0; font-size: 1.05rem; color: var(--body); max-width: 32rem; }
.visit-band__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem 1.25rem; }
@media (max-width: 599px) {
  .visit-band__pin { display: none; }
  .visit-band__actions .btn { flex: 1 1 100%; }
}
@media (min-width: 960px) {
  .visit-band__inner { grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 2.5rem; }
}

/* ---------- Related ---------- */
.related__grid { display: grid; gap: 2rem; }
.related__card {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.related__media { display: block; overflow: hidden; border-radius: var(--radius-card); background: var(--ivory); isolation: isolate; }
.related__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 1.4s var(--ease); }
.related__card:hover .related__media img { transform: scale(1.04); }
.related__body { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
.related__title { font-family: var(--serif); font-size: clamp(2rem, 1.6rem + 1.6vw, 2.8rem); line-height: 1.05; }
.related__text { color: var(--muted); max-width: 32rem; }
.related__card:hover .link { background-size: 100% 2px; }
@media (min-width: 960px) { .related__card { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(3rem, 6vw, 6rem); } }

/* ---------- About ---------- */
.about-banner { padding-top: var(--section-sm); }
.about-banner__figure { overflow: hidden; border-radius: var(--radius-photo); background: var(--night); }
.about-banner__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 45%; }
@media (min-width: 700px) { .about-banner__figure img { aspect-ratio: 16 / 7; } }
.about-story__grid { display: grid; gap: 1.5rem; }
.about-story__statement { font-size: clamp(2.6rem, 1.8rem + 3.6vw, 4.75rem); line-height: 1; max-width: 10ch; }
.about-story__statement em { color: var(--gold-deep); }
.about-story__body p:not(.lead) { color: var(--body); max-width: 38rem; }
.about-story__body .lead { max-width: 38rem; }
@media (min-width: 960px) {
  .about-story__grid { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(3rem, 8vw, 8rem); align-items: start; }
}

.principles { display: grid; list-style: none; counter-reset: p; border-top: 1px solid var(--on-night-line); }
.principles li { position: relative; padding: 1.6rem 0 1.6rem 4rem; border-bottom: 1px solid var(--on-night-line); counter-increment: p; }
.principles li::before {
  content: "0" counter(p);
  position: absolute;
  left: 0;
  top: 1.35rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
  color: var(--gold);
}
.principles__title { margin-bottom: 0.4rem; font-size: clamp(1.6rem, 1.4rem + 0.8vw, 2rem); }
.principles p { color: var(--on-night-muted); max-width: 26rem; }
@media (min-width: 900px) {
  .principles { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 4rem); border-top: 0; }
  .principles li { padding: 5.25rem 0 0; border-bottom: 0; border-top: 1px solid var(--on-night-line); }
  .principles li::before { top: 1.75rem; font-size: 2.6rem; }
}

.home-pair { display: grid; gap: 2.5rem; }
.home-card { display: grid; gap: 1.25rem; color: inherit; text-decoration: none; }
.home-card__media { display: block; overflow: hidden; border-radius: var(--radius-card); background: var(--ivory); isolation: isolate; }
.home-card__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 1.4s var(--ease); }
.home-card:hover .home-card__media img { transform: scale(1.035); }
.home-card__body { display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; }
.home-card__kicker { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.home-card__title { font-family: var(--serif); font-size: clamp(2rem, 1.7rem + 1.2vw, 2.6rem); line-height: 1.05; }
.home-card__text { font-family: var(--serif); font-size: 1.3rem; font-style: italic; line-height: 1.35; color: var(--muted); }
.home-card:hover .link { background-size: 100% 2px; }
@media (min-width: 760px) {
  .home-pair { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(1.5rem, 4vw, 4rem); }
  .home-card__media img { aspect-ratio: 10 / 11; }
  .home-card:nth-child(even) { margin-top: clamp(3rem, 8vw, 7rem); }
}

.about-ratings { display: grid; gap: 1.75rem; }
.about-ratings .ratings { margin-top: 0; }
@media (min-width: 960px) {
  .about-ratings { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
}

/* ---------- House rules ---------- */
.rules-summary { padding-top: var(--section-sm); }
.rules-summary__panel {
  position: relative;
  padding: clamp(1.5rem, 1rem + 2.5vw, 3.25rem);
  background: var(--night);
  color: var(--on-night);
}
.rules-summary__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.25rem 2rem;
  margin-bottom: clamp(1.25rem, 1rem + 1vw, 2rem);
}
.rules-summary__title { font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem); }
.rules-summary__head p { margin: 0; font-size: 0.95rem; color: var(--on-night-muted); }

.rules-body { padding-block: var(--section-sm) var(--section); }
.rules-layout { display: grid; gap: 2rem; }
.rules-aside { display: none; }
.rules-index__num { order: 2; font-family: var(--serif); font-style: italic; color: var(--gold-deep); }
.rules-help { margin-top: 1.75rem; padding: 1.4rem 1.5rem; background: var(--ivory); border-left: 2px solid var(--gold); }
.rules-help p { margin-bottom: 0.5rem; font-size: 0.98rem; }

.rule-block { padding-block: clamp(2rem, 1.5rem + 2vw, 3.25rem); border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 1rem); }
.rule-block:first-child { padding-top: 0; border-top: 0; }
.rule-block--tint { margin-inline: calc(-1 * var(--gutter)); padding-inline: var(--gutter); background: var(--ivory); border-top: 0; }
.rules-photo + .rule-block { border-top: 0; }
.rule-head { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: center; gap: 0.1rem 1rem; margin-bottom: 1.1rem; }
.rule-head__icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--gold-deep);
}
.rule-head__icon .icon { width: 1.3rem; height: 1.3rem; }
.rule-head__num { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em; color: var(--muted); align-self: end; }
.rule-head__title { font-size: clamp(1.8rem, 1.5rem + 1.3vw, 2.4rem); align-self: start; }
.rule-head__text { grid-column: 1 / -1; margin: 0.6rem 0 0; color: var(--muted); font-size: 0.98rem; }
.rule-list { list-style: none; }
.rule-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.75rem;
  border-bottom: 1px solid var(--line);
  line-height: 1.6;
  color: var(--body);
}
.rule-block--tint .rule-list li { border-color: var(--line-strong); }
.rule-list li:last-child { border-bottom: 0; }
.rule-list li::before { content: ""; position: absolute; left: 0.1rem; top: 1.72rem; width: 0.8rem; height: 2px; background: var(--gold); }

.charges { border-top: 2px solid var(--gold); background: var(--ivory); padding-inline: clamp(1rem, 0.5rem + 2vw, 1.75rem); }
.charge {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 1.25rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-strong);
}
.charge:last-child { border-bottom: 0; }
.charge__label { grid-column: 1; font-size: 1.05rem; font-weight: 500; line-height: 1.4; }
.charge__detail { grid-column: 1; margin-top: 0.2rem; font-size: 0.94rem; line-height: 1.5; color: var(--muted); }
.charge__value {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 1.5rem + 0.8vw, 2.1rem);
  font-weight: 600;
  line-height: 1;
  text-align: right;
  font-variant-numeric: tabular-nums lining-nums;
  white-space: nowrap;
}

.rules-photo { padding-block: 0.25rem 1rem; }
.rules-photo img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius-thumb); }
.rules-photo--arrival img { object-position: 50% 60%; }
.rules-photo--seating img { object-position: 50% 68%; }
.rules-photo--dining img { object-position: 50% 78%; }
.rules-photo figcaption { margin-top: 0.6rem; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
@media (min-width: 720px) {
  .rules-photo img { aspect-ratio: 2 / 1; max-height: 380px; }
}
.rules-photo--seating img { aspect-ratio: 4 / 3; max-height: none; }

.note-panel {
  display: grid;
  gap: 1.1rem;
  justify-items: start;
  margin-top: clamp(2rem, 1.5rem + 2vw, 3rem);
  padding: clamp(1.5rem, 1rem + 2vw, 2.25rem);
  background: var(--night);
  color: var(--on-night);
}
.note-panel p { color: var(--on-night-muted); max-width: 36rem; }

@media (min-width: 720px) {
  .rule-block:not(.rule-block--tint), .rule-block--tint { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 2rem; }
  .rule-head { display: flex; flex-direction: column; align-items: flex-start; gap: 0; margin-bottom: 0; }
  .rule-head__icon { margin-bottom: 1rem; }
  .rule-head__num, .rule-head__title { align-self: auto; }
  .rule-head__num { margin-bottom: 0.3rem; }
}
@media (min-width: 960px) {
  .rules-layout { grid-template-columns: minmax(0, 3fr) minmax(0, 8fr); gap: clamp(3rem, 6vw, 6rem); align-items: start; }
  .rules-aside { display: block; position: sticky; top: calc(var(--header-h) + 2rem); }
  .rules-jump { display: none; }
  .rule-block--tint { margin-inline: -2rem; padding-inline: 2rem; }
}

/* ---------- Location ---------- */
.loc-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(100svh, 50rem);
  overflow: hidden;
  background: var(--night);
  color: #fff;
  isolation: isolate;
}
.loc-hero__media, .loc-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.loc-hero__media { z-index: -2; }
.loc-hero__media img { object-fit: cover; object-position: 44% 55%; }
.loc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(24, 24, 22, 0.92) 0%, rgba(24, 24, 22, 0.62) 38%, rgba(24, 24, 22, 0.1) 72%, rgba(24, 24, 22, 0.25) 100%),
    linear-gradient(to right, rgba(24, 24, 22, 0.35) 0%, rgba(24, 24, 22, 0) 60%);
}
.loc-hero__content { padding-top: calc(var(--header-h) + 4rem); padding-bottom: 2.75rem; --focus-ring: var(--gold); --focus-halo: transparent; }
.loc-hero__content .breadcrumbs ol { margin-bottom: 1.25rem; }
.loc-hero__title { max-width: 13ch; }
@media (min-width: 960px) { .loc-hero__title { max-width: 16ch; } }
.loc-hero__title em { color: var(--gold); }
.loc-hero__lead { max-width: 34rem; margin-top: 1.25rem; font-size: clamp(1.08rem, 1rem + 0.4vw, 1.25rem); color: rgba(255, 255, 255, 0.9); }
.loc-hero__actions { margin-top: 1.75rem; gap: 0.65rem 1rem; }
@media (max-width: 599px) {
  .loc-hero__actions .btn { flex: 1 1 100%; }
}
@media (min-width: 960px) {
  .loc-hero { min-height: min(92svh, 56rem); }
  .loc-hero__content { padding-bottom: clamp(3.5rem, 8vh, 5rem); }
}

.loc-find { scroll-margin-top: var(--header-h); }
.map-card { display: grid; overflow: hidden; border-radius: var(--radius-card); box-shadow: var(--shadow); isolation: isolate; }
.map-card__stage { position: relative; width: 100%; aspect-ratio: 4 / 5; max-height: 34rem; overflow: hidden; background: #ECE5D9; isolation: isolate; }
@media (min-width: 600px) { .map-card__stage { aspect-ratio: 4 / 3; } }
.map-card__preview { position: absolute; inset: 0; transition: opacity 0.5s var(--ease); }
.map-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.map-card__preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(38, 35, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 35, 31, 0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 1;
}
.map-card__preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 45%, rgba(24, 24, 22, 0) 45%, rgba(24, 24, 22, 0.16) 100%);
  pointer-events: none;
  z-index: 1;
}
.map-pin { position: absolute; left: 50%; top: 50%; z-index: 2; width: 2.75rem; height: 2.75rem; margin: -3.3rem 0 0 -1.375rem; }
.map-pin__head {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 0;
  background: var(--night);
  transform: rotate(-45deg);
  box-shadow: -4px 6px 14px -4px rgba(24, 24, 22, 0.5);
}
.map-pin__head::after { content: ""; position: absolute; inset: 0.85rem; border-radius: 50%; background: var(--gold); }
.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.05rem 0 0 -0.55rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  transform: scaleY(0.45);
  opacity: 0.9;
}
@media (prefers-reduced-motion: no-preference) {
  .map-pin::after { animation: pin-pulse 2.6s var(--ease) infinite; }
}
@keyframes pin-pulse {
  0% { transform: scale(0.6, 0.27); opacity: 0.95; }
  100% { transform: scale(2.8, 1.25); opacity: 0; }
}
.map-card__label {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  gap: 0.1rem;
  margin: 0;
  padding: 0.55rem 1rem 0.6rem;
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
  white-space: nowrap;
  transform: translate(-50%, calc(-100% - 4.4rem));
}
.map-card__label::after { content: ""; position: absolute; left: 50%; bottom: -0.4rem; width: 0.8rem; height: 0.8rem; background: var(--paper); transform: translateX(-50%) rotate(45deg); }
.map-card__label-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; line-height: 1.1; }
.map-card__label-area { font-size: 0.7rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.map-card__stage iframe { position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%; border: 0; }

.map-card__info { padding: clamp(1.75rem, 1.25rem + 2.5vw, 3.25rem); background: var(--night); color: var(--on-night); }
.map-card__info .eyebrow { margin-bottom: 1rem; }
.map-card__name { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 1.7rem + 1.2vw, 2.6rem); line-height: 1.05; }
.map-card__address { margin: 1.4rem 0; font-size: 1.1rem; line-height: 1.65; }
.map-card__meta { border-top: 1px solid var(--on-night-line); }
.map-card__meta > div { display: grid; grid-template-columns: 6rem minmax(0, 1fr); gap: 1rem; padding-block: 0.7rem; border-bottom: 1px solid var(--on-night-line); }
.map-card__meta dt { padding-top: 0.2rem; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-night-muted); }
.map-card__meta dd { font-size: 0.98rem; }
.map-card__actions { display: grid; gap: 0.65rem; margin: 1.75rem 0 1rem; }
@media (min-width: 600px) {
  .map-card__actions { display: flex; flex-wrap: wrap; }
}
@media (min-width: 960px) {
  .map-card { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }
  .map-card__stage { order: 2; aspect-ratio: auto; min-height: 36rem; max-height: none; }
  .map-card__info { display: flex; flex-direction: column; justify-content: center; }
}

.arrival__grid { display: grid; gap: 2.5rem; }
.arrival__img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-photo); }
.arrival__body .h2 { margin-bottom: 1.25rem; }
.arrival__steps { margin: 1.5rem 0; list-style: none; counter-reset: arrive; border-top: 1px solid var(--line-strong); }
.arrival__steps li {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  column-gap: 0.75rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-strong);
  counter-increment: arrive;
}
.arrival__steps li::before {
  content: counter(arrive, decimal-leading-zero);
  grid-row: span 2;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.2;
  color: var(--gold-deep);
}
.arrival__steps strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1.25; }
.arrival__steps span { color: var(--body); font-size: 0.98rem; line-height: 1.55; }
.safety-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 0;
  padding: 0.9rem 1.1rem;
  background: var(--paper);
  border-left: 2px solid var(--gold);
  font-size: 0.98rem;
}
.safety-note .icon { width: 1.3rem; height: 1.3rem; margin-top: 0.15rem; color: var(--gold-deep); }
.arrival__body .button-row { margin-top: 1.75rem; }
@media (max-width: 499px) {
  .arrival__body .button-row .btn { flex: 1 1 100%; }
}
@media (min-width: 960px) {
  .arrival__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(3rem, 6vw, 6rem); align-items: center; }
  .arrival__img { aspect-ratio: 5 / 4; }
}

/* ---------- Contact ---------- */
.contact-hero { padding-block: clamp(1.5rem, 1rem + 2vw, 3rem) var(--section-sm); }
.contact-hero__grid { display: grid; gap: 2rem; grid-template-areas: "intro" "media" "ways"; }
.contact-hero__intro { grid-area: intro; }
.contact-hero__lead { max-width: 34rem; margin-top: 1.25rem; color: var(--muted); }
.contact-hero__media { grid-area: media; position: relative; overflow: hidden; border-radius: var(--radius-photo); background: var(--ivory); }
.contact-hero__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; object-position: 50% 60%; }
.contact-hero__ways { grid-area: ways; }

.book-primary { padding: clamp(1.75rem, 1.25rem + 2.5vw, 3rem); background: var(--night); color: var(--on-night); }
.book-primary__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 0.25rem; }
.book-primary__top .eyebrow { margin: 0; }
.book-primary__badge { display: grid; place-items: center; width: 3rem; height: 3rem; border: 1px solid rgba(198, 161, 91, 0.5); border-radius: 50%; color: var(--gold); }
.book-primary__badge .icon { width: 1.35rem; height: 1.35rem; }
.book-primary__title { margin: 0.75rem 0 0.75rem; }
.book-primary__text { max-width: 28rem; color: var(--on-night-muted); }
.book-primary__number { margin: 1.5rem 0; font-family: var(--serif); font-size: clamp(2.1rem, 1.6rem + 2.2vw, 3.2rem); line-height: 1; color: var(--on-night); white-space: nowrap; }
.book-primary__btn { width: 100%; }
@media (min-width: 600px) { .book-primary__btn { width: auto; } }

.ways { margin-top: 0.5rem; list-style: none; }
.way { display: grid; grid-template-columns: 3rem minmax(0, 1fr); gap: 1rem; padding-block: 1.6rem; border-bottom: 1px solid var(--line); }
.way__icon { display: grid; place-items: center; width: 3rem; height: 3rem; border: 1px solid var(--line-strong); border-radius: 50%; color: var(--gold-deep); }
.way__icon .icon { width: 1.25rem; height: 1.25rem; }
.way__title { margin: 0.35rem 0 0.4rem; font-size: clamp(1.55rem, 1.4rem + 0.6vw, 1.85rem); font-weight: 600; line-height: 1.15; }
.way__body > p:not(.way__lines) { color: var(--muted); font-size: 1rem; margin-bottom: 0.6rem; }
.way__links { display: grid; list-style: none; }
.way__lines { display: grid; gap: 0.1rem; margin: 0; font-family: var(--serif); font-size: clamp(1.5rem, 1.35rem + 0.6vw, 1.8rem); line-height: 1.3; }
.way__lines a { justify-self: start; padding-block: 0.15rem; text-decoration: none; overflow-wrap: anywhere; background: linear-gradient(var(--gold), var(--gold)) 0 92% / 0 1.5px no-repeat; transition: background-size 0.4s var(--ease); }
.way__lines a:hover { background-size: 100% 1.5px; }

@media (min-width: 960px) {
  .contact-hero { padding-top: clamp(2rem, 3vw, 3.5rem); }
  .contact-hero__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    grid-template-rows: auto 1fr;
    grid-template-areas: "media intro" "media ways";
    column-gap: clamp(3rem, 6vw, 6.5rem);
    row-gap: 2.75rem;
  }
  .contact-hero__media { align-self: start; position: sticky; top: calc(var(--header-h) + 1.5rem); }
  .contact-hero__media img { aspect-ratio: 4 / 5; max-height: calc(100svh - var(--header-h) - 3rem); }
  .ways { margin-top: 1rem; }
}

.steps { display: grid; list-style: none; counter-reset: step; }
.step { position: relative; display: grid; grid-template-columns: 4rem minmax(0, 1fr); column-gap: 0.75rem; padding-bottom: 2.25rem; counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 3rem;
  font-style: italic;
  line-height: 1;
  color: var(--ink);
}
.step::after { content: ""; position: absolute; left: 1.4rem; top: 3.6rem; bottom: 0.75rem; width: 1px; background: var(--line-strong); }
.step:last-child { padding-bottom: 0; }
.step:last-child::after { display: none; }
.step__body { padding-top: 0.35rem; }
.step__title { margin-bottom: 0.55rem; font-size: clamp(1.5rem, 1.35rem + 0.6vw, 1.9rem); font-weight: 600; line-height: 1.15; }
.step__title::before { content: ""; display: block; width: 1.75rem; height: 2px; margin-bottom: 0.85rem; background: var(--gold); }
.step p { color: var(--body); max-width: 24rem; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: clamp(2rem, 4vw, 4rem); }
  .step { grid-template-columns: 1fr; padding-bottom: 0; }
  .step::before { font-size: 5rem; margin-bottom: 1.5rem; }
  .step::after { left: 5.5rem; right: calc(-1 * clamp(2rem, 4vw, 4rem) + 1rem); top: 2.6rem; bottom: auto; width: auto; height: 1px; }
  .step:last-child::after { display: none; }
}

/* ---------- Prose (legal, credits) ---------- */
.prose { font-size: 1.0625rem; }
.prose > * { max-width: 44rem; }
.prose h2 { margin: 2.75rem 0 0.9rem; padding-top: 2.25rem; border-top: 1px solid var(--line); font-size: clamp(1.75rem, 1.5rem + 1vw, 2.2rem); }
.prose h2::before { content: ""; display: block; width: 1.75rem; height: 2px; margin: -2.25rem 0 2.1rem; background: var(--gold); }
.prose > h2:first-child { margin-top: 0; }
.prose .lead { margin-bottom: 2rem; color: var(--ink); }
.prose p, .prose li { color: var(--body); line-height: 1.75; }
.prose a { color: var(--ink); }
.credit { display: grid; gap: 1.2rem; margin-block: 2rem; padding: clamp(1.25rem, 1rem + 1vw, 1.75rem); background: var(--ivory); }
.credit__img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: var(--radius-thumb); }
.credit__title { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; line-height: 1.25; color: var(--ink) !important; }
.credit__dl > div { display: grid; grid-template-columns: 6rem minmax(0, 1fr); gap: 1rem; padding-block: 0.45rem; font-size: 0.96rem; border-bottom: 1px solid var(--line); }
.credit__dl > div:last-child { border-bottom: 0; }
.credit__dl dt { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding-top: 0.25rem; }
@media (min-width: 760px) { .credit { grid-template-columns: 17rem minmax(0, 1fr); gap: 2rem; } }

/* ---------- 404 ---------- */
.not-found { display: flex; align-items: center; min-height: calc(88vh - var(--header-h)); padding-block: var(--section); background: var(--ivory); }
.not-found .lead { max-width: 34rem; margin-top: 1.5rem; color: var(--muted); }
@media (max-width: 499px) {
  .not-found .button-row .btn { flex: 1 1 100%; }
}

/* ---------- Compare table ---------- */
.compare-wrap { border-top: 2px solid var(--gold); background: var(--paper); padding-inline: clamp(1rem, 0.5rem + 2vw, 2rem); }
.compare { width: 100%; }
.compare th, .compare td { padding: 1.1rem 1.25rem 1.1rem 0; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.compare tr:last-child th, .compare tr:last-child td { border-bottom: 0; }
.compare thead th { font-family: var(--serif); font-size: clamp(1.5rem, 1.3rem + 0.8vw, 2rem); font-weight: 600; line-height: 1.15; }
.compare thead a { text-decoration: none; }
.compare thead a:hover { text-decoration: underline; text-decoration-color: var(--gold); }
.compare tbody th { width: 22%; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); padding-top: 1.35rem; }
.compare td { font-size: 1rem; line-height: 1.6; color: var(--body); }
@media (max-width: 759px) {
  .compare thead tr { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
  .compare thead td { display: none; }
  .compare tbody tr { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1rem; border-bottom: 1px solid var(--line); padding-bottom: 1rem; }
  .compare tbody tr:last-child { border-bottom: 0; }
  .compare tbody th { grid-column: 1 / -1; width: auto; padding: 1rem 0 0.35rem; border: 0; }
  .compare tbody td { padding: 0; border: 0; font-size: 0.95rem; }
  .compare tbody td[colspan] { grid-column: 1 / -1; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .cta-bar, .mobile-menu, .skip-link, .lightbox { display: none !important; }
  body { padding-bottom: 0; }
  body:not(.has-overlay-header) main { padding-top: 0; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}
