/* =========================================================================
   SILQUE LUXE — Hair Boutique
   Shared stylesheet · White & Gold light-luxury theme
   Type : Cinzel (wordmark) · Cormorant Garamond (display) · Outfit (UI)
   ========================================================================= */

/* ----------------------------- Design tokens --------------------------- */
:root {
  --white:       #ffffff;
  --ivory:       #faf6ef;
  --cream:       #f3ebdd;
  --sand:        #ece1cd;
  --blush:       #efe2d6;

  --gold:        #c4a25c;
  --gold-bright: #d9bd83;
  --gold-deep:   #a8843c;
  --gold-soft:   #e7d6b0;

  --espresso:    #211b15;   /* warm dark for accent bands */
  --espresso-2:  #2c241c;
  --ink:         #463c30;   /* warm charcoal-brown body text */
  --ink-soft:    #6f6354;

  --line:        rgba(168, 132, 60, 0.30);
  --line-dim:    rgba(70, 60, 48, 0.14);
  --line-light:  rgba(255, 255, 255, 0.12);

  --ff-brand:    "Cinzel", Georgia, serif;
  --ff-display:  "Cormorant Garamond", Georgia, serif;
  --ff-sans:     "Outfit", "Segoe UI", system-ui, sans-serif;

  --shadow-soft: 0 30px 70px -34px rgba(78, 58, 24, 0.30);
  --shadow-card: 0 38px 80px -44px rgba(78, 58, 24, 0.40);
  --shadow-gold: 0 20px 50px -24px rgba(168, 132, 60, 0.45);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

/* ------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.75;
  letter-spacing: 0.005em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 500; line-height: 1.12; margin: 0; }
p { margin: 0 0 1.1rem; }
::selection { background: var(--gold); color: var(--white); }

/* ----------------------------- Utilities ------------------------------- */
.container { width: min(100% - 3rem, var(--maxw)); margin-inline: auto; }
.container--narrow { width: min(100% - 3rem, 880px); margin-inline: auto; }

.section { padding: clamp(4.5rem, 9vw, 9.5rem) 0; position: relative; }
.section--ivory     { background: var(--ivory); }
.section--white     { background: var(--white); }
.section--cream     { background: var(--cream); }
.section--champagne { background: linear-gradient(160deg, var(--ivory), var(--blush)); }
.section--dark      { background: var(--espresso); color: var(--cream); }
.section--espresso  { background:
                        radial-gradient(120% 100% at 50% -10%, rgba(196,162,92,0.16), transparent 55%),
                        var(--espresso); color: var(--cream); }

.eyebrow {
  font-family: var(--ff-sans);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.9rem; margin: 0 0 1.4rem;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--gold); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 36px; height: 1px; background: var(--gold); }
.section--dark .eyebrow, .section--espresso .eyebrow { color: var(--gold-bright); }

.display { font-size: clamp(2.4rem, 5.4vw, 4.6rem); font-weight: 400; letter-spacing: 0.005em; }
.display em { font-style: italic; font-weight: 500; color: var(--gold-deep); }
.section--dark .display em, .section--espresso .display em { color: var(--gold-bright); }

.lead {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.55; font-weight: 400;
  color: var(--ink-soft);
}
.section--dark .lead, .section--espresso .lead { color: var(--gold-soft); opacity: 0.92; }

.text-center { text-align: center; }
.muted { color: var(--ink-soft); }
.section--dark .muted, .section--espresso .muted { color: var(--gold-soft); opacity: 0.8; }

/* ------------------------------ Buttons -------------------------------- */
.btn {
  --bg: var(--gold); --fg: var(--white);
  position: relative; display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--ff-sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  padding: 1.05rem 2.4rem; border: 1px solid var(--bg);
  background: var(--bg); color: var(--fg); cursor: pointer; overflow: hidden;
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease); z-index: 0;
}
.btn::after {
  content: ""; position: absolute; inset: 0; background: var(--espresso);
  transform: translateY(101%); transition: transform 0.5s var(--ease); z-index: -1;
}
.btn:hover { color: var(--gold-bright); border-color: var(--espresso); }
.btn:hover::after { transform: translateY(0); }

