/* ==========================================================================
   Hotel Luzern Engel — Design System
   A heritage Swiss house, est. 1665 · Hitzkirch, Canton Lucerne
   ========================================================================== */

/* --- 1. Tokens ----------------------------------------------------------- */
:root {
  /* Palette */
  --alpine:        #FCFBF8;
  --beige:         #F5F1E8;
  --beige-deep:    #EBE4D6;
  --forest:        #16352A;
  --forest-600:    #1F4A3A;
  --forest-400:    #3C6B58;
  --lake:          #2E5F72;
  --wood:          #8A5D3B;
  --stone:         #6E6B63;
  --stone-light:   #726E65;
  --gold:          #B08E56;   /* decorative: rules, hairlines, fills */
  --gold-ink:      #87682F;   /* gold for TEXT on light grounds — WCAG AA */
  --gold-light:    #CBAC77;
  --gold-pale:     #E7DAC2;
  --ink:           #171712;

  /* Semantic */
  --bg:            var(--alpine);
  --bg-alt:        var(--beige);
  --text:          #2A2A24;
  --text-soft:     var(--stone);
  --heading:       var(--forest);
  --rule:          rgba(22, 53, 42, 0.12);
  --rule-gold:     rgba(176, 142, 86, 0.38);

  /* Type */
  --display: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --fs-hero:  clamp(2.75rem, 1.5rem + 4.4vw, 5.5rem);
  --fs-h1:    clamp(2.25rem, 1.4rem + 3.4vw, 4.25rem);
  --fs-h2:    clamp(2rem, 1.35rem + 2.7vw, 3.5rem);
  --fs-h3:    clamp(1.375rem, 1.1rem + 1.1vw, 1.875rem);
  --fs-h4:    clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  --fs-lead:  clamp(1.0625rem, 0.98rem + 0.42vw, 1.3125rem);
  --fs-body:  1rem;
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;

  /* Space scale */
  --s-1: 0.25rem; --s-2: 0.5rem;  --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem;  --s-6: 2rem;    --s-7: 3rem;    --s-8: 4rem;
  --s-9: 6rem;    --s-10: 8rem;
  --section-y: clamp(4.5rem, 3rem + 7vw, 9rem);
  --gutter:    clamp(1.25rem, 0.6rem + 2.6vw, 3.5rem);
  --maxw:      1320px;
  --maxw-text: 68ch;

  /* Form */
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(22, 53, 42, 0.06);
  --shadow:    0 14px 40px -18px rgba(22, 53, 42, 0.28);
  --shadow-lg: 0 34px 70px -30px rgba(22, 53, 42, 0.42);

  /* Motion */
  --ease:      cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --dur:       0.45s;

  --header-h:  112px;
}

/* --- 2. Reset ------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 1rem); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }
img, picture, video, svg { display: block; max-width: 100%; }
/* Inline icons default to a text-relative square so an unsized SVG can never
   inherit the 300x150 replaced-element default and blow out its container. */
.icon { width: 1.15em; height: 1.15em; flex: 0 0 auto; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, h5 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--heading);
  line-height: 1.08;
  letter-spacing: -0.012em;
  margin: 0 0 var(--s-4);
}
p { margin: 0 0 var(--s-4); }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0 0 var(--s-4); padding-left: 1.15rem; }
a { color: inherit; text-decoration: none; }
hr { border: 0; border-top: 1px solid var(--rule); margin: var(--s-7) 0; }
::selection { background: var(--gold-pale); color: var(--forest); }

/* --- 3. Accessibility ---------------------------------------------------- */
.skip-link {
  position: absolute; top: -100px; left: var(--s-4); z-index: 999;
  background: var(--forest); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm); font-size: var(--fs-small);
}
.skip-link:focus { top: var(--s-4); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }
.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;
}

/* --- 4. Layout ----------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 940px; }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 5.5rem); }
.section--beige { background: var(--bg-alt); }
.section--forest { background: var(--forest); color: rgba(255,255,255,0.82); }
.section--forest h2, .section--forest h3, .section--forest h4 { color: #fff; }
.section--forest .eyebrow { color: var(--gold-light); }
/* .lead hardcodes --text-soft, which is tuned for light grounds and drops to
   2.5:1 on forest. Match the band's own body colour instead (9.0:1). */
