/* ==========================================================================
   Madina Hotel — Royal Heritage
   Single stylesheet. No build step, no dependencies.
   Token values derive from notes/DESIGN.md.
   Order: tokens -> fonts -> reset -> base -> layout -> components -> pages -> utils
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand — deep crimson + polished gold. No green in the UI; the logo's green
     medallion is contained within the image asset itself (see DESIGN.md). */
  --crimson:            #610000;
  --crimson-bright:     #8b0000;
  --crimson-deep:       #410000;
  --crimson-tint:       #ffdad4;
  --gold:               #d4af37;
  --gold-light:         #ffe088;
  --gold-dim:           #e9c349;
  --gold-dark:          #735c00;

  /* Surfaces — warm cream ramp, never pure white for large fields */
  --surface:            #fbf9f6;
  --surface-lowest:     #ffffff;
  --surface-low:        #f5f3f0;
  --surface-mid:        #efeeeb;
  --surface-high:       #eae8e5;
  --surface-highest:    #e4e2df;
  --charcoal:           #2f2b28;
  --charcoal-light:     #46413e;

  /* Text */
  --ink:                #1b1c1a;
  --ink-soft:           #5a403c;
  --ink-inverse:        #f2f0ed;
  --outline:            #8e706b;
  --outline-soft:       #e3beb8;

  /* Typography */
  --font-display: "Playfair Display", "Georgia", "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Fluid type — replaces the Stitch mobile/desktop token pairs with one scale */
  --fs-display:  clamp(2.5rem, 1.6rem + 3.6vw, 4rem);      /* 40 -> 64 */
  --fs-h1:       clamp(2.125rem, 1.5rem + 2.6vw, 3.25rem); /* 34 -> 52 */
  --fs-h2:       clamp(1.75rem, 1.35rem + 1.6vw, 2.5rem);  /* 28 -> 40 */
  --fs-h3:       clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);   /* 20 -> 24 */
  --fs-body-lg:  1.125rem;
  --fs-body:     1rem;
  --fs-label:    0.875rem;
  --fs-caption:  0.75rem;

  /* Spacing — 8px rhythm per DESIGN.md */
  --sp-1: 0.5rem;   --sp-2: 1rem;    --sp-3: 1.5rem;  --sp-4: 2rem;
  --sp-5: 2.5rem;   --sp-6: 3rem;    --sp-8: 4rem;    --sp-10: 5rem;
  --sp-12: 6rem;    --sp-16: 8rem;

  /* Section rhythm — "heritage" sections get doubled vertical padding */
  --section-y:         clamp(3.5rem, 2rem + 6vw, 6rem);
  --section-y-relaxed: clamp(4.5rem, 2rem + 9vw, 8rem);

  /* Layout */
  --container: 1200px;
  --gutter: 1.5rem;          /* 24px */
  --margin-page: 1rem;       /* 16px mobile */
  --header-h: 6.5rem;

  /* Shape — DESIGN.md specifies a soft 4px language.
     NOTE: the Stitch tailwind.config set `full: 0.75rem`, which silently broke
     every circular element. Corrected to a true pill value here. */
  --r-sm:   0.125rem;
  --r:      0.25rem;
  --r-md:   0.375rem;
  --r-lg:   0.5rem;
  --r-xl:   0.75rem;
  --r-full: 9999px;

  /* Depth — tonal layers and gold hairlines, not drop shadows */
  --hairline: 1px solid rgba(212, 175, 55, 0.3);
  --hairline-soft: 1px solid rgba(142, 112, 107, 0.2);
  --lift: 0 4px 20px rgba(139, 0, 0, 0.06);
  --lift-strong: 0 8px 32px rgba(139, 0, 0, 0.10);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  :root { --margin-page: 2.5rem; --header-h: 7rem; }
}

/* --------------------------------------------------------------------------
   2. Fonts — self-hosted variable subsets (latin). No third-party requests.
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-var.woff2") format("woff2-variations");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20B9, U+2122;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-var.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+2000-206F, U+20B9, U+2122;
}

/* --------------------------------------------------------------------------
   3. Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
img { height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
p, h1, h2, h3, h4 { overflow-wrap: break-word; }
/* Lists used as navigation or layout carry no marker. Prose lists keep theirs. */
ul[class], ol[class], nav ul, nav ol, .site-footer ul {
  list-style: none;
  padding: 0;
}