.btn--ghost { --bg: transparent; --fg: var(--ink); border-color: var(--gold); }
.btn--ghost::after { background: var(--gold); }
.btn--ghost:hover { color: var(--white); border-color: var(--gold); }
.section--dark .btn--ghost, .section--espresso .btn--ghost { --fg: var(--cream); }

.btn--solid { --bg: var(--espresso); --fg: var(--cream); }
.btn--solid::after { background: var(--gold); }
.btn--solid:hover { color: var(--espresso); border-color: var(--espresso); }

/* ------------------------- Text link w/ arrow -------------------------- */
.link-arrow {
  font-family: var(--ff-sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: 0.6rem;
  border-bottom: 1px solid transparent; padding-bottom: 3px;
  transition: gap 0.4s var(--ease), border-color 0.4s var(--ease);
}
.link-arrow:hover { gap: 1.1rem; border-color: var(--gold); }
.section--dark .link-arrow, .section--espresso .link-arrow { color: var(--gold-bright); }

/* =============================== HEADER ================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 1.5rem 0;
  transition: background 0.45s var(--ease), padding 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.site-header::before {                       /* readability scrim at very top */
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,15,10,0.30), transparent);
  opacity: 1; transition: opacity 0.45s var(--ease);
}
/* scrolled cream backdrop lives on a pseudo-element: backdrop-filter on the
   header itself would make it the containing block for the fixed mobile
   drawer inside it (iOS bug — drawer renders caged inside the header bar) */
.site-header::after {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: rgba(250, 246, 239, 0.94);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.site-header.is-scrolled {
  padding: 0.85rem 0; box-shadow: 0 1px 0 var(--line), 0 18px 40px -34px rgba(78,58,24,0.5);
}
.site-header.is-scrolled::before { opacity: 0; }
.site-header.is-scrolled::after { opacity: 1; }

/* slim social/contact strip, home page only — collapses away on scroll */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 0.7rem; margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.16);
  max-height: 40px; overflow: hidden; opacity: 1;
  transition: max-height 0.4s var(--ease), opacity 0.35s ease, margin 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s ease;
}
.is-scrolled .topbar { max-height: 0; opacity: 0; margin-bottom: 0; padding-bottom: 0; border-bottom-color: transparent; }
.topbar__social { display: flex; align-items: center; gap: 0.9rem; }
.topbar__social a { color: var(--gold-bright); display: flex; transition: color 0.3s ease, transform 0.3s ease; }
.topbar__social a:hover { color: var(--ivory); transform: translateY(-1px); }
.topbar__social svg { width: 15px; height: 15px; }
.topbar__contact { display: flex; align-items: center; gap: 0.6rem; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream); }
.topbar__contact a { color: inherit; transition: color 0.3s ease; }
.topbar__contact a:hover { color: var(--gold-bright); }
.topbar__contact .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); flex: none; }
@media (max-width: 640px) { .topbar__contact { display: none; } }

.nav { display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 0.6rem; line-height: 1; }
.brand__logo {
  height: 46px; width: auto; display: block; flex: none;
  /* dark contour keeps the gold emblem legible over pale photos and the cream header */
  filter: drop-shadow(0 0 1px rgba(60,42,16,0.55)) drop-shadow(0 2px 7px rgba(0,0,0,0.45));
  transition: height 0.45s var(--ease), filter 0.45s var(--ease);
}
.is-scrolled .brand__logo {
  height: 38px;
  filter: drop-shadow(0 0 0.6px rgba(60,42,16,0.9)) drop-shadow(0 0 1px rgba(60,42,16,0.6)) drop-shadow(0 2px 5px rgba(78,58,24,0.3));
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--ff-brand); font-weight: 600; font-size: 1.42rem;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory);
  transition: color 0.4s ease;
}
.brand__name em { font-style: normal; color: var(--gold-bright); }
.brand__tag {
  font-family: var(--ff-sans); font-size: 0.54rem; letter-spacing: 0.52em;
  text-transform: uppercase; color: var(--gold-bright);
  margin-top: 0.5rem; padding-left: 0.18em;
}
.is-scrolled .brand__name { color: var(--ink); }
.is-scrolled .brand__name em, .is-scrolled .brand__tag { color: var(--gold-deep); }