.section--forest .lead { color: rgba(255,255,255,0.82); }
.grid { display: grid; gap: var(--s-6); }
@media (min-width: 700px)  { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 700px)  { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px)  { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* --- 5. Type utilities --------------------------------------------------- */
.eyebrow {
  display: block;
  font-family: var(--sans);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: var(--s-4);
}
.eyebrow--line { display: flex; align-items: center; gap: 0.9rem; }
.eyebrow--line::after { content: ""; flex: 0 0 46px; height: 1px; background: var(--rule-gold); }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 1.6rem + 3vw, 4.5rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow--line { justify-content: center; }
.section-head--center .eyebrow--line::before { content: ""; flex: 0 0 46px; height: 1px; background: var(--rule-gold); }
.lead { font-size: var(--fs-lead); line-height: 1.62; color: var(--text-soft); }
.prose { max-width: var(--maxw-text); }
.prose p + h3 { margin-top: var(--s-6); }
.text-center { text-align: center; }
.dropcap::first-letter {
  font-family: var(--display); float: left; font-size: 4.2em; line-height: 0.78;
  padding: 0.06em 0.12em 0 0; color: var(--gold-ink);
}

/* --- 6. Buttons ---------------------------------------------------------- */
.btn {
  --btn-bg: var(--forest); --btn-fg: #fff; --btn-bd: var(--forest);
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6rem; padding: 1rem 2rem; min-height: 52px;
  font-family: var(--sans); font-size: var(--fs-small); font-weight: 500;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--btn-fg); background: var(--btn-bg);
  border: 1px solid var(--btn-bd); border-radius: 999px; white-space: nowrap;
  overflow: hidden; isolation: isolate; cursor: pointer;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform 0.5s var(--ease-out);
}
.btn:hover { color: #fff; border-color: var(--gold); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:hover::before { transform: scaleX(1); transform-origin: left; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--forest); --btn-bd: rgba(22,53,42,0.35); }
.btn--light  { --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,0.5); }
.btn--gold   { --btn-bg: var(--gold-light); --btn-fg: var(--forest); --btn-bd: var(--gold-light); }
.btn--gold::before { background: var(--forest); }
.btn--sm { padding: 0.7rem 1.4rem; min-height: 44px; font-size: var(--fs-micro); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-4); }
.btn-row--center { justify-content: center; }

/* Text link with animated rule */
.link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--fs-small); font-weight: 500; letter-spacing: 0.11em;
  text-transform: uppercase; color: var(--forest);
  padding-bottom: 4px; background-image: linear-gradient(var(--gold), var(--gold));
  background-size: 0% 1px; background-position: left bottom; background-repeat: no-repeat;
  transition: background-size 0.45s var(--ease-out), color var(--dur) var(--ease);
}
.link:hover { color: var(--gold-ink); background-size: 100% 1px; }
.link svg { transition: transform var(--dur) var(--ease); }
.link:hover svg { transform: translateX(4px); }
.link--light { color: #fff; }

/* --- 7. Header / navigation --------------------------------------------- */
.header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  display: block;
  border-bottom: 1px solid transparent;
  transition: transform 0.5s var(--ease), background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: var(--s-5); }
.header--solid,
.header.is-open {
  background: rgba(252, 251, 248, 0.94);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--rule);
  box-shadow: var(--shadow-sm);
}
.header--hidden { transform: translateY(-100%); }

/* -- tier 1: utility bar -------------------------------------------------
   Address, telephone, email and language. Hidden below the nav breakpoint,
   where the drawer carries the same information, and collapsed on scroll so
   the header compacts to the main row alone. */