::selection { background: var(--crimson); color: var(--surface); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

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

/* --------------------------------------------------------------------------
   4. Base typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--crimson);
  letter-spacing: -0.02em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); font-weight: 600; }
h3 { font-size: var(--fs-h3); font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; font-weight: 600; letter-spacing: 0; }

a { color: var(--crimson); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--crimson-bright); }

strong { font-weight: 600; }

/* Uppercase tracked label — DESIGN.md's "organized, professional service" cue */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
}
.eyebrow--gold { color: var(--gold-light); }
.eyebrow--rule {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.eyebrow--rule::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: currentColor;
  flex: none;
}

.lede {
  font-size: var(--fs-body-lg);
  color: var(--ink-soft);
  max-width: 62ch;
}

.muted { color: var(--ink-soft); }
.caption { font-size: var(--fs-caption); color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   5. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--margin-page);
}

.section { padding-block: var(--section-y); }
.section--relaxed { padding-block: var(--section-y-relaxed); }
.section--tint    { background: var(--surface-low); }
.section--tint-2  { background: var(--surface-mid); }
.section--white   { background: var(--surface-lowest); }
.section--crimson {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-bright) 100%);
  color: var(--ink-inverse);
}
.section--crimson h2,
.section--crimson h3 { color: var(--surface); }
.section--crimson .lede,
.section--crimson .muted { color: rgba(242, 240, 237, 0.82); }

.section-head { margin-bottom: var(--sp-6); }
.section-head--center {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}
.section-head--center .eyebrow--rule { justify-content: center; }
.section-head .eyebrow { margin-bottom: var(--sp-2); }
.section-head p { margin-top: var(--sp-2); }

/* Gold hairline under a heading — the Stitch "accent underline" */
.rule-gold {
  width: 4rem;
  height: 2px;
  background: var(--gold);
  margin-top: var(--sp-2);
  border: 0;
}
.section-head--center .rule-gold { margin-inline: auto; }

.grid { display: grid; gap: var(--gutter); }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
}

.stack > * + * { margin-top: var(--sp-3); }
.stack-sm > * + * { margin-top: var(--sp-1); }

/* Decorative section divider — gold diamond on a hairline (DESIGN.md) */
.flourish {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding-block: var(--sp-6);
}
.flourish::before,
.flourish::after {
  content: "";
  height: 1px;
  width: min(10rem, 22vw);
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.flourish__gem {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  transform: rotate(45deg);
  flex: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: var(--sp-2);
  top: -100%;
  z-index: 200;
  background: var(--crimson);
  color: var(--surface);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--r);
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: var(--sp-1); color: var(--surface); }

/* --------------------------------------------------------------------------
   6. Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r);
  border: 1px solid transparent;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.1s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--crimson);
  color: var(--surface);
  border-color: var(--crimson);
}
.btn--primary:hover { background: var(--crimson-bright); color: var(--surface); }

.btn--gold {
  background: var(--gold-light);
  color: var(--crimson);
  border-color: var(--gold-light);
}
.btn--gold:hover { background: var(--gold-dim); color: var(--crimson-deep); }

.btn--outline {
  background: transparent;
  color: var(--crimson);
  border-color: var(--gold);
}
.btn--outline:hover { background: rgba(212, 175, 55, 0.12); color: var(--crimson); }

/* On dark/photographic backgrounds */
.btn--ghost-light {
  background: transparent;
  color: var(--surface);
  border-color: rgba(255, 224, 136, 0.7);
}
.btn--ghost-light:hover { background: rgba(255, 224, 136, 0.15); color: var(--surface); }