.nav__links { display: flex; align-items: center; gap: 2.3rem; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-size: 0.74rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ivory); position: relative; padding: 0.3rem 0; transition: color 0.3s ease;
}
.is-scrolled .nav__links a { color: var(--ink); }
.nav__links a::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);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--gold-bright); }
.is-scrolled .nav__links a:hover, .is-scrolled .nav__links a[aria-current="page"] { color: var(--gold-deep); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { margin-left: 0.6rem; }
.nav__cta .btn { padding: 0.8rem 1.7rem; font-size: 0.66rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 120; }
.nav__toggle span { width: 26px; height: 1.5px; background: var(--ivory); transition: transform 0.4s var(--ease), opacity 0.3s ease, background 0.3s ease; }
.is-scrolled .nav__toggle span { background: var(--ink); }
.nav__toggle.is-open span { background: var(--ivory); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* dimmed backdrop behind the mobile slide-in menu — tap to close */
.nav-scrim {
  position: fixed; inset: 0; z-index: 99;
  background: rgba(20, 15, 10, 0.5);
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.nav-scrim.is-shown { opacity: 1; visibility: visible; }

/* =============================== HERO =================================== */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: -2; background: var(--cream); }
.hero__media img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.12); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,15,10,0.18) 0%, transparent 16%),
    linear-gradient(100deg,
      rgba(250,246,239,0.97) 0%, rgba(250,246,239,0.86) 26%,
      rgba(250,246,239,0.45) 50%, rgba(250,246,239,0.05) 72%, transparent 86%);
}
.hero__inner { padding: 8.5rem 0 6rem; max-width: 640px; }
.hero__logo {
  width: clamp(150px, 18vw, 230px); height: auto; margin: 0 0 1.6rem -0.4rem;
  filter: drop-shadow(0 18px 36px rgba(120, 92, 30, 0.22));
}
.hero__title {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(2.8rem, 7vw, 5.6rem); line-height: 1.04; color: var(--ink);
  letter-spacing: 0.005em; margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; font-weight: 500; color: var(--gold-deep); }
.hero__sub {
  font-family: var(--ff-display); font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 400; max-width: 480px; margin-bottom: 2.4rem; color: var(--ink-soft);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 2.2rem; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.7rem;
  font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-deep);
}
.hero__scroll-line { width: 1px; height: 54px; background: linear-gradient(var(--gold), transparent); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--gold); animation: scrolldrop 2.2s ease-in-out infinite; }
@keyframes scrolldrop { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* page hero (interior pages) */
.pagehero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; color: var(--ivory); overflow: hidden; }
.pagehero__media { position: absolute; inset: 0; z-index: -2; background: var(--espresso); }
.pagehero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
.pagehero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(33,27,21,0.30), rgba(33,27,21,0.78));
}
.pagehero__inner { padding: 11rem 0 4.5rem; }
.pagehero__title { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.6rem, 6vw, 4.8rem); }
.pagehero__crumbs { font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-soft); margin-top: 1.1rem; }
.pagehero__crumbs a:hover { color: var(--gold-bright); }
.pagehero__crumbs span { color: var(--gold-bright); }

/* ============================ REVEAL ANIM =============================== */
[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); will-change: opacity, transform; }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.12s; }
[data-reveal][data-delay="2"] { transition-delay: 0.24s; }
[data-reveal][data-delay="3"] { transition-delay: 0.36s; }
[data-reveal][data-delay="4"] { transition-delay: 0.48s; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  /* Keep the "Opening Soon" announcement flowing even with reduced motion */
  .marquee__track { animation: marquee 42s linear infinite !important; }
}

/* ============================ SPLIT / INTRO ============================ */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.split--reverse .split__media { order: -1; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-soft); }
.split__media--frame::before { content: ""; position: absolute; inset: -18px -18px 18px 18px; border: 1px solid var(--gold); z-index: -1; pointer-events: none; }
.split__body h2 { font-size: clamp(2rem, 4vw, 3.3rem); margin-bottom: 1.4rem; }