.header__util { display: none; }
@media (min-width: 1220px) {
  .header__util {
    display: block; overflow: hidden;
    height: 40px; opacity: 1;
    border-bottom: 1px solid rgba(255,255,255,0.16);
    transition: height 0.4s var(--ease), opacity 0.3s var(--ease),
                border-color var(--dur) var(--ease);
  }
  .header--solid .header__util { border-bottom-color: var(--rule); }
  .header--compact .header__util { height: 0; opacity: 0; border-bottom-color: transparent; }
}
.header__util .wrap { min-height: 40px; gap: var(--s-6); }
.util__right { display: flex; align-items: center; gap: var(--s-5); }
.util__item {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 400; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.82); white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.util__item svg { width: 14px; height: 14px; opacity: 0.75; }
.util__item:hover { color: #fff; }
.header--solid .util__item { color: var(--stone); }
.header--solid .util__item:hover { color: var(--gold-ink); }
@media (max-width: 1379px) { .util__mail { display: none; } }

/* -- tier 2: main row ---------------------------------------------------- */
.header__main { display: flex; align-items: center; min-height: var(--header-h);
  transition: min-height var(--dur) var(--ease); }
.header--solid .header__main, .header--compact .header__main { min-height: 78px; }

.brand { display: flex; align-items: center; gap: 0.85rem; flex: 0 0 auto; }
.brand__mark { flex: 0 0 auto; }
/* 88px. At 38 the seal was a blob and at 64 it was legible but soft; the
   building and the ring lettering read at this size, helped by the unsharp
   mask make_logo.py applies after downscaling. */
.brand__mark img { display: block; width: 88px; height: 88px; transition: width var(--dur) var(--ease), height var(--dur) var(--ease); }
/* The compact row is 78px tall, so the mark steps down with it rather than
   crowding the row edge to edge. */
.header--solid .brand__mark img, .header--compact .brand__mark img { width: 60px; height: 60px; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--display); font-size: 1.32rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--forest);
}
.brand__sub {
  font-size: 0.5625rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-ink); margin-top: 5px;
}
.header--transparent .brand__name { color: #fff; }
.header--transparent .brand__mark svg { color: #fff; }
.header--transparent .brand__sub { color: rgba(255,255,255,0.92); }  /* 0.75 failed AA over the hero scrim */

.nav { display: none; }
/* 1220, not 1080: German labels run ~25% longer. Measured minimum where
   the header fits is 1190 (DE) / 1180 (EN); below it the primary CTA was
   pushed past the viewport and overflow-x:hidden clipped it silently. */
@media (min-width: 1220px) {
  .nav { display: flex; align-items: center; gap: clamp(0.85rem, 0.1rem + 0.95vw, 1.6rem); }
}
.nav__link {
  position: relative; font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--forest); padding: 0.4rem 0;
  white-space: nowrap;
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px;
  background: var(--gold); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { color: var(--gold-ink); }
.header--transparent .nav__link { color: rgba(255,255,255,0.92); }
.header--transparent .nav__link:hover, .header--transparent .nav__link[aria-current="page"] { color: #fff; }

.header__actions { display: flex; align-items: center; gap: var(--s-3); }
.header__tel svg { width: 16px; height: 16px; }
.header__tel {
  display: none; font-size: var(--fs-small); font-weight: 500; letter-spacing: 0.04em;
  color: var(--forest); white-space: nowrap;
}
@media (min-width: 680px) and (max-width: 1219px) {
  .header__tel { display: inline-flex; align-items: center; gap: 0.45rem; }
}
.header--transparent .header__tel { color: rgba(255,255,255,0.92); }

/* --- Language switch ----------------------------------------------------- */
.lang {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; min-height: 40px; padding: 0 0.55rem;
  font-size: var(--fs-micro); font-weight: 600; letter-spacing: 0.14em;
  color: var(--forest); border: 1px solid var(--rule);
  border-radius: 999px; white-space: nowrap;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease),
              background-color var(--dur) var(--ease);
}
.lang:hover { color: var(--gold-ink); border-color: var(--rule-gold); }
.header--transparent .lang { color: #fff; border-color: rgba(255,255,255,0.4); }
.header--transparent .lang:hover {
  color: var(--forest); background: #fff; border-color: #fff;
}

.lang--util {
  min-width: 0; min-height: 0; padding: 0.15rem 0.5rem;
  font-size: 0.7rem; letter-spacing: 0.16em;
  border-color: rgba(255,255,255,0.28); color: rgba(255,255,255,0.82);
}
.lang--util:hover { color: var(--forest); background: #fff; border-color: #fff; }
.header--solid .lang--util { border-color: var(--rule); color: var(--stone); }
.header--solid .lang--util:hover { color: var(--forest); background: var(--gold-light); border-color: var(--gold-light); }
.lang--drawer { width: 100%; margin-top: var(--s-4); min-height: 46px; }
.lang--foot { color: rgba(255,255,255,0.82); border-color: rgba(255,255,255,0.28); }
.lang--foot:hover { color: var(--forest); background: var(--gold-light); border-color: var(--gold-light); }
.header .btn--book { padding: 0.75rem 1.55rem; min-height: 46px; font-size: var(--fs-micro); }
.header--transparent .btn--book { --btn-bg: var(--gold-light); --btn-fg: var(--forest); --btn-bd: var(--gold-light); }

/* Small handsets: let the brand shrink so the header row never overflows. */
@media (max-width: 430px) {
  .header .wrap { gap: 0.55rem; }
  .brand { flex: 0 1 auto; min-width: 0; gap: 0.55rem; }
  .brand__mark img, .header--solid .brand__mark img, .header--compact .brand__mark img { width: 52px; height: 52px; }
  .brand__name { font-size: 1.02rem; letter-spacing: 0.04em; }
  .brand__sub { font-size: 0.4375rem; letter-spacing: 0.2em; }
  .header__actions { gap: var(--s-2); }
  .header .btn--book { padding: 0.62rem 0.95rem; min-height: 42px; font-size: 0.625rem; letter-spacing: 0.08em; }
}
@media (max-width: 360px) {
  .header .btn--book { display: none; }
}

.burger {
  display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; align-items: center; border-radius: 999px;
  border: 1px solid var(--rule); transition: border-color var(--dur) var(--ease);
}
@media (min-width: 1220px) { .burger { display: none; } }
.burger span {
  display: block; width: 19px; height: 1.5px; background: var(--forest);
  transition: transform 0.4s var(--ease), opacity 0.25s var(--ease), background var(--dur) var(--ease);
}
.header--transparent .burger { border-color: rgba(255,255,255,0.4); }
.header--transparent .burger span { background: #fff; }
.header.is-open .burger span { background: var(--forest); }
.header.is-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.header.is-open .burger span:nth-child(2) { opacity: 0; }
.header.is-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 99; background: var(--alpine);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 3rem;
  overflow-y: auto; opacity: 0; visibility: hidden; transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease), visibility 0.4s;
}
.drawer.is-open { opacity: 1; visibility: visible; transform: none; }
@media (min-width: 1220px) { .drawer { display: none; } }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__link {
  font-family: var(--display); font-size: clamp(1.6rem, 1.2rem + 2vw, 2.4rem);
  color: var(--forest); padding: 0.55rem 0; border-bottom: 1px solid var(--rule);
  display: flex; align-items: baseline; gap: 0.9rem;
}
.drawer__link span { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.2em; color: var(--gold-ink); }
.drawer__link[aria-current="page"] { color: var(--gold-ink); }
.drawer__foot { margin-top: var(--s-7); display: grid; gap: var(--s-4); }
.drawer__meta { font-size: var(--fs-small); color: var(--text-soft); }
.drawer__meta a { color: var(--forest); }

/* --- 8. Hero ------------------------------------------------------------- */
.hero { position: relative; display: grid; align-items: end; isolation: isolate; overflow: hidden; }
.hero--full { min-height: 100svh; }
.hero--page { min-height: clamp(460px, 62vh, 660px); }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media picture, .cta-band__media picture { display: block; width: 100%; height: 100%; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 26s var(--ease) forwards; }
@keyframes kenburns { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(9,24,18,0.66) 0%, rgba(9,24,18,0.30) 30%, rgba(9,24,18,0.52) 62%, rgba(9,24,18,0.86) 100%),
    radial-gradient(120% 80% at 50% 62%, rgba(9,24,18,0.36), transparent 70%);
}
.hero__inner { padding-block: clamp(6rem, 4rem + 10vw, 10rem) clamp(3.5rem, 2rem + 6vw, 6rem); }
.hero__content { max-width: 1040px; color: #fff; }
.hero--center .hero__content { margin-inline: auto; text-align: center; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-size: var(--fs-micro); font-weight: 500; letter-spacing: 0.26em;
  text-transform: uppercase; color: rgba(255,255,255,0.82); margin-bottom: var(--s-5);
}
.hero__eyebrow::before, .hero__eyebrow::after {
  content: ""; width: 34px; height: 1px; background: var(--gold-light);
}
.hero__title { font-size: var(--fs-hero); color: #fff; line-height: 1.02; margin-bottom: var(--s-5); font-weight: 300;
  text-wrap: balance; text-shadow: 0 2px 30px rgba(9,24,18,0.35); }
.hero--page .hero__title { font-size: var(--fs-h1); }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__text { font-size: var(--fs-lead); color: rgba(255,255,255,0.86); max-width: 60ch; margin-bottom: var(--s-6); }
.hero--center .hero__text { margin-inline: auto; }
.hero--center .btn-row { justify-content: center; }
.hero--has-booking .hero__scroll { display: none; }
.hero__scroll {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: none; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.625rem; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(255,255,255,0.7);
}
@media (min-width: 820px) and (min-height: 700px) { .hero__scroll { display: flex; } }
.hero__scroll i { display: block; width: 1px; height: 46px; background: linear-gradient(rgba(255,255,255,0.7), transparent); animation: drop 2.2s var(--ease) infinite; }
@keyframes drop { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Breadcrumb */
.crumbs { font-size: var(--fs-micro); letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.68); margin-bottom: var(--s-4); }
.crumbs a:hover { color: #fff; }
.crumbs span { color: var(--gold-light); }

/* --- 9. Booking bar ------------------------------------------------------ */
.booking {
  position: relative; z-index: 10;
  margin-top: clamp(-4.5rem, -3rem - 2vw, -2rem);
}
.booking--inline { margin-top: 0; }
.booking__card {
  background: rgba(252, 251, 248, 0.86);
  -webkit-backdrop-filter: saturate(170%) blur(18px);
  backdrop-filter: saturate(170%) blur(18px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.25rem, 0.9rem + 1.2vw, 1.75rem);
}
.booking__title {
  display: flex; align-items: center; gap: 0.7rem; font-size: var(--fs-micro);
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-ink);
  margin-bottom: var(--s-4); font-weight: 500;
}
.booking__form { display: grid; gap: var(--s-4); grid-template-columns: 1fr; align-items: end; }
@media (min-width: 640px)  { .booking__form { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .booking__form { grid-template-columns: repeat(5, 1fr) auto; gap: var(--s-3); } }
.field { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.field > label {
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--stone);
}
.field input, .field select, .field textarea {
  width: 100%; padding: 0.8rem 0.9rem; background: #fff;
  border: 1px solid var(--rule); border-radius: var(--radius-sm);
  font-size: 0.9375rem; color: var(--text);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(176,142,86,0.16);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236E6B63' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.2rem; }
.booking__submit { grid-column: 1 / -1; }
@media (min-width: 1080px) { .booking__submit { grid-column: auto; } }
.booking__note { margin-top: var(--s-4); font-size: var(--fs-micro); color: var(--stone-light); text-align: center; }
.booking__note a { color: var(--forest); text-decoration: underline; text-underline-offset: 3px; }

/* --- 10. Media & cards --------------------------------------------------- */
.media { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--beige-deep); }
.media picture { display: block; width: 100%; height: 100%; }
.media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.media--zoom:hover img, a:hover > .media--zoom img { transform: scale(1.06); }
.ratio-32  { aspect-ratio: 3 / 2; }
.ratio-43  { aspect-ratio: 4 / 3; }
.ratio-11  { aspect-ratio: 1 / 1; }
.ratio-34  { aspect-ratio: 3 / 4; }
.ratio-23  { aspect-ratio: 2 / 3; }
.ratio-169 { aspect-ratio: 16 / 9; }
.media__tag {
  position: absolute; top: var(--s-4); left: var(--s-4);
  background: rgba(252,251,248,0.92); color: var(--forest);
  font-size: 0.625rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.42rem 0.85rem; border-radius: 999px; font-weight: 500;
}

.card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--rule); border-radius: var(--radius);
  overflow: hidden; height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--rule-gold); }
.card__body { padding: clamp(1.35rem, 1rem + 1vw, 2rem); display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: var(--fs-h3); margin-bottom: var(--s-3); }
.card__text { color: var(--text-soft); font-size: 0.9375rem; margin-bottom: var(--s-5); }
.card__foot { margin-top: auto; padding-top: var(--s-4); border-top: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; gap: var(--s-4); flex-wrap: wrap; }
.card .media { border-radius: 0; }

/* Feature card (icons) */
.feature {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: clamp(1.5rem, 1.2rem + 1vw, 2.1rem); height: 100%;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--rule-gold); }
.feature__icon {
  width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: var(--s-5);
  border-radius: 999px; background: var(--beige); color: var(--gold);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}