.btn--block { width: 100%; }
.btn--sm { padding: 0.5rem 1rem; font-size: var(--fs-caption); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

/* Inline SVG icon sizing */
.icon { width: 1.125rem; height: 1.125rem; flex: none; fill: none; stroke: currentColor;
        stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.icon--sm { width: 1rem; height: 1rem; }
.icon--lg { width: 1.5rem; height: 1.5rem; }

/* --------------------------------------------------------------------------
   7. Header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(251, 249, 246, 0.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid rgba(142, 112, 107, 0.18);
  transition: box-shadow 0.3s var(--ease);
}
.site-header[data-scrolled="true"] { box-shadow: 0 2px 16px rgba(27, 28, 26, 0.07); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  height: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex: none;
}
.brand__mark { width: 5.5rem; height: 5.5rem; object-fit: contain; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--crimson);
  letter-spacing: -0.01em;
  line-height: 1;
}
@media (max-width: 400px) { .brand__name { display: none; } }

.nav { display: none; }
@media (min-width: 1024px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
  }
}
.nav__link {
  font-size: var(--fs-label);
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav__link:hover { color: var(--crimson); }
.nav__link[aria-current="page"] {
  color: var(--crimson);
  font-weight: 600;
  border-bottom-color: var(--gold);
}

.header__actions { display: flex; align-items: center; gap: var(--sp-1); }
.header__cta { display: none; }
@media (min-width: 640px) { .header__cta { display: inline-flex; } }

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: transparent;
  border: 1px solid rgba(142, 112, 107, 0.3);
  border-radius: var(--r);
  color: var(--crimson);
  cursor: pointer;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile drawer — the Stitch design shipped no mobile nav at all */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  padding: var(--margin-page);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.3s var(--ease), visibility 0.3s var(--ease);
}
.mobile-nav[data-open="true"] { transform: translateX(0); visibility: visible; }
.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: calc(var(--header-h) - var(--margin-page));
  margin-bottom: var(--sp-4);
}
.mobile-nav__list { display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--crimson);
  text-decoration: none;
  padding-block: var(--sp-2);
  border-bottom: var(--hairline-soft);
}
.mobile-nav__link[aria-current="page"] { color: var(--crimson-bright); }
.mobile-nav__link[aria-current="page"]::after { content: " ·"; color: var(--gold); }
.mobile-nav__foot { margin-top: auto; display: grid; gap: var(--sp-1); }

body[data-nav-open="true"] { overflow: hidden; }

/* --------------------------------------------------------------------------
   8. Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(30rem, 78vh, 44rem);
  margin-top: var(--header-h);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(65, 0, 0, 0.92) 0%,
    rgba(65, 0, 0, 0.72) 38%,
    rgba(97, 0, 0, 0.28) 70%,
    rgba(97, 0, 0, 0.05) 100%);
}
@media (max-width: 767px) {
  .hero__media::after {
    background: linear-gradient(180deg,
      rgba(65, 0, 0, 0.78) 0%,
      rgba(65, 0, 0, 0.86) 100%);
  }
}
.hero__body {
  color: var(--surface);
  max-width: 40rem;
  padding-block: var(--sp-8);
}
.hero__body .eyebrow { color: var(--gold-light); margin-bottom: var(--sp-3); }
.hero h1 {
  font-size: var(--fs-display);
  color: var(--surface);
  margin-bottom: var(--sp-3);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}
.hero__body p {
  font-size: var(--fs-body-lg);
  color: rgba(251, 249, 246, 0.88);
  max-width: 34rem;
  margin-bottom: var(--sp-4);
}
.hero .btn-row { margin-bottom: var(--sp-3); }

/* Quick facts strip under the hero CTAs — hours/price answered above the fold */
.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-1) var(--sp-3);
  font-size: var(--fs-label);
  color: rgba(251, 249, 246, 0.82);
}
.hero__facts span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* Circular "Since 1947" stamp */
.heritage-badge {
  position: absolute;
  right: var(--margin-page);
  bottom: var(--sp-5);
  z-index: 2;
  width: 8rem;
  height: 8rem;
  border-radius: var(--r-full);
  border: 2px solid var(--gold);
  background: rgba(251, 249, 246, 0.93);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  color: var(--crimson);
  line-height: 1.1;
}
@media (min-width: 1024px) { .heritage-badge { display: flex; } }
.heritage-badge__sm { font-size: 1.125rem; }
.heritage-badge__lg { font-size: 2rem; font-weight: 700; }

/* Compact hero for inner pages */
.page-hero {
  margin-top: var(--header-h);
  background: var(--surface-mid);
  padding-block: var(--section-y);
  text-align: center;
  border-bottom: 1px solid rgba(142, 112, 107, 0.15);
}
.page-hero h1 { margin-block: var(--sp-2); text-wrap: balance; }
.page-hero p { margin-inline: auto; max-width: 44rem; }
.page-hero--photo {
  position: relative;
  isolation: isolate;
  border-bottom: 0;
  /* The base .page-hero background would paint over the z-index:-1 media layer. */
  background: var(--crimson-deep);
}
.page-hero--photo > .container { position: relative; z-index: 1; }
.page-hero--photo h1 { color: var(--surface); }
.page-hero--photo p { color: rgba(251, 249, 246, 0.85); }
.page-hero--photo .eyebrow { color: var(--gold-light); }
.page-hero__media { position: absolute; inset: 0; z-index: -1; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
/* Dark enough for AA text contrast, light enough that the archival photo reads. */
.page-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(65,0,0,0.66), rgba(97,0,0,0.78));
}