/* signature stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.stat { text-align: center; }
.stat__num { font-family: var(--ff-display); font-size: clamp(2.6rem, 5vw, 3.8rem); color: var(--gold-bright); line-height: 1; }
.stat__label { font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; margin-top: 0.8rem; opacity: 0.82; }

/* ============================ FEATURE CARDS ============================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.card {
  position: relative; background: var(--white); border: 1px solid var(--line-dim); overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}
.section--dark .card, .section--espresso .card { background: var(--espresso-2); border-color: var(--line); color: var(--cream); }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); border-color: var(--line); }
.card__media { overflow: hidden; aspect-ratio: 3/2.4; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__media img { transform: scale(1.08); }
.card__body { padding: 1.8rem 1.8rem 2rem; }
.card__no { font-family: var(--ff-display); font-style: italic; color: var(--gold-deep); font-size: 1.15rem; margin-bottom: 0.6rem; }
.section--dark .card__no, .section--espresso .card__no { color: var(--gold-bright); }
.card__title { font-size: 1.6rem; margin-bottom: 0.7rem; }
.card__text { font-size: 0.96rem; color: var(--ink-soft); margin-bottom: 1.2rem; }
.section--dark .card__text, .section--espresso .card__text { color: var(--gold-soft); opacity: 0.78; }
.card__price { font-family: var(--ff-display); font-size: 1.15rem; color: var(--gold-deep); display: flex; align-items: baseline; gap: 0.5rem; }
.section--dark .card__price, .section--espresso .card__price { color: var(--gold-bright); }

/* ============================ SERVICE MENU ============================= */
.menu-block { margin-bottom: clamp(3rem, 6vw, 5rem); }
.menu-block:last-child { margin-bottom: 0; }
.menu-block__head { display: flex; align-items: baseline; gap: 1.4rem; margin-bottom: 2.2rem; }
.menu-block__head h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); white-space: nowrap; }
.menu-block__head .rule { flex: 1; height: 1px; background: var(--line); }
.menu-block__head .meta { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); white-space: nowrap; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 4rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 0.6rem; padding: 1.15rem 0; border-bottom: 1px dashed var(--line-dim); }
.section--dark .menu-item { border-color: var(--line-light); }
.menu-item__name { font-family: var(--ff-display); font-size: 1.4rem; font-weight: 500; }
.menu-item__desc { font-size: 0.82rem; color: var(--ink-soft); display: block; margin-top: 0.15rem; font-family: var(--ff-sans); }
.menu-item__price { font-family: var(--ff-display); font-size: 1.32rem; color: var(--gold-deep); white-space: nowrap; }
.section--dark .menu-item__price { color: var(--gold-bright); }

/* sticky in-page jump nav (price list) */
.jump { position: sticky; top: 66px; z-index: 60; background: rgba(250, 246, 239, 0.96); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); border-block: 1px solid var(--line); box-shadow: 0 12px 26px -22px rgba(78, 58, 24, 0.45); }
.jump__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; padding: 0.7rem 0; }
.jump__link { font-family: var(--ff-sans); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink); padding: 0.55rem 1.5rem; border: 1px solid var(--line); border-radius: 999px; transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.jump__link:hover, .jump__link.is-active { background: var(--gold); color: #fff; border-color: var(--gold); }
[id="hair"], [id="nails"], [id="braids"], [id="lashes"] { scroll-margin-top: 120px; }
@media (max-width: 560px) { .jump { top: 73px; } .jump__link { font-size: 0.62rem; padding: 0.5rem 1.05rem; letter-spacing: 0.12em; } [id="hair"], [id="nails"], [id="braids"], [id="lashes"] { scroll-margin-top: 140px; } }

/* size × type price matrix (nails) */
.price-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; font-family: var(--ff-sans); }
.price-table th, .price-table td { padding: 0.95rem 1rem; text-align: left; border-bottom: 1px dashed var(--line-dim); white-space: nowrap; }
.price-table thead th { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); font-weight: 500; border-bottom: 1px solid var(--line); }
.price-table tbody td:first-child { font-family: var(--ff-display); font-size: 1.25rem; color: var(--ink); }
.price-table tbody td { font-family: var(--ff-display); font-size: 1.2rem; color: var(--gold-deep); }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: rgba(196, 162, 92, 0.06); }
.price-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 0.8rem; }