.feature:hover .feature__icon { background: var(--forest); color: var(--gold-light); }
.feature__icon svg { width: 24px; height: 24px; }
.feature__icon { color: var(--gold-ink); }
.feature h3 { font-size: var(--fs-h4); font-family: var(--sans); font-weight: 600; letter-spacing: -0.005em; margin-bottom: var(--s-2); }
.feature p { font-size: 0.9375rem; color: var(--text-soft); margin: 0; }
.section--forest .feature { background: rgba(255,255,255,0.045); border-color: rgba(255,255,255,0.12); }
.section--forest .feature:hover { background: rgba(255,255,255,0.08); border-color: rgba(203,172,119,0.4); }
.section--forest .feature__icon { background: rgba(255,255,255,0.08); color: var(--gold-light); }
.section--forest .feature p { color: rgba(255,255,255,0.7); }

/* Split (image + text) */
.split { display: grid; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--reverse .split__media { order: 2; }
  .split--wide-media { grid-template-columns: 1.15fr 1fr; }
}
.split__media { position: relative; }
.split__stack { display: grid; gap: var(--s-4); grid-template-columns: 1fr 1fr; }
.split__stack .media:first-child { grid-column: 1 / -1; }

/* Framed image with gold offset rule */
.framed { position: relative; }
.framed::before {
  content: ""; position: absolute; inset: -14px -14px auto auto; width: 62%; height: 62%;
  border-top: 1px solid var(--rule-gold); border-right: 1px solid var(--rule-gold);
  border-radius: 0 var(--radius) 0 0; pointer-events: none;
}
.framed::after {
  content: ""; position: absolute; inset: auto auto -14px -14px; width: 62%; height: 62%;
  border-bottom: 1px solid var(--rule-gold); border-left: 1px solid var(--rule-gold);
  border-radius: 0 0 0 var(--radius); pointer-events: none;
}