/* Small outlined "EST. 1947" pill */
.est-pill {
  display: inline-block;
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  padding: 0.35rem 0.9rem;
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(251, 249, 246, 0.6);
}
.page-hero--photo .est-pill { color: var(--gold-light); background: rgba(65,0,0,0.3); }

/* --------------------------------------------------------------------------
   9. Breadcrumbs
   -------------------------------------------------------------------------- */
.breadcrumb {
  font-size: var(--fs-caption);
  color: var(--ink-soft);
  padding-block: var(--sp-2);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}
.breadcrumb li + li::before { content: "/"; margin-right: 0.5rem; color: var(--outline); }
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--crimson); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--crimson); font-weight: 500; }

/* --------------------------------------------------------------------------
   10. Cards
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface-lowest);
  border: var(--hairline);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lift);
  border-color: rgba(212, 175, 55, 0.55);
}
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__badge {
  position: absolute;
  top: var(--sp-1);
  left: var(--sp-1);
  background: var(--crimson);
  color: var(--surface);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--r-sm);
}
.card__badge--gold { background: var(--gold-light); color: var(--crimson); }
.card__body { padding: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-1); flex: 1; }
.card__body h3 { color: var(--crimson); }
.card__body p { color: var(--ink-soft); font-size: var(--fs-body); }
.card__foot {
  margin-top: auto;
  padding-top: var(--sp-2);
  border-top: var(--hairline-soft);
  font-size: var(--fs-label);
  color: var(--gold-dark);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   11. Split / editorial sections
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .split--reverse .split__media { order: -1; }
}

/* Layered offset frame behind an archival photo */
.framed { position: relative; }
.framed img {
  width: 100%;
  border-radius: var(--r);
  position: relative;
  z-index: 1;
}
.framed::before {
  content: "";
  position: absolute;
  inset: -0.75rem -0.75rem 0.75rem 0.75rem;
  border: var(--hairline);
  border-radius: var(--r);
  z-index: 0;
}

blockquote.pull {
  border-left: 3px solid var(--crimson);
  padding-left: var(--sp-3);
  font-family: var(--font-display);
  font-size: var(--fs-body-lg);
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.5;
}
blockquote.pull cite {
  display: block;
  margin-top: var(--sp-1);
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* Two-up milestone columns (1947 / 1956) */
.milestones { display: grid; gap: var(--sp-4); }
@media (min-width: 560px) { .milestones { grid-template-columns: 1fr 1fr; } }
.milestone__year {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.milestone h3 { margin-bottom: var(--sp-1); }
.milestone p { color: var(--ink-soft); font-size: 0.9375rem; }

/* --------------------------------------------------------------------------
   12. Timeline (legacy page)
   -------------------------------------------------------------------------- */
.timeline { position: relative; padding-left: var(--sp-4); }
.timeline::before {
  content: "";
  position: absolute;
  left: 0.3125rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(212,175,55,0.15));
}
.timeline__item { position: relative; padding-bottom: var(--sp-6); }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--sp-4) + 0.0625rem);
  top: 0.55rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: var(--r-full);
  background: var(--gold);
  border: 2px solid var(--surface);
}
.timeline__year {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-dark);
  line-height: 1;
}
.timeline__item h3 { margin-block: var(--sp-1); }
.timeline__item p { color: var(--ink-soft); max-width: 58ch; }

/* --------------------------------------------------------------------------
   13. Bento gallery (legacy page)
   -------------------------------------------------------------------------- */
.bento { display: grid; gap: var(--gutter); grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 11rem;
  }
  .bento__cell--wide { grid-column: span 2; }
  .bento__cell--tall { grid-row: span 2; }
  .bento__cell--hero { grid-column: span 2; grid-row: span 2; }
}
.bento__cell {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  border: var(--hairline);
  min-height: 11rem;
}
.bento__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.bento__cell:hover img { transform: scale(1.04); }
.bento__cell figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: var(--sp-2);
  background: linear-gradient(180deg, transparent, rgba(27, 28, 26, 0.85));
  color: var(--surface);
  font-size: var(--fs-caption);
  letter-spacing: 0.04em;
}

/* --------------------------------------------------------------------------
   14. Menu lists
   -------------------------------------------------------------------------- */