/* slim section banner image for the price list */
.price-figure {
  position: relative; margin: 0 auto 2.4rem; max-width: 900px;
  aspect-ratio: 16 / 5; overflow: hidden; border-radius: 3px;
  box-shadow: 0 24px 46px -30px rgba(78, 58, 24, 0.55);
}
.price-figure img { width: 100%; height: 100%; object-fit: cover; display: block; }
.price-figure::before { content: ""; position: absolute; inset: 8px; border: 1px solid rgba(231, 214, 176, 0.55); z-index: 2; pointer-events: none; }
.price-figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(33,27,21,0.05), rgba(33,27,21,0.34)); }
.price-figure__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; text-align: center;
  padding: 1.1rem; color: var(--ivory);
  font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase;
}
@media (max-width: 560px) { .price-figure { aspect-ratio: 16 / 8; } }

/* ============================== GALLERY ================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 11vw; gap: 1rem; }
.gallery-item { position: relative; overflow: hidden; cursor: pointer; background: var(--sand); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(33,27,21,0.72)); opacity: 0; transition: opacity 0.5s ease; }
.gallery-item__cap { position: absolute; left: 1.3rem; bottom: 1.1rem; z-index: 2; color: var(--ivory); transform: translateY(12px); opacity: 0; transition: transform 0.5s var(--ease), opacity 0.5s ease; }
.gallery-item__cap span { display: block; font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-bright); }
.gallery-item__cap strong { font-family: var(--ff-display); font-weight: 500; font-size: 1.25rem; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .gallery-item__cap { transform: none; opacity: 1; }
.g-wide { grid-column: span 6; grid-row: span 2; }
.g-tall { grid-column: span 3; grid-row: span 3; }
.g-sq   { grid-column: span 3; grid-row: span 2; }
.g-box  { grid-column: span 6; grid-row: span 3; }
.g-half { grid-column: span 3; grid-row: span 2; }

/* masonry gallery — shows mixed portrait/landscape photos fully, no cropping */
.gallery-masonry { column-count: 3; column-gap: 1rem; }
.gallery-masonry .gallery-item { break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 1rem; display: block; width: 100%; }
.gallery-masonry .gallery-item img { width: 100%; height: auto; }
@media (max-width: 900px) { .gallery-masonry { column-count: 2; } }
@media (max-width: 560px) { .gallery-masonry { column-count: 1; } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; background: rgba(20,15,10,0.94); backdrop-filter: blur(8px); opacity: 0; visibility: hidden; transition: opacity 0.4s ease, visibility 0.4s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 86vw; max-height: 82vh; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.7); transform: scale(0.96); transition: transform 0.4s var(--ease); }
.lightbox.is-open img { transform: scale(1); }
.lightbox__close, .lightbox__nav { position: absolute; background: none; border: 1px solid var(--line); color: var(--ivory); width: 52px; height: 52px; cursor: pointer; font-size: 1.3rem; display: grid; place-items: center; transition: background 0.3s ease, color 0.3s ease; }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: var(--espresso); }
.lightbox__close { top: 1.6rem; right: 1.6rem; }
.lightbox__nav--prev { left: 1.6rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.6rem; top: 50%; transform: translateY(-50%); }

/* ============================ TESTIMONIALS ============================= */
.quotes { position: relative; max-width: 880px; margin-inline: auto; text-align: center; }
.quote { display: none; animation: fadeup 0.9s var(--ease); }
.quote.is-active { display: block; }
@keyframes fadeup { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.quote__mark { font-family: var(--ff-display); font-size: 5rem; line-height: 0.6; color: var(--gold); opacity: 0.6; }
.quote__text { font-family: var(--ff-display); font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.5; font-weight: 400; margin: 1.2rem 0 2rem; color: var(--ink); }
.section--dark .quote__text, .section--espresso .quote__text { color: var(--cream); }
.quote__author { font-size: 0.72rem; letter-spacing: 0.26em; text-transform: uppercase; }
.quote__author span { color: var(--gold-deep); display: block; margin-top: 0.4rem; }
.quotes__dots { display: flex; justify-content: center; gap: 0.7rem; margin-top: 2.6rem; }
.quotes__dots button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--gold); background: transparent; cursor: pointer; padding: 0; transition: background 0.3s ease; }
.quotes__dots button.is-active { background: var(--gold); }