/* --- 11. Stats / facts --------------------------------------------------- */
.facts { display: grid; gap: var(--s-5); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) { .facts { grid-template-columns: repeat(4, 1fr); } }
.fact { text-align: center; padding: var(--s-5) var(--s-3); }
.fact__num { display: block; font-family: var(--display); font-size: clamp(2.4rem, 1.6rem + 2.6vw, 3.6rem); color: var(--gold); line-height: 1; margin-bottom: var(--s-3); }
.fact__label { font-size: var(--fs-micro); letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft); }
.section--forest .fact__num { color: var(--gold-light); }
.section--forest .fact__label { color: rgba(255,255,255,0.7); }
.facts--ruled .fact + .fact { border-left: 1px solid var(--rule); }
.section--forest .facts--ruled .fact + .fact { border-left-color: rgba(255,255,255,0.14); }
@media (max-width: 899px) { .facts--ruled .fact:nth-child(odd) { border-left: 0; } }

/* --- 12. Room listing ---------------------------------------------------- */
.room { display: grid; gap: clamp(1.5rem, 1rem + 3vw, 4rem); align-items: center; }
@media (min-width: 900px) {
  .room { grid-template-columns: 1.1fr 1fr; }
  .room:nth-child(even) .room__media { order: 2; }
}
.room + .room { margin-top: clamp(3.5rem, 2rem + 6vw, 7rem); padding-top: clamp(3.5rem, 2rem + 6vw, 7rem); border-top: 1px solid var(--rule); }
.room__meta { display: flex; flex-wrap: wrap; gap: var(--s-5); margin: var(--s-5) 0; padding: var(--s-4) 0; border-block: 1px solid var(--rule); }
.room__meta div { display: flex; align-items: center; gap: 0.55rem; font-size: var(--fs-small); color: var(--text-soft); }
.room__meta svg { width: 18px; height: 18px; color: var(--gold-ink); flex: 0 0 auto; }
.amenities { list-style: none; padding: 0; margin: 0 0 var(--s-6); display: grid; gap: 0.6rem var(--s-5); grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.amenities li { position: relative; padding-left: 1.6rem; font-size: 0.9375rem; color: var(--text-soft); }
.amenities li::before {
  content: ""; position: absolute; left: 0; top: 0.62em; width: 9px; height: 9px;
  border-radius: 999px; border: 1px solid var(--gold);
}

/* --- 13. Gallery --------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; margin-bottom: var(--s-7); }
.filter {
  padding: 0.6rem 1.35rem; border: 1px solid var(--rule); border-radius: 999px;
  font-size: var(--fs-micro); font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-soft); background: #fff;
  transition: all var(--dur) var(--ease);
}
.filter:hover { border-color: var(--gold); color: var(--forest); }
.filter.is-active { background: var(--forest); border-color: var(--forest); color: #fff; }
.gallery { columns: 1; column-gap: var(--s-4); }
@media (min-width: 640px)  { .gallery { columns: 2; } }
@media (min-width: 1020px) { .gallery { columns: 3; } }
.gallery__item {
  break-inside: avoid; margin-bottom: var(--s-4); display: block; width: 100%;
  border-radius: var(--radius); overflow: hidden; position: relative; cursor: zoom-in;
  animation: fadeUp 0.6s var(--ease-out) both;
}
.gallery__item.is-hidden { display: none; }
.gallery__item picture { display: block; }
.gallery__item img { width: 100%; height: auto; transition: transform 1s var(--ease-out); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(9,24,18,0.6));
  opacity: 0; transition: opacity var(--dur) var(--ease);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__cap {
  position: absolute; left: var(--s-4); right: var(--s-4); bottom: var(--s-4); z-index: 2;
  color: #fff; font-size: var(--fs-small); opacity: 0; transform: translateY(8px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: grid; place-items: center;
  background: rgba(10, 22, 17, 0.94); padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(1200px, 92vw); max-height: 82vh; width: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__cap { color: rgba(255,255,255,0.75); font-size: var(--fs-small); text-align: center; margin-top: var(--s-4); max-width: 60ch; }
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px;
  display: grid; place-items: center; border-radius: 999px; color: #fff;
  border: 1px solid rgba(255,255,255,0.28); transition: all var(--dur) var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); }
.lightbox__btn--prev { left: clamp(0.5rem, 2vw, 2rem); }
.lightbox__btn--next { right: clamp(0.5rem, 2vw, 2rem); }
.lightbox__close { position: absolute; top: clamp(0.75rem, 2vw, 1.75rem); right: clamp(0.75rem, 2vw, 1.75rem); width: 48px; height: 48px; }

/* --- 14. Accordion ------------------------------------------------------- */
.accordion { border-top: 1px solid var(--rule); }
.acc { border-bottom: 1px solid var(--rule); }
.acc__btn {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-5);
  width: 100%; text-align: left; padding: var(--s-5) 0;
  font-family: var(--display); font-size: var(--fs-h4); color: var(--forest);
  transition: color var(--dur) var(--ease);
}
.acc__btn:hover { color: var(--gold-ink); }
.acc__icon { flex: 0 0 auto; position: relative; width: 16px; height: 16px; }
.acc__icon::before, .acc__icon::after {
  content: ""; position: absolute; inset: 50% 0 auto; height: 1px; background: var(--gold);
  transition: transform 0.4s var(--ease);
}
.acc__icon::after { transform: rotate(90deg); }
.acc.is-open .acc__icon::after { transform: rotate(0); }
.acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.acc.is-open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__panel p { padding-bottom: var(--s-5); color: var(--text-soft); max-width: 72ch; }