.menu-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(251, 249, 246, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-block: 1px solid rgba(142, 112, 107, 0.18);
}
.menu-nav ul {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  padding-block: var(--sp-2);
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-nav ul::-webkit-scrollbar { display: none; }
.menu-nav a {
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.menu-nav a:hover,
.menu-nav a.is-active { color: var(--crimson); border-bottom-color: var(--gold); }

.menu-group + .menu-group { margin-top: var(--sp-8); }
.menu-group__head { margin-bottom: var(--sp-4); }
.menu-group__head h2 {
  font-size: var(--fs-h3);
  color: var(--crimson);
}
.menu-group__head p { color: var(--ink-soft); margin-top: var(--sp-1); max-width: 52ch; }

.menu-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.menu-item { padding-bottom: var(--sp-3); border-bottom: var(--hairline-soft); }
.menu-item:last-child { border-bottom: 0; padding-bottom: 0; }
.menu-item__row { display: flex; align-items: baseline; gap: 0.5rem; }
.menu-item__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}
/* Dot leader + price are unused while prices stay unpublished. Both rules are
   kept so adding a price to a .menu-item__row needs no CSS. See CONTENT.md. */
.menu-item__leader {
  flex: 1;
  border-bottom: 1px dotted var(--outline);
  transform: translateY(-0.25rem);
  min-width: 1.5rem;
}
.menu-item__price {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--gold-dark);
  font-weight: 600;
}
.menu-item__desc {
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 56ch;
}
.menu-item__tag {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  background: var(--crimson-tint);
  border-radius: var(--r-sm);
  padding: 0.1rem 0.4rem;
  vertical-align: 0.15em;
}

.price-note {
  margin-top: var(--sp-4);
  padding: var(--sp-2) var(--sp-3);
  border: var(--hairline);
  border-radius: var(--r);
  background: rgba(212, 175, 55, 0.06);
  font-size: var(--fs-label);
  color: var(--ink-soft);
}

/* Feature panel with an image + floating label */
.feature-media { position: relative; border-radius: var(--r); overflow: hidden; border: var(--hairline); }
.feature-media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.feature-media__label {
  position: absolute;
  left: var(--sp-2);
  bottom: var(--sp-2);
  right: var(--sp-6);
  background: rgba(251, 249, 246, 0.94);
  border-radius: var(--r-sm);
  padding: var(--sp-2);
}
.feature-media__label .eyebrow { margin-bottom: 0.25rem; }
.feature-media__label p { font-size: var(--fs-label); color: var(--ink-soft); }

/* --------------------------------------------------------------------------
   15. Accordion — native <details>, no JS, crawlable, keyboard-accessible
   -------------------------------------------------------------------------- */
.accordion { display: flex; flex-direction: column; gap: var(--sp-1); }
.accordion details {
  background: var(--surface-lowest);
  border: 1px solid rgba(142, 112, 107, 0.22);
  border-radius: var(--r);
  overflow: hidden;
}
.accordion details[open] { border-color: rgba(212, 175, 55, 0.5); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--crimson);
  transition: background-color 0.2s var(--ease);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { background: rgba(212, 175, 55, 0.06); }
.accordion summary::after {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  flex: none;
  border-right: 2px solid var(--gold-dark);
  border-bottom: 2px solid var(--gold-dark);
  transform: rotate(45deg) translateY(-0.15rem);
  transition: transform 0.25s var(--ease);
}
.accordion details[open] summary::after { transform: rotate(-135deg) translateY(-0.15rem); }
.accordion__body {
  padding: 0 var(--sp-3) var(--sp-3);
  color: var(--ink-soft);
}
.accordion__body > * + * { margin-top: var(--sp-2); }

/* --------------------------------------------------------------------------
   16. Contact blocks
   -------------------------------------------------------------------------- */
.info-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.info-row { display: flex; gap: var(--sp-2); align-items: flex-start; }
.info-row__icon {
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--r);
  background: var(--crimson-tint);
  color: var(--crimson);
}
.info-row__label {
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.15rem;
}
.info-row__value { color: var(--ink); }
.info-row__value a { text-decoration: none; font-weight: 500; }
.info-row__value a:hover { text-decoration: underline; }

/* Call / WhatsApp panel — replaces the non-functional Stitch reservation form */
.contact-card {
  background: var(--surface-lowest);
  border: var(--hairline);
  border-radius: var(--r);
  padding: var(--sp-3);
}
.contact-card h3 { margin-bottom: var(--sp-1); }
.contact-card p { color: var(--ink-soft); font-size: 0.9375rem; margin-bottom: var(--sp-3); }
.contact-card .btn + .btn { margin-top: var(--sp-1); }