/* ============================== TEAM =================================== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.team-grid--duo { grid-template-columns: repeat(2, 1fr); max-width: 640px; margin-inline: auto; }
@media (max-width: 560px) { .team-grid--duo { grid-template-columns: 1fr; max-width: 320px; } }
.member { text-align: center; }
.member__photo { position: relative; overflow: hidden; margin-bottom: 1.3rem; aspect-ratio: 3/4; }
.member__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.2); transition: transform 1s var(--ease), filter 0.6s ease; }
.member:hover .member__photo img { transform: scale(1.06); filter: grayscale(0); }
.member__social { position: absolute; inset: auto 0 0 0; display: flex; justify-content: center; gap: 1rem; padding: 1rem; background: linear-gradient(transparent, rgba(33,27,21,0.85)); transform: translateY(100%); transition: transform 0.5s var(--ease); }
.member:hover .member__social { transform: none; }
.member__social a { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory); }
.member__social a:hover { color: var(--gold-bright); }
.member__name { font-size: 1.45rem; }
.member__role { font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); margin-top: 0.5rem; }
.section--dark .member__role { color: var(--gold-bright); }

/* ============================== VALUES ================================= */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.6rem; }
.value__icon { width: 60px; height: 60px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; color: var(--gold-deep); margin-bottom: 1.3rem; }
.section--dark .value__icon, .section--espresso .value__icon { color: var(--gold-bright); }
.value__icon svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.6rem; margin-bottom: 0.7rem; }
.value p { font-size: 0.96rem; opacity: 0.82; }

/* ============================ CTA BANNER =============================== */
.cta { position: relative; overflow: hidden; background: var(--espresso); color: var(--ivory); text-align: center; padding: clamp(4.5rem, 9vw, 8rem) 0; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% 0%, rgba(196,162,92,0.20), transparent 60%), radial-gradient(50% 100% at 50% 100%, rgba(196,162,92,0.12), transparent 55%); }
.cta__inner { position: relative; }
.cta h2 { font-family: var(--ff-display); font-weight: 400; font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1.2rem; }
.cta p { max-width: 540px; margin: 0 auto 2.4rem; color: var(--gold-soft); }

/* ============================== FORMS ================================== */
.form { display: grid; gap: 1.5rem; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.field { position: relative; display: flex; flex-direction: column; }
.field label { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.6rem; }
.section--dark .field label, .section--espresso .field label { color: var(--gold-bright); }
.field input, .field select, .field textarea {
  font-family: var(--ff-sans); font-size: 0.96rem; font-weight: 300; color: inherit;
  background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 0.7rem 0; outline: none; transition: border-color 0.4s ease;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-soft); opacity: 0.55; }