/* --- 15. CTA band -------------------------------------------------------- */
.cta-band { position: relative; isolation: isolate; overflow: hidden; text-align: center; color: #fff; }
.cta-band__media { position: absolute; inset: 0; z-index: -2; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(9,24,18,0.72), rgba(9,24,18,0.82)); }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: rgba(255,255,255,0.82); margin-inline: auto; max-width: 62ch; }

/* --- 16. Contact & map --------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 1rem + 4vw, 4.5rem); }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.15fr; } }
.info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--s-5); }
.info-list li { display: flex; gap: var(--s-4); }
.info-list svg { width: 22px; height: 22px; color: var(--gold-ink); flex: 0 0 auto; margin-top: 3px; }
.info-list dt { font-size: var(--fs-micro); letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); margin-bottom: 3px; }
.info-list dd { margin: 0; font-size: 1.0625rem; color: var(--forest); }
.info-list a:hover { color: var(--gold-ink); }
.map { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--beige-deep); aspect-ratio: 16 / 10; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__consent { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: var(--s-6); background: var(--beige); }
.map__consent p { font-size: var(--fs-small); color: var(--text-soft); max-width: 44ch; margin-bottom: var(--s-4); }
.form-grid { display: grid; gap: var(--s-4); }
@media (min-width: 620px) { .form-grid--2 { grid-template-columns: 1fr 1fr; } .form-grid .full { grid-column: 1 / -1; } }
.consent { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--fs-small); color: var(--text-soft); }
.consent input { width: 18px; height: 18px; margin-top: 4px; accent-color: var(--forest); flex: 0 0 auto; }

/* --- 17. Footer ---------------------------------------------------------- */
.footer { background: var(--forest); color: rgba(255,255,255,0.68); padding-block: var(--s-9) var(--s-6); }
.footer a { color: rgba(255,255,255,0.68); transition: color var(--dur) var(--ease); }
.footer a:hover { color: var(--gold-light); }
.footer__top { display: grid; gap: var(--s-7); }
@media (min-width: 760px)  { .footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1060px) { .footer__top { grid-template-columns: 1.6fr 1fr 1fr 1.5fr; } }
.footer .brand__name, .footer h3 { color: #fff; }
/* --gold-ink is tuned for light grounds; on forest it fails AA. --gold-light
   is the design system's gold-on-dark token (6.2:1 against --forest). */
.footer .brand__sub { color: var(--gold-light); }
.footer h3 { font-family: var(--sans); font-size: var(--fs-micro); font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); margin-bottom: var(--s-5); }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; font-size: var(--fs-small); }
.footer__blurb { font-size: var(--fs-small); max-width: 42ch; margin-top: var(--s-5); }
.newsletter { display: flex; gap: var(--s-3); margin-top: var(--s-4); flex-wrap: wrap; }
.newsletter input {
  flex: 1 1 190px; padding: 0.85rem 1rem; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius-sm); color: #fff;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.42); }