/* Map facade — a static image that swaps to the real iframe on click.
   A live embed pulls ~800KB of third-party JS on every page load. */
.map-facade {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  border: var(--hairline);
  background: var(--surface-high);
  min-height: 20rem;
  height: 100%;
  display: grid;
  place-items: center;
  cursor: pointer;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: center;
  font: inherit;
}
.map-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}
.map-facade__cue {
  position: relative;
  display: grid;
  justify-items: center;
  gap: var(--sp-1);
  padding: var(--sp-3);
  background: rgba(251, 249, 246, 0.92);
  border: var(--hairline);
  border-radius: var(--r);
  color: var(--crimson);
  max-width: 20rem;
}
.map-facade__cue strong { font-family: var(--font-display); font-size: 1.125rem; }
.map-facade__cue span { font-size: var(--fs-caption); color: var(--ink-soft); }
.map-facade iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-facade[data-loaded="true"] { cursor: default; }
.map-facade[data-loaded="true"] img,
.map-facade[data-loaded="true"] .map-facade__cue { display: none; }

/* Directions steps */
.steps { counter-reset: step; display: grid; gap: var(--sp-3); }
.step { position: relative; padding-left: 3rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: var(--r-full);
  border: 1px solid var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--crimson);
}
.step h3 { font-size: 1.0625rem; margin-bottom: 0.25rem; }
.step p { color: var(--ink-soft); font-size: 0.9375rem; }

/* Highlighted advisory box (parking, Ramadan, etc.) */
.notice {
  border-left: 3px solid var(--gold);
  background: rgba(212, 175, 55, 0.08);
  border-radius: 0 var(--r) var(--r) 0;
  padding: var(--sp-2) var(--sp-3);
}
.notice h3 { font-size: 1rem; margin-bottom: 0.25rem; }
.notice p { font-size: 0.9375rem; color: var(--ink-soft); }

/* Stat / fact row */
.facts { display: grid; gap: var(--sp-3); }
@media (min-width: 640px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.fact { text-align: center; padding: var(--sp-3) var(--sp-2); border: var(--hairline); border-radius: var(--r); }
.fact__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
}
.fact__label {
  margin-top: 0.35rem;
  font-size: var(--fs-caption);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.section--crimson .fact { border-color: rgba(255, 224, 136, 0.35); }
.section--crimson .fact__value { color: var(--gold-light); }
.section--crimson .fact__label { color: rgba(242, 240, 237, 0.75); }

/* --------------------------------------------------------------------------
   17. FAQ page
   -------------------------------------------------------------------------- */
.faq-group + .faq-group { margin-top: var(--sp-6); }
.faq-group > h2 {
  font-size: var(--fs-h3);
  margin-bottom: var(--sp-2);
  padding-bottom: var(--sp-1);
  border-bottom: var(--hairline);
}

/* --------------------------------------------------------------------------
   18. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(242, 240, 237, 0.75);
  padding-block: var(--sp-8) var(--sp-4);
  font-size: 0.9375rem;
}
.site-footer h2, .site-footer h3 { color: var(--gold-light); }
.site-footer a { color: rgba(242, 240, 237, 0.75); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); text-decoration: underline; }

.footer__grid {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: 1fr;
}
@media (min-width: 700px)  { .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; } }

.footer__brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: var(--sp-2); }
.footer__brand img { width: 5.25rem; height: 5.25rem; object-fit: contain; }
.footer__brand span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
}
.footer__col h3 {
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  color: var(--gold-dim);
}
.footer__col ul { display: grid; gap: 0.5rem; }

.footer__bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(242, 240, 237, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-caption);
  color: rgba(242, 240, 237, 0.55);
}
.social { display: flex; gap: var(--sp-1); }
.social a {
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 240, 237, 0.2);
  border-radius: var(--r);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.social a:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* --------------------------------------------------------------------------
   19. Utilities
   -------------------------------------------------------------------------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mb-3 { margin-bottom: var(--sp-3); }
.no-wrap { white-space: nowrap; }

/* Placeholder markers for facts awaiting owner confirmation. Deliberately
   visible — an unverified figure must never look like a verified one. */
.todo {
  background: #fff3cd;
  border-bottom: 2px dotted #b8860b;
  color: #6b4f00;
  padding: 0 0.25rem;
  border-radius: 2px;
  font-weight: 600;
}

@media print {
  .site-header, .mobile-nav, .nav-toggle, .map-facade, .site-footer .social { display: none; }
  body { background: #fff; }
  .hero, .page-hero { margin-top: 0; }
}