.field select option { color: #222; }
.form__note { font-size: 0.82rem; color: var(--ink-soft); }
.form__success { display: none; padding: 1rem 1.2rem; border: 1px solid var(--gold); color: var(--gold-deep); font-size: 0.9rem; }
.form__success.is-shown { display: block; }

/* ---------- Instant online booking embed ---------- */
.booking-embed {
  width: 100%; height: 880px; display: block; border: 1px solid var(--line);
  background: var(--white); box-shadow: var(--shadow-soft);
}
@media (max-width: 640px) { .booking-embed { height: 760px; } }

/* ---------- Booking calendar ---------- */
.calendar { border: 1px solid var(--line); background: var(--white); padding: 1.1rem 1.1rem 1.3rem; }
.calendar__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.calendar__month { font-family: var(--ff-display); font-size: 1.3rem; letter-spacing: 0.02em; }
.calendar__nav {
  width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid var(--line);
  background: transparent; color: var(--ink); font-size: 1.1rem; line-height: 1; cursor: pointer;
  border-radius: 50%; transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.calendar__nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.calendar__nav:disabled { opacity: 0.3; cursor: default; }
.calendar__nav:disabled:hover { background: transparent; color: var(--ink); border-color: var(--line); }
.calendar__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.3rem; margin-bottom: 0.4rem; }
.calendar__dow span { text-align: center; font-family: var(--ff-sans); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); }
.calendar__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.3rem; }
.calendar__day {
  aspect-ratio: 1 / 1; display: grid; place-items: center; border: 0; background: transparent;
  font-family: var(--ff-display); font-size: 1.05rem; color: var(--ink); cursor: pointer;
  border-radius: 50%; transition: background 0.25s ease, color 0.25s ease;
}
.calendar__day:hover:not(.is-disabled):not(.is-empty) { background: rgba(196, 162, 92, 0.16); }
.calendar__day.is-empty { cursor: default; }
.calendar__day.is-disabled { color: var(--ink-soft); opacity: 0.32; cursor: default; text-decoration: line-through; }
.calendar__day.is-selected { background: var(--gold); color: #fff; }
.calendar__day.is-selected:hover { background: var(--gold-deep); }
.calendar__times { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px dashed var(--line-dim); }
.calendar__times-lbl { margin: 0 0 0.6rem; font-family: var(--ff-sans); font-size: 0.62rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); }
.calendar__slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(74px, 1fr)); gap: 0.45rem; }
.calendar__slot {
  font-family: var(--ff-sans); font-size: 0.82rem; color: var(--ink);
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: 0.5rem 0.2rem; cursor: pointer; transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.calendar__slot:hover { background: rgba(196, 162, 92, 0.16); border-color: var(--gold); }
.calendar__slot.is-selected { background: var(--gold); color: #fff; border-color: var(--gold); }
.calendar__readout { margin: 1rem 0 0; font-size: 0.9rem; color: var(--ink); }
.calendar__readout.is-set { color: var(--gold-deep); font-family: var(--ff-display); font-size: 1.05rem; }
.calendar__hint { margin: 0.35rem 0 0; font-size: 0.76rem; color: var(--ink-soft); }

/* ============================ CONTACT INFO ============================= */
.info-list { display: grid; gap: 2rem; }
.info-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.info-item__icon { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--gold-deep); }
.section--dark .info-item__icon, .section--espresso .info-item__icon { color: var(--gold-bright); }
.info-item__icon svg { width: 20px; height: 20px; }
.info-item h4 { font-family: var(--ff-sans); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.4rem; font-weight: 500; }
.info-item p { margin: 0; font-family: var(--ff-display); font-size: 1.25rem; }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: 0.7rem 0; border-bottom: 1px solid var(--line-dim); font-size: 0.98rem; }
.hours td:last-child { text-align: right; color: var(--gold-deep); font-family: var(--ff-display); font-size: 1.1rem; }
.map-embed { width: 100%; min-height: 360px; border: 0; filter: grayscale(0.25) sepia(0.1) contrast(1.02); display: block; }