.newsletter input:focus { outline: none; border-color: var(--gold); }
.footer__bottom {
  margin-top: var(--s-8); padding-top: var(--s-5); border-top: 1px solid rgba(255,255,255,0.13);
  display: flex; flex-wrap: wrap; gap: var(--s-4) var(--s-6); align-items: center; justify-content: space-between;
  font-size: var(--fs-micro); color: rgba(255,255,255,0.5);
}
.footer__bottom nav { display: flex; flex-wrap: wrap; gap: var(--s-5); }

/* --- 18. Reveal animations ---------------------------------------------- */
/* Gated on .js (set by an inline head script). Without scripting the content
   is never hidden, so a blocked or broken main.js cannot blank the page. */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); }
.js [data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.09s; }
[data-reveal][data-delay="2"] { transition-delay: 0.18s; }
[data-reveal][data-delay="3"] { transition-delay: 0.27s; }
[data-reveal][data-delay="4"] { transition-delay: 0.36s; }

/* --- Enquiry fallback panel ---------------------------------------------
   Shown on every enquiry submit. A mailto: does nothing at all when no mail
   client is registered, which is most phones, so the guest always gets the
   composed message, a copy button and the telephone number. */
.enquiry {
  position: fixed; inset: 0; z-index: 210; display: grid; place-items: center;
  background: rgba(10, 22, 17, 0.9); padding: clamp(1rem, 4vw, 3rem);
  opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s;
}
.enquiry.is-open { opacity: 1; visibility: visible; }
.enquiry__card {
  position: relative; width: min(560px, 100%);
  max-height: min(90vh, 720px); overflow-y: auto;
  background: var(--bg); border-radius: var(--radius);
  padding: clamp(1.6rem, 1rem + 2vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: var(--s-4);
}
.enquiry__close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 999px; color: var(--stone);
}
.enquiry__close:hover { background: var(--bg-alt); color: var(--forest); }
.enquiry__title { font-size: var(--fs-h3); margin: 0; padding-right: 2.5rem; }
.enquiry__intro { font-size: var(--fs-small); color: var(--text-soft); margin: 0; }
.enquiry__text {
  width: 100%; resize: vertical; font-size: 0.9375rem; line-height: 1.6;
  padding: var(--s-4); border: 1px solid var(--rule); border-radius: var(--radius-sm);
  background: var(--bg-alt); color: var(--text);
  font-family: var(--sans);
}
.enquiry__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }
.enquiry__mail { --btn-bg: transparent; --btn-fg: var(--forest); --btn-bd: var(--rule); }
.enquiry__call { font-size: var(--fs-small); color: var(--text-soft); margin: 0; }
.enquiry__call a { color: var(--gold-ink); font-weight: 500; }
.enquiry__call a:hover { text-decoration: underline; }