/* ============================ MARQUEE ================================== */
.marquee { overflow: hidden; white-space: nowrap; border-block: 1px solid var(--line); padding: 1.5rem 0; background: var(--espresso); color: var(--cream); }
.marquee__track { display: inline-flex; align-items: center; animation: marquee 42s linear infinite; will-change: transform; }
.marquee__track span { font-family: var(--ff-display); font-size: clamp(1.4rem, 3vw, 2.2rem); letter-spacing: 0.04em; display: inline-flex; align-items: center; gap: 3rem; margin-right: 3rem; }
.marquee__track span::after { content: "✦"; color: var(--gold); font-size: 0.7em; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================== FOOTER ================================= */
.site-footer { background: var(--espresso); color: var(--cream); padding: 5rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 3rem; padding-bottom: 4rem; border-bottom: 1px solid var(--line-light); }
.footer-brand .brand__name { font-family: var(--ff-brand); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ivory); }
.footer-brand .brand__name em { font-style: normal; color: var(--gold-bright); }
.footer-brand .footer-tag { font-size: 0.56rem; letter-spacing: 0.5em; text-transform: uppercase; color: var(--gold-bright); display: block; margin-top: 0.5rem; }
.footer-brand p { margin-top: 1.4rem; max-width: 280px; opacity: 0.72; font-size: 0.95rem; }
.footer-col h5 { font-family: var(--ff-sans); font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 1.4rem; font-weight: 500; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.footer-col a, .footer-col li { font-size: 0.95rem; opacity: 0.8; transition: opacity 0.3s ease, color 0.3s ease; }
.footer-col a:hover { opacity: 1; color: var(--gold-bright); }
.footer-social { display: flex; gap: 1rem; margin-top: 1.6rem; }
.footer-social a { width: 42px; height: 42px; border: 1px solid var(--line-light); display: grid; place-items: center; transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease; }
.footer-social a:hover { background: var(--gold); color: var(--espresso); border-color: var(--gold); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding: 2rem 0; font-size: 0.8rem; opacity: 0.62; }
.footer-bottom a:hover { color: var(--gold-bright); opacity: 1; }

/* ============================ RESPONSIVE =============================== */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; gap: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2.4rem; }
  .values { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-auto-rows: 22vw; }
  .g-wide, .g-box { grid-column: span 12; }
  .g-tall { grid-column: span 6; grid-row: span 2; }
  .g-sq, .g-half { grid-column: span 6; }
  .hero__overlay { background:
    linear-gradient(180deg, rgba(20,15,10,0.25) 0%, transparent 14%),
    linear-gradient(180deg, rgba(250,246,239,0.55) 0%, rgba(250,246,239,0.80) 45%, rgba(250,246,239,0.97) 100%); }
  .hero__inner { max-width: 720px; }
}
@media (max-width: 760px) {
  /* hamburger: dark glass pill so the ivory bars read on any background */
  .nav__toggle {
    display: flex; width: 46px; height: 46px; padding: 0;
    align-items: center; justify-content: center;
    border: 1px solid rgba(231, 214, 176, 0.4); border-radius: 50%;
    background: rgba(33, 27, 21, 0.5);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    transition: background 0.35s ease, border-color 0.35s ease;
  }
  .nav__toggle span { width: 20px; }
  .is-scrolled .nav__toggle span { background: var(--ivory); }
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.4rem; padding: 3rem 2.4rem; background: rgba(33,27,21,0.98); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); transform: translateX(100%); transition: transform 0.5s var(--ease); border-left: 1px solid var(--line); overflow-y: auto; }
  .nav__links.is-open { transform: none; }
  .nav__links a, .is-scrolled .nav__links a { color: var(--ivory); font-size: 1.05rem; display: block; padding: 0.4rem 0; }
  .nav__cta { margin: 1.2rem 0 0; }
  .nav__cta .btn { padding: 1rem 2.4rem; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .form__row { grid-template-columns: 1fr; }
  /* 16px inputs stop iOS Safari auto-zooming on focus */
  .field input, .field select, .field textarea { font-size: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer-bottom { flex-direction: column; }
  .menu-block__head { flex-wrap: wrap; gap: 0.8rem; }
  .menu-block__head .rule { display: none; }
  .menu-item__name { font-size: 1.25rem; }
  .menu-item__price { font-size: 1.2rem; }
  .pagehero { min-height: 48vh; }
  .pagehero__inner { padding: 9rem 0 3.2rem; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 2.2rem 1.2rem; }
  .container, .container--narrow { width: min(100% - 2.4rem, var(--maxw)); }
  .hero__actions { width: 100%; gap: 0.8rem; }
  .hero__actions .btn { flex: 1 1 100%; text-align: center; }
  .hero__inner { padding: 8rem 0 7rem; }
  /* full-bleed-ish gallery tiles on phones (index teaser grid) */
  .gallery-grid { grid-auto-rows: 26vw !important; gap: 0.7rem; }
  .g-wide, .g-box, .g-tall { grid-column: span 12; grid-row: span 2; }
  .g-sq, .g-half { grid-column: span 6; grid-row: span 2; }
  .cta h2 { font-size: 2.2rem; }
}