/* --- 19. Back to top ----------------------------------------------------- */
.to-top {
  position: fixed; right: clamp(1rem, 2vw, 2rem); bottom: clamp(1rem, 2vw, 2rem); z-index: 90;
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 999px;
  background: var(--forest); color: #fff; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--dur) var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold-ink); }

/* --- 20. Misc ------------------------------------------------------------ */
.pill {
  display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.4rem 0.9rem;
  border: 1px solid var(--rule-gold); border-radius: 999px; color: var(--gold-ink);
  font-size: 0.6875rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}
.note {
  padding: var(--s-5); background: var(--beige); border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-size: var(--fs-small); color: var(--text-soft);
}
.credit { font-size: var(--fs-micro); color: var(--stone-light); margin-top: var(--s-3); }

/* --- 21. Motion & print preferences ------------------------------------- */
@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; }
  .js [data-reveal] { opacity: 1; transform: none; }  /* must match .js specificity above */
  .hero__media img { animation: none; }
}
@media print {
  .header, .drawer, .to-top, .booking, .cta-band, .lightbox { display: none !important; }
  body { background: #fff; color: #000; }
  .hero { min-height: auto; }
}

/* --- 22. Guest voices (component ships empty — populate with real reviews) -- */
.quote {
  background: #fff; border: 1px solid var(--rule); border-radius: var(--radius);
  padding: clamp(1.75rem, 1.3rem + 1.6vw, 2.75rem); height: 100%;
  display: flex; flex-direction: column;
}
.quote__mark { font-family: var(--display); font-size: 3.5rem; line-height: 0.6; color: var(--gold-pale); margin-bottom: var(--s-4); }
.quote__text { font-family: var(--display); font-size: var(--fs-h4); line-height: 1.45; color: var(--forest); margin-bottom: var(--s-5); }
.quote__by { margin-top: auto; font-size: var(--fs-small); color: var(--text-soft); }
.quote__by strong { display: block; color: var(--forest); font-weight: 500; }
.stars { display: flex; gap: 3px; color: var(--gold-ink); margin-bottom: var(--s-4); }
.stars svg { width: 15px; height: 15px; }

/* --- 23. Style guide (internal reference page) --------------------------- */
.sg-swatches { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.sg-swatch { border: 1px solid var(--rule); border-radius: var(--radius-sm); overflow: hidden; background: #fff; }
.sg-swatch i { display: block; height: 92px; }
.sg-swatch div { padding: 0.7rem 0.85rem; font-size: var(--fs-micro); }
.sg-swatch b { display: block; font-size: var(--fs-small); font-weight: 500; color: var(--forest); margin-bottom: 2px; }
.sg-swatch code { color: var(--text-soft); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.sg-row { display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; }
.sg-type > * { margin: 0 0 0.4rem; }
.sg-type p.meta { font-size: var(--fs-micro); letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone-light); margin-bottom: var(--s-5); }
.sg-block { padding-block: var(--s-7); border-top: 1px solid var(--rule); }
.sg-space { display: flex; align-items: flex-end; gap: var(--s-3); flex-wrap: wrap; }
.sg-space span { display: grid; gap: 6px; justify-items: center; font-size: 0.625rem; color: var(--stone-light); }
.sg-space i { display: block; width: 26px; background: var(--gold-pale); border-radius: 3px; }
.sg-icons { display: grid; gap: var(--s-4); grid-template-columns: repeat(auto-fill, minmax(104px, 1fr)); }
.sg-icon { display: grid; justify-items: center; gap: 0.5rem; padding: var(--s-4) 0.4rem; border: 1px solid var(--rule); border-radius: var(--radius-sm); background: #fff; font-size: 0.625rem; color: var(--text-soft); }
.sg-icon .icon { width: 26px; height: 26px; color: var(--gold-ink); }
