
/* ═══════════════════════════════════════════════════════
   DESIGN SYSTEM
═══════════════════════════════════════════════════════ */
:root {
  --bar-h: 0px;
  /* ── Brand palette (exact) ── */
  --navy:        #1a0b30;
  --navy-deep:   #0e0620;
  --navy-mid:    #251244;
  --purple:      #3A1F5D;
  --purple-deep: #241238;
  --purple-mid:  #4d2878;
  --purple-hi:   #6b3d9a;
  --gold:        #C9A24A;
  --gold-hi:     #e0ba62;
  --gold-dim:    #a07c2e;
  --cream:       #F7F2E8;
  --linen:       #FBF8F1;

  /* ── Derived ── */
  --ivory:       #F7F2E8;
  --ivory-warm:  #F3ECD8;
  --parchment:   #ebe0cc;
  --ink:         #0e1420;
  --text:        #3d3356;
  --muted:       #8a7d9a;
  --white:       #ffffff;

  /* Type */
  --ff-display: 'EB Garamond', Georgia, serif;
  --ff-serif:   'Cormorant', Georgia, serif;
  --ff-sans:    'Jost', system-ui, sans-serif;

  /* Motion */
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:    cubic-bezier(0.7, 0, 1, 1);
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}


/* ── Logo image sizes ── */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(1.05);
  transition: opacity .3s, height .4s var(--ease-out);
}
#nav.scrolled .nav-logo-img { height: 44px; }
.nav-logo-img:hover { opacity: .85; }
.footer-logo-img {
  height: 84px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}
.pg-logo-img {
  height: 72px;
  width: auto;
  display: block;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--linen);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--linen); }
::-webkit-scrollbar-thumb { background: var(--purple); }

/* Page router */
.page { display: none; }
.page.active { display: block; }

/* ═══════════════════════════════════════════════════════
   UTILITIES
═══════════════════════════════════════════════════════ */
.eyebrow {
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--purple);
  display: block;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.light { color: rgba(249,245,239,.45); }

.rule {
  height: 1px;
  width: 48px;
  background: var(--purple);
  display: block;
}
.rule.gold { background: var(--gold); }
.rule.center { margin-left: auto; margin-right: auto; }
.rule.light { background: rgba(249,245,239,.3); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 16px 40px;
  transition: all .4s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn-dark {
  background: var(--purple);
  color: var(--ivory);
}
.btn-white {
  background: #ffffff !important;
  color: var(--purple-deep) !important;
  border: 1.5px solid rgba(58,31,93,.2) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
}
.btn-white::after { display: none !important; }
.btn-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--purple-mid);
  transform: translateX(-101%);
  transition: transform .5s var(--ease-out);
}
.btn-dark:hover::after { transform: translateX(0); }
.btn-dark span { position: relative; z-index: 1; }
.btn-dark:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(58,31,93,.25); }

.btn-outline {
  border: 1px solid var(--purple);
  color: var(--purple);
}
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

.btn-outline-light {
  border: 1px solid rgba(249,245,239,.4);
  color: var(--ivory);
}
.btn-outline-light:hover { border-color: var(--ivory); background: rgba(249,245,239,.08); }

.btn-gold {
  background: var(--gold);
  color: var(--ivory);
}
.btn-gold:hover { background: var(--gold-hi); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(184,144,42,.28); }

.btn-arrow::after { content: '→'; font-family: Georgia, serif; font-size: 1.1em; }

/* Reveal animations */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.rv.in { opacity: 1; transform: none; }
.rv-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.rv-up.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .45s; }
.d5 { transition-delay: .6s; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#nav {
  position: fixed;
  top: var(--bar-h); left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 72px;
  transition: height .4s var(--ease-out), background .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  height: 60px;
  background: rgba(251,248,241,.97);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(58,31,93,.08);
}
#nav.dark-nav {
  background: transparent;
}
#nav.dark-nav .nav-link { color: #ffffff; }
#nav.dark-nav .nav-link:hover { color: var(--gold); }
#nav.dark-nav .nav-reserve { background: #ffffff; color: var(--purple-deep); border-color: var(--purple); }
#nav.dark-nav .nav-reserve:hover { background: #ffffff; color: var(--purple); border-color: #ffffff; }
#nav.dark-nav .brand-word { color: var(--cream); }
#nav.dark-nav .brand-word span { color: var(--gold); }
#nav.dark-nav.scrolled { background: rgba(58,31,93,.97); }
#nav.dark-nav.scrolled .nav-link { color: rgba(247,242,232,.65); }

.brand-word {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.brand-word .crown { color: var(--gold); font-size: .9rem; }
.brand-word span { color: var(--purple); }

.nav-center {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-link {
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ivory);
  transition: color .3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.nav-link:hover { color: var(--purple); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-reserve {
  font-family: var(--ff-sans);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--purple-deep);
  background: #ffffff;
  border: 1.5px solid var(--purple);
  padding: 9px 22px;
  transition: all .35s;
}
.nav-reserve:hover { background: var(--purple); color: var(--ivory); border-color: var(--purple); }
.nav-cart {
  position: relative;
  background: none;
  border: none;
  color: var(--purple-deep);
  cursor: pointer;
  padding: 6px 10px;
  display: flex;
  align-items: center;
}
#nav.dark-nav .nav-cart { color: #ffffff; }
.cart-count {
  position: absolute;
  top: 0; right: 2px;
  background: var(--gold);
  color: var(--purple-deep);
  font-family: var(--ff-sans);
  font-size: .6rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}
.mi-add-btn {
  margin-top: auto;
  width: 100%;
  font-family: var(--ff-sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple-deep);
  background: transparent;
  border: 1.5px solid var(--purple);
  padding: 9px 16px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.mi-add-btn:hover { background: var(--purple); color: var(--ivory); }
.mi-qty {
  margin-top: auto;
  display: flex;
  align-items: center;
  border: 1.5px solid var(--purple);
  overflow: hidden;
}
.mi-qty-btn {
  font-family: var(--ff-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--purple-deep);
  background: transparent;
  border: none;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background .2s, color .2s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mi-qty-btn:hover { background: var(--purple); color: var(--ivory); }
.mi-qty-num {
  flex: 1;
  text-align: center;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--purple-deep);
  pointer-events: none;
}

/* ── Cart Drawer ─────────────────────────────────────── */
.cart-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,10,50,.35);
  z-index: 1100;
  backdrop-filter: blur(2px);
}
.cart-overlay.open { display: block; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 380px;
  max-width: 100vw;
  height: 100%;
  background: var(--cream, #fdf8f2);
  z-index: 1101;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -6px 0 40px rgba(58,31,93,.14);
}
.cart-drawer.open { transform: translateX(0); }
.cd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(58,31,93,.08);
}
.cd-title {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--purple-deep);
  letter-spacing: .02em;
}
.cd-close {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--purple-deep);
  cursor: pointer;
  opacity: .5;
  padding: 4px 6px;
  transition: opacity .2s;
}
.cd-close:hover { opacity: 1; }
.cd-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}
.cd-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 100%;
  color: var(--purple-deep);
  text-align: center;
  font-family: var(--ff-sans);
  font-size: .9rem;
}
.cd-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cd-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(58,31,93,.07);
}
.cd-item-info {
  flex: 1;
  min-width: 0;
}
.cd-item-name {
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cd-item-price {
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: var(--purple-mid, #6b4fa0);
  opacity: .75;
}
.cd-item-qty {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid rgba(58,31,93,.18);
  border-radius: 4px;
  overflow: hidden;
}
.cd-qty-btn {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  font-size: .95rem;
  color: var(--purple-deep);
  cursor: pointer;
  transition: background .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-qty-btn:hover { background: var(--purple-pale, #ede8f5); }
.cd-qty-val {
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 700;
  color: var(--purple-deep);
  min-width: 24px;
  text-align: center;
}
.cd-item-total {
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 700;
  color: var(--purple-deep);
  min-width: 44px;
  text-align: right;
}
.cd-footer {
  padding: 20px 28px;
  border-top: 1px solid rgba(58,31,93,.08);
}
.cd-subtotal {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 16px;
}
#cd-subtotal-val { font-size: 1rem; font-weight: 700; }
.cd-checkout {
  width: 100%;
  background: var(--purple-deep);
  color: var(--ivory, #fdf6e3);
  border: none;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 16px;
  cursor: pointer;
  transition: background .25s;
}
.cd-checkout:hover { background: var(--purple, #7c4fbf); }
@media(max-width:480px){ .cart-drawer { width: 100vw; } }

/* ── Checkout Section ────────────────────────────────── */
.checkout-section {
  background: var(--linen);
  padding: 80px 48px 100px;
}
.checkout-inner { max-width: 1060px; margin: 0 auto; }
.checkout-head {
  text-align: center;
  margin-bottom: 52px;
}
.checkout-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--purple-deep);
  margin: 10px 0 0;
}
.checkout-head h2 em { font-style: italic; color: var(--purple-mid, #7c4fbf); }
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}
/* Summary */
.checkout-summary {
  background: var(--cream, #fdf8f2);
  border: 1px solid rgba(58,31,93,.08);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.cs-title {
  font-family: var(--ff-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--purple-deep);
  margin-bottom: 20px;
}
.cs-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs-list li {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-sans);
  font-size: .85rem;
  color: var(--purple-deep);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(58,31,93,.06);
}
.cs-list li span:last-child { font-weight: 600; }
.cs-qty { opacity: .55; font-size: .78rem; margin-left: 4px; }
.cs-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 700;
  color: var(--purple-deep);
  padding-top: 14px;
  border-top: 1.5px solid rgba(58,31,93,.15);
}
#cs-total-val { font-size: 1.05rem; }
/* Form */
.checkout-form { display: flex; flex-direction: column; gap: 20px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cf-field { display: flex; flex-direction: column; gap: 7px; }
.cf-field label {
  font-family: var(--ff-sans);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--purple-deep);
}
.cf-field label span { color: var(--gold); }
.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: var(--ff-sans);
  font-size: .9rem;
  color: var(--purple-deep);
  background: var(--cream, #fdf8f2);
  border: 1.5px solid rgba(58,31,93,.18);
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
  box-sizing: border-box;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--purple); }
.cf-field textarea { resize: vertical; }
.cf-back {
  background: none;
  border: none;
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: var(--purple-mid, #7c4fbf);
  cursor: pointer;
  padding: 0;
  margin-bottom: 18px;
  display: block;
  opacity: .75;
  transition: opacity .2s;
}
.cf-back:hover { opacity: 1; }
.cf-submit {
  margin-top: 8px;
  background: var(--purple-deep);
  color: var(--ivory, #fdf6e3);
  border: none;
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 18px;
  cursor: pointer;
  transition: background .25s;
}
.cf-submit:hover { background: var(--purple, #7c4fbf); }
@media(max-width:860px){
  .checkout-section { padding: 60px 24px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
}
@media(max-width:540px){ .cf-row { grid-template-columns: 1fr; } }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  width: 22px;
  height: 2px;
  display: block;
  background: var(--purple-deep);
  transition: all .3s;
  border-radius: 2px;
}
#nav.dark-nav .nav-burger span { background: var(--ivory); }
#nav.dark-nav.scrolled .nav-burger span { background: var(--ivory); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--navy);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 88px 32px 44px;
}
.mm-logo { width: 84px; height: auto; margin: 0 auto 40px; filter: drop-shadow(0 4px 20px rgba(0,0,0,.4)); }
.mm-links { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mm-foot { margin-top: auto; display: flex; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
.mm-foot span { font-family: var(--ff-sans); font-size: .72rem; letter-spacing: .1em; color: rgba(249,245,239,.45); }
.mobile-menu.open { display: flex; }
.mobile-menu button,
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ivory);
  transition: color .3s;
  padding: 9px 14px;
}
.mobile-menu button:hover,
.mobile-menu a:hover { color: var(--gold); }
.mm-close {
  position: absolute;
  top: 28px; right: 32px;
  font-family: var(--ff-sans);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(249,245,239,.5) !important;
  font-size: .58rem !important;
}

@media (max-width: 960px) {
  #nav { padding: 0 24px; }
  .nav-center { display: none; }
  .nav-right .nav-reserve { display: none; }
  .nav-right { display: flex; align-items: center; gap: 0; margin-left: auto; margin-right: 10px; }
  .nav-cart { padding: 6px 4px; }
  .nav-burger { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   HOME — HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(60px,8vh,100px);
}

/* Photo background */
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('/images/img_000.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-photo.loaded { transform: scale(1); }

/* Layered overlays — preserve photo warmth, ensure text reads */
.hero-overlay {
  position: absolute;
  inset: 0;
  /* Left column: deep navy panel so type is always legible */
  background:
    linear-gradient(90deg,
      rgba(15,22,36,.92)   0%,
      rgba(15,22,36,.82)  38%,
      rgba(15,22,36,.45)  58%,
      rgba(15,22,36,.12)  72%,
      transparent         85%
    ),
    /* Bottom vignette — anchors the content area */
    linear-gradient(0deg,
      rgba(15,22,36,.88)   0%,
      rgba(15,22,36,.4)   28%,
      transparent         55%
    ),
    /* Subtle purple depth on right — keeps brand in the shadows */
    radial-gradient(ellipse 60% 70% at 100% 50%,
      rgba(58,31,93,.35) 0%,
      transparent 70%
    );
}

/* Grain on top for texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
}

/* Gold top bar */
.hero-top-rule {
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px; z-index: 4;
  background: linear-gradient(90deg,
    var(--gold)               0%,
    var(--gold)              55%,
    rgba(201,162,74,.2)      75%,
    transparent             100%
  );
}

/* Gold bottom hairline */
.hero-bot-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px; z-index: 4;
  background: linear-gradient(90deg, rgba(201,162,74,.35), transparent 60%);
}

/* Vertical left accent bar — palace frame feel */
.hero-left-bar {
  position: absolute;
  left: clamp(28px,5vw,72px);
  top: 12%; bottom: 12%;
  width: 1px;
  z-index: 3;
  background: linear-gradient(180deg,
    transparent,
    rgba(201,162,74,.4) 20%,
    rgba(201,162,74,.4) 80%,
    transparent
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 820px;
  padding: 0 clamp(32px,7vw,110px);
  display: flex;
  flex-direction: column;
  animation: heroIn 1.4s var(--ease-out) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

.hero-logo {
  width: clamp(88px, 10vw, 128px);
  height: auto;
  margin-bottom: 4px;
  margin-left: -6px;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.4));
}
@media(max-width:640px){
  .hero-logo { width: 82px; margin-bottom: 18px; margin-left: 0; }
  /* Stack hero / CTA buttons, equal width but compact and centered */
  .hero-actions, .cta-btns { flex-direction: column; gap: 10px; align-items: center; }
  .hero-actions .btn, .cta-btns .btn { width: 100%; max-width: 270px; justify-content: center; padding: 13px 24px; }
  /* Hide the vertical SCROLL indicator on touch (it overlaps the buttons) */
  .hero-scroll { display: none !important; }
}

/* Eyebrow tag */
.hero-tag {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: clamp(20px,3vh,32px);
}
.hero-tag-line {
  flex: 0 0 44px;
  height: 1px;
  background: var(--gold);
}

/* Headline */
.hero-h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.02em;
  color: var(--cream);
  margin-bottom: clamp(14px,2vh,22px);
  white-space: nowrap;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-h1 .h1-sub {
  display: block;
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 300;
  font-size: .35em;
  letter-spacing: .04em;
  color: rgba(247,242,232,.5);
  line-height: 1.5;
  margin-top: 10px;
}

/* Subheadline */
.hero-sub {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.75vw, 1.32rem);
  font-weight: 500;
  color: rgba(247,242,232,.88);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: clamp(32px,5vh,56px);
}

/* Actions */
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: clamp(28px,4vh,48px);
  right: clamp(28px,4vw,60px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroIn 2s .6s var(--ease-out) both;
  opacity: 0;
}
.hero-scroll-label {
  writing-mode: vertical-rl;
  font-family: var(--ff-sans);
  font-size: .48rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(201,162,74,.45);
}
.hero-scroll-bar {
  width: 1px; height: 52px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollDrop 2.4s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@media (max-width: 700px) {
  .hero-h1 { font-size: 3.4rem; }
  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(15,22,36,.95) 0%, rgba(15,22,36,.7) 45%, rgba(15,22,36,.3) 100%),
      linear-gradient(90deg, rgba(15,22,36,.6) 0%, transparent 70%);
  }
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden;
  background: var(--purple);
  padding: 0;
  border-top: 1px solid rgba(184,144,42,.2);
}
.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
  padding: 14px 0;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.marquee-item span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(249,245,239,.7);
  padding: 0 36px;
}
.marquee-item .dot {
  color: var(--gold);
  font-style: normal;
  opacity: .6;
  padding: 0;
  font-size: .5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   HOME — INTRO EDITORIAL
═══════════════════════════════════════════════════════ */
.intro {
  background: var(--linen);
  padding: 120px 56px;
}
.intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: center;
}

/* Left: stacked label + headline */
.intro-left .eyebrow { margin-bottom: 18px; }
.intro-title {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--purple-deep);
}
.intro-title em {
  font-style: italic;
  color: var(--purple-mid);
}

/* Right: text + photo stack */
.intro-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.intro-photo {
  overflow: hidden;
  position: relative;
}
.intro-photo-main {
  grid-column: 1 / 3;
  height: 360px;
}
.intro-photo-a { height: 220px; }
.intro-photo-b { height: 220px; }

/* Real photo scenes */
.scene {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform .9s var(--ease-out);
}
.intro-photo:hover .scene { transform: scale(1.05); }

/* Shared photo background */
.scene-main,
.scene-a,
.scene-b {
  background-image: url('/images/img_001.jpg');
  background-size: cover;
  background-repeat: no-repeat;
}

/* Main panel — centre crop, full pastry with berries */
.scene-main {
  background-position: center 40%;
}
/* After-overlay — subtle dark vignette + caption area */
.scene-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,22,36,.6) 0%, rgba(15,22,36,.1) 35%, transparent 60%);
}

/* Panel A — éclair photo, portrait crop centred on the pastry */
.scene-a {
  background-image: url('/images/img_002.jpg');
  background-position: center 35%;
}
.scene-a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,22,36,.5) 0%, transparent 45%);
}

/* Panel B — macaron photo, crop centred on the colourful shells */
.scene-b {
  background-image: url('/images/img_003.jpg');
  background-position: center 45%;
}
.scene-b::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,22,36,.5) 0%, transparent 45%);
}

.photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 20px 18px;
  background: linear-gradient(0deg, rgba(10,4,24,.75) 0%, transparent 100%);
  font-family: var(--ff-sans);
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(249,245,239,.55);
}

@media (max-width: 960px) {
  .intro { padding: 80px 24px; }
  .intro-inner { grid-template-columns: 1fr; gap: 56px; }
  .intro-photo-main { height: 280px; }
}

/* ═══════════════════════════════════════════════════════
   HOME — SIGNATURES (FULL-WIDTH EDITORIAL)
═══════════════════════════════════════════════════════ */
.signatures {
  background: var(--navy);
  padding: 120px 0 0;
  overflow: hidden;
}

.sig-head {
  padding: 0 56px;
  margin-bottom: 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.sig-head-left .eyebrow { margin-bottom: 14px; }
.sig-head-left h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: .95;
  color: var(--ivory);
  letter-spacing: -.02em;
}
.sig-head-left h2 em { font-style: italic; color: var(--gold); }
.sig-head-right {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(249,245,239,.35);
  max-width: 260px;
  text-align: right;
  flex-shrink: 0;
  line-height: 1.7;
}

/* Horizontal scroll strip */
.sig-strip {
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 0;
  cursor: grab;
}
.sig-strip::-webkit-scrollbar { display: none; }
.sig-strip:active { cursor: grabbing; }

.sig-card {
  flex: 0 0 320px;
  position: relative;
  overflow: hidden;
}
.sig-card-last { flex: 0 0 400px; }

.sig-scene {
  height: 480px;
  position: relative;
  transition: transform .7s var(--ease-out);
}
.sig-card:hover .sig-scene { transform: scale(1.04); }

.ss-eclair {
  background-image: url('/images/img_004.jpg');
  background-size: cover;
  background-position: center 30%;
}
.ss-eclair::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,22,36,.7) 0%, rgba(15,22,36,.1) 40%, transparent 65%);
}
.ss-eclair::after { content: none; }

.ss-crown {
  background-image: url('/images/img_005.jpg');
  background-size: cover;
  background-position: center 40%;
}
.ss-crown::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,22,36,.7) 0%, rgba(15,22,36,.1) 40%, transparent 65%);
}

.ss-mille {
  background-image: url('/images/img_006.jpg');
  background-size: cover;
  background-position: center 45%;
}
.ss-mille::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,22,36,.7) 0%, rgba(15,22,36,.1) 40%, transparent 65%);
}

.ss-mac {
  background-image: url('/images/img_007.jpg');
  background-size: cover;
  background-position: center 40%;
}
.ss-mac::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15,22,36,.7) 0%, rgba(15,22,36,.1) 40%, transparent 65%);
}

/* CTA card (last) */
.ss-cta {
  height: 480px;
  background-image: url('/images/img_008.jpg');
  background-size: cover;
  background-position: center 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 36px;
  position: relative;
}
.ss-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(15,22,36,.88) 0%, rgba(15,22,36,.55) 50%, rgba(15,22,36,.2) 100%);
  z-index: 0;
}
.ss-cta > * { position: relative; z-index: 1; }
.ss-cta .big-num {
  font-family: var(--ff-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201,162,74,.18);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 24px;
}
.ss-cta h3 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.1;
  position: relative;
}
.ss-cta p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: .95rem;
  color: rgba(247,242,232,.6);
  margin-bottom: 28px;
  position: relative;
}

.sig-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 24px 24px;
  background: linear-gradient(0deg, rgba(10,4,24,.85) 0%, transparent 100%);
  transform: translateY(8px);
  transition: transform .4s var(--ease-out);
}
.sig-card:hover .sig-info { transform: none; }

.sig-tag {
  font-family: var(--ff-sans);
  font-size: .5rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.sig-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 4px;
  line-height: 1.1;
}
.sig-desc {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: .85rem;
  color: rgba(249,245,239,.5);
  margin-bottom: 10px;
}
.sig-price {
  font-family: var(--ff-sans);
  font-size: .6rem;
  letter-spacing: .14em;
  color: var(--gold);
}

.sig-footer {
  padding: 0 56px;
  margin-top: 64px;
  padding-bottom: 80px;
  border-top: 1px solid rgba(184,144,42,.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sig-footer p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(249,245,239,.28);
  font-size: .9rem;
}

@media (max-width: 768px) {
  .sig-head { flex-direction: column; align-items: flex-start; padding: 0 24px; }
  .sig-head-right { text-align: left; }
  .sig-card { flex: 0 0 260px; }
  .sig-scene, .ss-cta { height: 360px; }
  .signatures { padding-top: 80px; }
  .sig-footer { padding: 32px 24px 60px; flex-direction: column; gap: 16px; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════
   HOME — STORY CINEMATIC SPLIT
═══════════════════════════════════════════════════════ */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.story-visual {
  position: relative;
  overflow: hidden;
  min-height: 540px;
}
.story-scene {
  position: absolute;
  inset: 0;
  background-image: url('/images/img_009.jpg');
  background-size: cover;
  background-position: center 35%;
  transition: transform 1.2s var(--ease-out);
}
.story-visual:hover .story-scene { transform: scale(1.03); }
.story-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15,22,36,.25) 0%, transparent 60%),
    linear-gradient(0deg, rgba(15,22,36,.5) 0%, transparent 45%);
}
.story-scene-glyph { display: none; }

.story-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: var(--gold);
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.story-badge .n {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
}
.story-badge .u {
  font-family: var(--ff-sans);
  font-size: .4rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(249,245,239,.65);
}

.story-text {
  background: var(--linen);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-text .eyebrow { margin-bottom: 18px; }
.story-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--purple-deep);
  margin-bottom: 24px;
  letter-spacing: -.015em;
}
.story-text h2 em { font-style: italic; color: var(--purple-mid); }
.story-text p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-text p.normal {
  font-style: normal;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--purple-deep);
  line-height: 1.95;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: .6rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--purple);
  margin-top: 20px;
  transition: gap .35s var(--ease-out);
  cursor: pointer;
}
.text-link:hover { gap: 20px; }
.text-link::after { content: '→'; font-size: 1rem; font-family: Georgia, serif; }

@media (max-width: 900px) {
  .story-split { grid-template-columns: 1fr; }
  .story-text { padding: 60px 24px; }
  .story-visual { min-height: 360px; }
  .story-scene-glyph { font-size: 8rem; }
}

/* ═══════════════════════════════════════════════════════
   HOME — PHILOSOPHY BAND
═══════════════════════════════════════════════════════ */
.philosophy {
  background: var(--cream);
  padding: 100px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.philosophy::before {
  content: 'ISABELLA';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--ff-display);
  font-size: 22vw;
  font-weight: 700;
  color: rgba(249,245,239,.06);
  white-space: nowrap;
  letter-spacing: -.02em;
  pointer-events: none;
  line-height: 1;
}
.philosophy-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }

.pullquote {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.1;
  color: var(--purple-deep);
  margin-bottom: 32px;
  letter-spacing: -.01em;
}
.pullquote em { font-style: italic; color: var(--purple-mid); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(58,31,93,.1);
  border: 1px solid rgba(58,31,93,.1);
  margin: 64px 0;
}
.pillar {
  background: var(--linen);
  padding: 44px 28px;
  text-align: left;
}
.pillar-icon {
  font-size: 1.2rem;
  margin-bottom: 14px;
  display: block;
}
.pillar h4 {
  font-family: var(--ff-sans);
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 10px;
}
.pillar p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .philosophy { padding: 80px 24px; }
  .pillars { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   HOME — VISIT FULL-BLEED
═══════════════════════════════════════════════════════ */
.visit-band {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 560px;
}
.visit-scene-wrap {
  position: relative;
  overflow: hidden;
}
.visit-scene {
  position: absolute;
  inset: 0;
  background-image: url('/images/img_010.jpg');
  background-size: cover;
  background-position: center 40%;
  transition: transform 1.2s var(--ease-out);
}
.visit-scene-wrap:hover .visit-scene { transform: scale(1.03); }
.visit-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(15,22,36,.72) 0%, rgba(15,22,36,.2) 45%, transparent 70%),
    linear-gradient(90deg, rgba(15,22,36,.35) 0%, transparent 50%);
}
.visit-scene::after { content: none; }
.visit-hours {
  position: absolute;
  bottom: 36px; left: 36px;
  background: rgba(10,4,24,.85);
  backdrop-filter: blur(8px);
  padding: 22px 28px;
  border: 1px solid rgba(184,144,42,.2);
}
.visit-hours h4 {
  font-family: var(--ff-sans);
  font-size: .52rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.vh-row {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(249,245,239,.06);
}
.vh-row:last-child { border-bottom: none; }
.vh-day { font-family: var(--ff-sans); font-size: .72rem; font-weight: 300; color: rgba(249,245,239,.55); }
.vh-time { font-family: var(--ff-serif); font-style: italic; font-size: .82rem; color: rgba(249,245,239,.4); }

.visit-info {
  background: var(--navy);
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.visit-info .eyebrow { margin-bottom: 14px; }
.visit-info h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 20px;
  letter-spacing: -.015em;
  line-height: 1.05;
}
.visit-info h2 em { font-style: italic; color: var(--gold); }
.visit-info .lead {
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(249,245,239,.4);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.visit-addr {
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: rgba(249,245,239,.35);
  font-weight: 300;
  margin-bottom: 32px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .visit-band { grid-template-columns: 1fr; }
  .visit-scene-wrap { min-height: 360px; }
  .visit-info { padding: 60px 24px; }
}

/* ═══════════════════════════════════════════════════════
   HOME — ROYAL REWARDS
═══════════════════════════════════════════════════════ */
.rewards {
  background: var(--cream);
  padding: 110px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(58,31,93,.08);
}
.rewards-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.rewards-inner .eyebrow { margin-bottom: 18px; }
.rewards-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.15;
  margin-bottom: 22px;
  letter-spacing: -.01em;
}
.rewards-title em { font-style: italic; color: var(--purple-mid); }
.rewards-rule-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.rewards-rule-wrap .rule { width: 48px; }
.rewards-lead {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--purple-deep);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 52px;
}
.rewards-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 56px;
  align-items: center;
  justify-content: center;
}
.rewards-qr-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 22px 22px 18px;
  border-radius: 14px;
  border: 1px solid rgba(58,31,93,.08);
  box-shadow: 0 8px 28px rgba(58,31,93,.08);
  text-decoration: none;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.rewards-qr-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(58,31,93,.14); }
.rewards-qr-img {
  width: 180px;
  height: 180px;
  display: block;
}
.rewards-qr-caption {
  font-family: var(--ff-sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--purple);
}
.rewards-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 280px;
}
.rewards-cta-helper {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--purple-deep);
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
@media (max-width: 820px) {
  .rewards { padding: 80px 24px; }
  .rewards-grid { grid-template-columns: 1fr; gap: 36px; }
  .rewards-qr-img { width: 168px; height: 168px; }
  .rewards-lead { margin-bottom: 40px; font-size: 1.05rem; line-height: 1.7; }
  .rewards-cta { max-width: 100%; }
}
@media (max-width: 480px) {
  .rewards { padding: 68px 20px; }
  .rewards-title { margin-bottom: 18px; }
  .rewards-rule-wrap { margin-bottom: 20px; }
  .rewards-lead br { display: none; }
  .rewards-qr-img { width: 156px; height: 156px; }
}

/* ═══════════════════════════════════════════════════════
   HOME — NEWSLETTER
═══════════════════════════════════════════════════════ */
.nl {
  background: var(--cream);
  padding: 120px 56px;
  text-align: center;
  border-top: 1px solid rgba(58,31,93,.08);
  position: relative;
  overflow: hidden;
}
.nl::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--purple), transparent);
}
.nl-ornament {
  font-family: var(--ff-display);
  font-size: 5rem;
  color: rgba(58,31,93,.055);
  line-height: 1;
  letter-spacing: .1em;
  margin-bottom: -12px;
  user-select: none;
}
.nl-inner { max-width: 600px; margin: 0 auto; position: relative; z-index: 1; }
.nl-inner .eyebrow { margin-bottom: 18px; }
.nl-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.15;
  margin-bottom: 16px;
}
.nl-inner h2 em { font-style: italic; color: var(--purple-mid); }
.nl-rule-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.nl-rule-wrap .rule { width: 36px; }
.nl-diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.nl-inner .sub {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 44px;
  line-height: 1.75;
}
.nl-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(58,31,93,.18);
  margin-bottom: 0;
  overflow: hidden;
  background: var(--linen);
}
.nl-fields input {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(58,31,93,.12);
  outline: none;
  padding: 18px 22px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: .96rem;
  color: var(--ink);
  width: 100%;
}
.nl-fields input::placeholder { color: var(--muted); }
.nl-form-row {
  display: flex;
  border-top: 1px solid rgba(58,31,93,.18);
  overflow: hidden;
}
.nl-form-row input {
  flex: 1;
  background: var(--linen);
  border: none;
  border-right: 1px solid rgba(58,31,93,.12);
  outline: none;
  padding: 18px 22px;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: .96rem;
  color: var(--ink);
}
.nl-form-row input::placeholder { color: var(--muted); }
.nl-form-row button {
  background: var(--purple);
  color: var(--ivory);
  font-family: var(--ff-sans);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 18px 30px;
  white-space: nowrap;
  transition: background .35s;
  flex-shrink: 0;
}
.nl-form-row button:hover { background: var(--purple-mid); }
.nl-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 36px;
}
.nl-socials-label {
  font-family: var(--ff-sans);
  font-size: .55rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 6px;
}
.nl-soc-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(58,31,93,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: .75rem;
  transition: all .35s;
  background: var(--linen);
}
.nl-soc-link:hover {
  background: var(--purple);
  color: var(--ivory);
  border-color: var(--purple);
}
.nl-promise {
  margin-top: 20px;
  font-family: var(--ff-sans);
  font-size: .58rem;
  letter-spacing: .12em;
  color: var(--muted);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .nl { padding: 80px 24px; }
  .nl-fields { grid-template-columns: 1fr; }
  .nl-fields input { border-right: none; border-bottom: 1px solid rgba(58,31,93,.12); }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
  background: var(--navy-deep);
  padding: 40px 56px 0;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--gold), var(--purple), transparent) 1;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,74,.3), rgba(58,31,93,.4), transparent);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(249,245,239,.04);
}
.footer-brand .fb-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 10px;
  letter-spacing: .04em;
}
.footer-brand .fb-name span { color: var(--gold); }
.footer-brand .fb-tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(249,245,239,.8);
  font-size: .95rem;
  line-height: 1.8;
  max-width: 230px;
  margin-bottom: 28px;
}
.footer-brand .fb-faith {
  font-family: var(--ff-sans);
  font-size: .55rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-brand .fb-faith::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-dim);
}
.footer-col h5 {
  font-family: var(--ff-sans);
  font-size: .52rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,162,74,.15);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li button,
.footer-col ul li a {
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 300;
  color: rgba(249,245,239,.8);
  transition: color .3s, padding-left .3s;
  display: inline-block;
  letter-spacing: .04em;
}
.footer-col ul li button:hover,
.footer-col ul li a:hover {
  color: rgba(249,245,239,.8);
  padding-left: 6px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-soc {
  width: 32px; height: 32px;
  border: 1px solid rgba(249,245,239,.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(249,245,239,.3);
  font-size: .7rem;
  transition: all .35s;
}
.footer-soc:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .14em;
  color: rgba(249,245,239,.8);
  font-weight: 300;
}

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 28px; }
  footer { padding: 36px 24px 0; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px 18px; padding-bottom: 24px; }
  /* Brand row: logo on left, tagline + faith + socials on right */
  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 16px;
    align-items: start;
  }
  .footer-logo-img { height: 66px; grid-row: 1 / 4; }
  .footer-brand .fb-tagline { margin-bottom: 8px; }
  /* Navigate + Visit Us sit side by side in the two columns */
  .footer-col:last-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════
   MENU PAGE
═══════════════════════════════════════════════════════ */
.pg-menu {
  background: var(--linen);
  min-height: 100vh;
}

/* Page hero — shared across inner pages */
.page-hero {
  background: var(--navy-deep);
  padding: 150px 56px 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* Pastry photo background */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/img_011.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.page-hero-bg.loaded { transform: scale(1); }

/* Menu hero — photo-free, royal treatment: purple spotlight + gold crown watermark */
#menu-hero-bg {
  background:
    radial-gradient(ellipse 78% 92% at 50% 22%, rgba(107,61,154,.5) 0%, transparent 62%),
    linear-gradient(180deg, #241238 0%, #140a26 55%, #0e0620 100%);
  transform: none;
}
#menu-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/images/qbi-crown-gold.png') no-repeat center 34% / 210px auto;
  opacity: .12;
  mix-blend-mode: screen;
  pointer-events: none;
}
@media (max-width: 700px) {
  #menu-hero-bg::after { background-size: 150px auto; }
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(9,14,24,.75) 0%, rgba(9,14,24,.55) 50%, rgba(9,14,24,.82) 100%),
    radial-gradient(ellipse 80% 100% at 50% -10%, rgba(58,31,93,.6) 0%, transparent 65%);
}
.page-hero-inner {
  position: relative;
  z-index: 3;
}
.page-hero .eyebrow { margin-bottom: 20px; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 500;
  line-height: .9;
  color: var(--ivory);
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); }
.page-hero-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.page-hero-rule span { width: 40px; height: 1px; background: rgba(201,162,74,.3); display: block; }
.page-hero-rule i { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); display: block; opacity: .5; }
.page-hero p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(249,245,239,.82);
  font-weight: 500;
  font-size: 1.2rem;
}
/* Bottom fade into page */
.page-hero-fade {
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 120px; z-index: 4;
  background: linear-gradient(180deg, transparent, var(--linen));
}

/* Tab navigation */
.tab-nav {
  background: var(--cream);
  border-bottom: 1px solid rgba(58,31,93,.08);
  display: flex;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  font-family: var(--ff-sans);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  padding: 20px 28px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all .3s;
  flex-shrink: 0;
  position: relative;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: left .35s var(--ease-out), right .35s var(--ease-out);
}
.tab-btn.on { color: var(--purple-deep); }
.tab-btn.on::after { left: 0; right: 0; }
.tab-btn:hover:not(.on) { color: var(--ink); }

/* Menu body */
.menu-body-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 56px 120px;
}
.menu-cat { display: none; }
.menu-cat.on { display: block; }

/* Category header */
.mcat-head {
  text-align: center;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(58,31,93,.07);
  position: relative;
}
.mcat-head::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--gold);
}
.mcat-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--purple-deep);
  margin: 14px 0 10px;
  letter-spacing: -.01em;
}
.mcat-head p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1.05rem;
}

/* Section divider */
.section-label {
  text-align: center;
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin: 56px 0 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,74,.2), transparent);
}

/* Option chips — for choice lists without prices (foam flavours, milks) */
.opt-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
}
.opt-chip {
  font-family: var(--ff-sans);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--purple-deep);
  background: rgba(58,31,93,.045);
  border: 1px solid rgba(58,31,93,.14);
  border-radius: 999px;
  padding: 9px 20px;
}

/* Menu grid — card style */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.menu-item {
  background: var(--cream);
  border: 1px solid rgba(58,31,93,.06);
  padding: 24px 28px;
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.mi-photo {
  width: calc(100% + 56px);
  margin: -24px -28px 20px;
  height: 220px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.menu-item:hover .mi-photo { transform: scale(1.02); transition: transform .5s ease; }
.menu-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height .4s var(--ease-out);
}
.menu-item:hover { border-color: rgba(201,162,74,.25); box-shadow: 0 4px 24px rgba(58,31,93,.06); transform: translateY(-2px); }
.menu-item:hover::before { height: 100%; }
.mi-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.mi-name {
  font-family: var(--ff-display);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--purple-deep);
  flex-shrink: 0;
}
.mi-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(58,31,93,.15);
  align-self: flex-end;
  margin-bottom: 4px;
}
.mi-price {
  font-family: var(--ff-display);
  font-size: .95rem;
  font-weight: 500;
  color: var(--gold);
  white-space: nowrap;
}
.mi-desc {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--text);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.65;
}
.mi-badge {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: .44rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--purple);
  padding: 4px 10px;
  margin-top: 10px;
}

/* Download CTA */
.menu-dl {
  text-align: center;
  padding-top: 64px;
  margin-top: 64px;
  border-top: 1px solid rgba(58,31,93,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.menu-dl button {
  font-family: var(--ff-sans);
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--purple);
  border: 1px solid rgba(58,31,93,.2);
  padding: 16px 36px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all .35s;
}
.menu-dl button:hover { background: var(--purple); color: var(--ivory); border-color: var(--purple); gap: 18px; }
.menu-dl button::before { content: '↓'; font-size: 1rem; }
.menu-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.menu-qr img {
  width: 120px;
  height: 120px;
  padding: 10px;
  background: var(--ivory);
  border: 1px solid rgba(58,31,93,.12);
}
.menu-qr-label {
  font-family: var(--ff-sans);
  font-size: .52rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}

.pg-footer {
  background: var(--navy);
  padding: 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(184,144,42,.07);
}
.pg-footer .brand-sm {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ivory);
  cursor: pointer;
  letter-spacing: .03em;
}
.pg-footer .brand-sm span { color: var(--gold); }
.pg-footer p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(249,245,239,.25);
  font-size: .82rem;
}

@media (max-width: 700px) {
  .menu-body-wrap { padding: 40px 20px 72px; }
  .menu-grid { grid-template-columns: 1fr; }
  .pg-footer { padding: 28px 24px; }
  /* Tabs: wrap so every tab is visible instead of scrolling off-screen */
  .tab-nav { flex-wrap: wrap; overflow-x: visible; }
  .tab-btn { padding: 13px 15px; font-size: .62rem; letter-spacing: .12em; }
  /* Tighten oversized section spacing on small screens */
  .section-label { margin: 32px 2px 18px; }
  .mcat-head { margin-bottom: 8px; }
  .todays-special { padding: 28px 20px; }
}

/* ═══════════════════════════════════════════════════════
   CAKES PAGE
═══════════════════════════════════════════════════════ */
.pg-cakes { background: var(--linen); min-height: 100vh; }

.form-section {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 56px 100px;
}
.form-preamble {
  text-align: center;
  margin-bottom: 60px;
}
.form-preamble h2 {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--purple-deep);
  margin: 14px 0 12px;
}
.form-preamble p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.form-card {
  border: 1px solid rgba(58,31,93,.12);
  padding: 60px 56px;
  background: var(--white);
  position: relative;
}
.form-card::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(58,31,93,.04);
  pointer-events: none;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 24px; }
.form-row.full { grid-template-columns: 1fr; }
.fg { display: flex; flex-direction: column; gap: 8px; }
.fg label {
  font-family: var(--ff-sans);
  font-size: .52rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--purple);
}
.fg input,
.fg select,
.fg textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(58,31,93,.15);
  outline: none;
  padding: 12px 0;
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: .92rem;
  color: var(--ink);
  transition: border-color .3s;
  -webkit-appearance: none;
}
.fg select option { background: var(--linen); font-style: normal; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-bottom-color: var(--purple); }
.fg textarea { height: 100px; resize: vertical; }
.upload-zone {
  border: 1px dashed rgba(58,31,93,.2);
  padding: 36px;
  text-align: center;
  cursor: pointer;
  transition: border-color .3s, background .3s;
}
.upload-zone:hover { border-color: var(--purple); background: rgba(58,31,93,.02); }
.upload-zone .up-icon { font-size: 1.5rem; color: rgba(58,31,93,.3); margin-bottom: 10px; }
.upload-zone p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--muted);
  font-size: .88rem;
}
.form-submit { margin-top: 10px; }
.form-submit .btn { width: 100%; justify-content: center; }
.form-note {
  text-align: center;
  margin-top: 14px;
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--muted);
  font-size: .78rem;
}

@media (max-width: 640px) {
  .form-section { padding: 48px 24px 80px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 36px 24px; }
}

/* ═══════════════════════════════════════════════════════
   VISIT PAGE
═══════════════════════════════════════════════════════ */
.pg-visit { background: var(--linen); min-height: 100vh; }

.visit-content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 56px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.vi-location .eyebrow { margin-bottom: 16px; }
.vi-location h2 {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--purple-deep);
  margin-bottom: 24px;
}
.addr-block {
  border: 1px solid rgba(58,31,93,.12);
  padding: 24px;
  background: var(--white);
  margin-bottom: 28px;
  display: flex;
  gap: 14px;
}
.addr-pin { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.addr-text h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.addr-text p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--muted);
  font-size: .88rem;
}
.hours-wrap h4 {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid rgba(58,31,93,.06);
}
.hour-day { font-family: var(--ff-sans); font-size: .95rem; font-weight: 300; color: var(--text); }
.hour-time { font-family: var(--ff-serif); font-style: italic; font-size: 1rem; color: var(--muted); }

.vi-reserve .eyebrow { margin-bottom: 16px; }
.vi-reserve h2 {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--purple-deep);
  margin-bottom: 8px;
}
.vi-reserve .rule { margin-bottom: 18px; }
.vi-reserve .sub {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.r-form { display: flex; flex-direction: column; gap: 20px; }
.r-form .fg input,
.r-form .fg select { font-family: var(--ff-sans); font-weight: 300; font-style: normal; font-size: 1rem; }
.r-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

@media (max-width: 900px) {
  .visit-content-wrap { grid-template-columns: 1fr; gap: 56px; padding: 60px 24px 80px; }
}

/* ═══════════════════════════════════════════════════════
   STORY PAGE
═══════════════════════════════════════════════════════ */
.pg-story { background: var(--linen); min-height: 100vh; }

.story-entries {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.story-entry {
  display: grid;
  grid-template-columns: 54% 46%;
  min-height: 640px;
  margin-bottom: 0;
  gap: 0;
  border-bottom: 1px solid rgba(58,31,93,.07);
}
.story-entry.flip {
  direction: rtl;
  grid-template-columns: 46% 54%;
}
.story-entry.flip > * { direction: ltr; }

.se-visual {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.se-scene {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease-out);
}
.se-visual:hover .se-scene { transform: scale(1.04); }
.ses-a {
  background: linear-gradient(145deg, #1a0838 0%, #2d1060 40%, #4a1a80 65%, #2d1060 100%);
}
.ses-b { background: linear-gradient(145deg, #200838 0%, #401080 40%, #7030c8 65%, #401080 100%); }
.ses-c { background: linear-gradient(145deg, #1a0838 0%, #2d0e60 40%, #5020a0 65%, #2d0e60 100%); }
/* Gold edge accent on image */
.story-entry:not(.flip) .se-visual::after,
.story-entry.flip .se-visual::after {
  content: '';
  position: absolute;
  top: 12%; bottom: 12%;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  z-index: 2;
}
.story-entry:not(.flip) .se-visual::after { right: 0; }
.story-entry.flip .se-visual::after { left: 0; }

.se-year {
  position: absolute;
  bottom: 28px; right: 28px;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(249,245,239,.55);
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
  z-index: 2;
}
.se-label {
  position: absolute;
  top: 32px; left: 32px;
  font-family: var(--ff-sans);
  font-size: .5rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(201,162,74,.85);
  z-index: 2;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}
/* Dark overlay on image for label readability */
.se-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,14,24,.35) 0%, transparent 40%, transparent 60%, rgba(9,14,24,.25) 100%);
  z-index: 1;
  pointer-events: none;
}

.se-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 72px;
  position: relative;
  overflow: hidden;
  background: var(--ivory);
}
.story-entry:nth-child(2) .se-text { background: var(--linen); }
.se-text .year-tag {
  font-family: var(--ff-sans);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
  position: relative; z-index: 1;
}
.se-text h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  font-weight: 500;
  line-height: 1.05;
  color: var(--purple-deep);
  margin-bottom: 28px;
  letter-spacing: -.02em;
  position: relative; z-index: 1;
}
.se-text h2 em { font-style: italic; color: var(--purple-mid); }
.se-text p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--purple-deep);
  line-height: 1.8;
  margin-bottom: 12px;
  max-width: 480px;
  position: relative; z-index: 1;
}
/* Gold accent bar */
.se-bar {
  width: 44px; height: 3px;
  background: var(--gold);
  display: block;
  margin-bottom: 22px;
  position: relative; z-index: 1;
}
/* Large watermark chapter number */
.se-num {
  font-family: var(--ff-display);
  font-size: 20rem;
  font-weight: 700;
  color: rgba(58,31,93,.04);
  position: absolute;
  bottom: -48px; right: -12px;
  line-height: 1;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

/* Timeline */
.story-tl {
  background: var(--purple);
  padding: 100px 56px;
}
.tl-head {
  text-align: center;
  margin-bottom: 72px;
}
.tl-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 500;
  color: var(--ivory);
  margin: 14px 0;
}
.tl-head h2 em { font-style: italic; color: var(--gold); }
.tl-track {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  padding-top: 28px;
  overflow-x: auto;
}
.tl-track::before {
  content: '';
  position: absolute;
  top: 40px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(184,144,42,.35) 8%, rgba(184,144,42,.35) 92%, transparent);
}
.tl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 0;
}
.tl-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.tl-content { text-align: center; }
.tl-left, .tl-right, .tl-center { display: none; }
.tl-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(184,144,42,.5);
  flex-shrink: 0;
}
.tl-year {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  text-align: center;
}
.tl-h {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 5px;
}
.tl-p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 500;
  color: rgba(249,245,239,.75);
  font-size: 1.12rem;
  line-height: 1.7;
}

.story-cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1030 60%, #0f1624 100%);
  padding: 120px 56px;
  text-align: center;
  border-top: 1px solid rgba(184,144,42,.18);
}
.story-cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 400;
  color: rgba(249,245,239,.88);
  margin-bottom: 28px;
  letter-spacing: -.015em;
  line-height: 1.05;
}
.story-cta-band h2 em { font-style: italic; color: rgba(201,162,74,.72); font-weight: 400; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.pg-story .page-hero-fade {
  background: linear-gradient(180deg, transparent, var(--navy));
}

@media (max-width: 900px) {
  .story-entries { padding: 60px 24px; }
  .story-entry { grid-template-columns: 1fr; min-height: auto; }
  .se-visual { min-height: 340px; }
  .se-text { padding: 56px 32px; }
  .story-entry.flip { direction: ltr; }
  .story-tl { padding: 80px 24px; }
  .story-cta-band { padding: 80px 24px; }
}

@media (max-width: 540px) {
  /* Vertical timeline */
  .story-tl { padding: 60px 28px; }
  .tl-head { margin-bottom: 48px; }
  .tl-track {
    flex-direction: column;
    overflow-x: visible;
    padding-top: 0;
    gap: 0;
  }
  .tl-track::before {
    top: 0; bottom: 0; left: 18px; right: auto; width: 2px; height: auto;
    background: linear-gradient(180deg, transparent, rgba(184,144,42,.35) 8%, rgba(184,144,42,.35) 92%, transparent);
  }
  .tl-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 40px 0;
    flex: none;
  }
  .tl-item:last-child { padding-bottom: 0; }
  .tl-top {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    margin-right: 20px;
    min-width: 38px;
    padding-top: 2px;
  }
  .tl-dot { flex-shrink: 0; }
  .tl-year {
    font-size: 1rem;
    writing-mode: horizontal-tb;
  }
  .tl-content { text-align: left; }
  .tl-h { font-size: 1rem; margin-bottom: 8px; }
  .tl-p { font-size: .82rem; }

  /* Story entries — stacked card format */
  .story-entries { padding: 0; }
  .story-entry {
    display: block;
    position: static;
    border-bottom: none;
    margin-bottom: 3px;
  }
  .story-entry.flip { direction: ltr; }
  .se-visual {
    min-height: 260px;
    position: relative;
  }
  .se-visual::after { display: none; }
  .se-visual::before {
    background: linear-gradient(180deg,
      rgba(9,14,24,.25) 0%,
      transparent 50%,
      rgba(9,14,24,.15) 100%
    ) !important;
  }
  .se-text {
    position: static;
    background: var(--ivory);
    padding: 32px 24px 36px;
    justify-content: flex-start;
  }
  .story-entry:nth-child(2) .se-text { background: var(--linen); }
  .se-text .year-tag {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: .5rem;
  }
  .se-text h2 {
    color: var(--purple-deep);
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    margin-bottom: 16px;
  }
  .se-text h2 em { color: var(--purple-mid); }
  .se-text p {
    color: var(--text);
    font-size: .84rem;
    line-height: 1.7;
    margin-bottom: 10px;
  }
  .se-text p:last-of-type { margin-bottom: 0; }
  .se-num { display: none; }
  .se-bar { display: none; }
}

/* ── Story founder quote ── */
.story-founder-quote {
  padding: 100px 56px;
  text-align: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.story-founder-quote::before {
  content: '“';
  font-family: var(--ff-display);
  font-size: 16rem;
  color: rgba(58,31,93,.04);
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.sfq-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.sfq-text {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.55;
  margin-bottom: 20px;
}
.sfq-text:last-of-type { margin-bottom: 32px; }
.sfq-attr {
  font-family: var(--ff-sans);
  font-size: .58rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Story values pillars ── */
.story-values {
  background: var(--navy);
  padding: 100px 56px;
}
.sv-head { text-align: center; margin-bottom: 64px; }
.sv-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  color: var(--ivory);
  margin: 14px 0;
  line-height: 1.1;
}
.sv-head h2 em { font-style: italic; color: var(--gold); }
.sv-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  max-width: 1060px;
  margin: 0 auto;
}
.sv-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(201,162,74,.1);
  padding: 52px 40px;
  text-align: center;
  transition: background .4s var(--ease-out);
}
.sv-card:hover { background: rgba(201,162,74,.06); }
.sv-icon { font-size: 2.2rem; margin-bottom: 22px; display: block; color: var(--gold); }
.sv-title {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: .02em;
}
.sv-body {
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 1rem;
  color: rgba(247,242,232,.78);
  line-height: 1.85;
}

/* ── Story letter ── */
.story-letter {
  background: var(--parchment);
  padding: 110px 56px;
}
.sl-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 72px; }
.sl-text { flex: 1; min-width: 0; }
.sl-photo { flex: 0 0 420px; aspect-ratio: 3 / 4; height: auto; background: var(--purple-pale, #ede8f5); border-radius: 12px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.sl-photo img { width: 100%; height: 100%; object-fit: contain; display: block; }
.sl-photo-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--purple-mid); opacity: .5; font-family: var(--ff-sans); font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; }
.sl-photo-placeholder svg { width: 48px; height: 48px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.sl-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.15;
  margin-bottom: 36px;
}
.sl-inner h2 em { font-style: italic; color: var(--purple-mid); }
.sl-inner p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.85;
  margin-bottom: 20px;
}
.sl-sig {
  font-family: var(--ff-display);
  font-size: 1.9rem;
  font-style: italic;
  color: var(--purple);
  margin-top: 36px;
  display: block;
}

/* Story narrative — long-form personal content */
.story-narrative {
  background: var(--linen);
  padding: 100px 56px;
}
.sn-inner {
  max-width: 740px;
  margin: 0 auto;
}
.sn-section {
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid rgba(58,31,93,.1);
}
.sn-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.sn-heading {
  font-family: var(--ff-sans);
  font-size: .58rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.sn-heading::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}
.sn-section p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
}
.sn-section p:last-child { margin-bottom: 0; }
.sn-section p.normal {
  font-style: normal;
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--muted);
}

@media (max-width: 900px) {
  .story-narrative { padding: 72px 24px; }
  .sn-section { padding-bottom: 48px; margin-bottom: 48px; }
  .sv-grid { grid-template-columns: 1fr; }
  .story-founder-quote { padding: 72px 24px; }
  .story-values { padding: 72px 24px; }
  .story-letter { padding: 72px 24px; }
  .sl-inner { flex-direction: column; gap: 40px; }
  .sl-photo { flex: none; width: 100%; height: auto; aspect-ratio: 3 / 4; max-width: 380px; margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════
   TOAST
═══════════════════════════════════════════════════════ */
#toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--purple);
  color: var(--ivory);
  font-family: var(--ff-sans);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 15px 36px;
  z-index: 999;
  opacity: 0;
  transition: opacity .4s, transform .45s var(--ease-out);
  white-space: nowrap;
  pointer-events: none;
}


/* ── Announcement bar ── */
#announce-bar {
  background: var(--navy);
  border-bottom: 1px solid rgba(201,162,74,.2);
  color: rgba(249,245,239,.82);
  font-family: var(--ff-sans);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 56px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 201;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: height .3s ease, padding .3s ease, opacity .3s ease;
}
#announce-bar.hidden { height: 0; padding: 0; opacity: 0; overflow: hidden; }
#announce-bar .ab-text em { color: var(--gold); font-style: normal; }
#announce-bar .ab-close {
  position: absolute; right: 18px;
  background: none; border: none; cursor: pointer;
  color: rgba(249,245,239,.4); font-size: .9rem; line-height: 1;
  padding: 4px 6px;
  transition: color .2s;
}
#announce-bar .ab-close:hover { color: var(--gold); }

/* ── Cookie banner ── */
#cookie-banner {
  position: fixed;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  background: var(--purple);
  border: 1px solid rgba(201,162,74,.25);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 9999;
  max-width: 680px;
  width: calc(100% - 48px);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  transition: opacity .4s ease, transform .4s ease;
}
#cookie-banner.hidden { opacity: 0; transform: translateX(-50%) translateY(20px); pointer-events: none; }
#cookie-banner p {
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: rgba(249,245,239,.7);
  line-height: 1.6;
  margin: 0; flex: 1;
}
#cookie-banner p a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 6px;
  font-family: var(--ff-sans); font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; padding: 9px 18px; cursor: pointer;
  white-space: nowrap; transition: opacity .2s;
}
.cookie-accept:hover { opacity: .85; }
.cookie-decline {
  background: transparent; color: rgba(249,245,239,.45);
  border: 1px solid rgba(249,245,239,.15); border-radius: 6px;
  font-family: var(--ff-sans); font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 14px; cursor: pointer; white-space: nowrap;
  transition: color .2s, border-color .2s;
}
.cookie-decline:hover { color: var(--ivory); border-color: rgba(249,245,239,.3); }

/* ── Page transitions ── */
.page { opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.page.active { opacity: 1; pointer-events: auto; }

/* ── Newsletter strip ── */
.footer-newsletter {
  border-top: 1px solid rgba(201,162,74,.12);
  padding: 32px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.fn-copy h4 {
  font-family: var(--ff-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -.01em;
  margin-bottom: 6px;
}
.fn-copy h4 em { font-style: italic; color: var(--gold); }
.fn-copy p {
  font-family: var(--ff-sans);
  font-size: .75rem;
  color: rgba(249,245,239,.45);
  letter-spacing: .04em;
}
.fn-form { display: flex; gap: 0; flex-shrink: 0; }
.fn-input {
  background: rgba(249,245,239,.06);
  border: 1px solid rgba(201,162,74,.2);
  border-right: none;
  border-radius: 6px 0 0 6px;
  color: var(--ivory);
  font-family: var(--ff-sans);
  font-size: .8rem;
  padding: 12px 18px;
  width: 240px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.fn-input::placeholder { color: rgba(249,245,239,.3); }
.fn-input:focus { border-color: rgba(201,162,74,.5); background: rgba(249,245,239,.09); }
.fn-submit {
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 0 6px 6px 0;
  font-family: var(--ff-sans); font-size: .65rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 12px 22px; cursor: pointer; white-space: nowrap;
  transition: opacity .2s;
}
.fn-submit:hover { opacity: .85; }
@media (max-width: 900px) {
  .footer-newsletter { padding: 26px 24px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .fn-form { width: 100%; }
  .fn-input { flex: 1; width: auto; }
}


/* ── Today's Special ── */
.todays-special {
  background: linear-gradient(135deg, var(--navy) 0%, #1a0a3a 100%);
  border-bottom: 1px solid rgba(201,162,74,.15);
  padding: 40px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.ts-badge {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-sans);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 3px;
  flex-shrink: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.ts-content { flex: 1; }
.ts-label {
  font-family: var(--ff-sans);
  font-size: .52rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.ts-headline { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; margin-bottom: 8px; }
.ts-name {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -.01em;
}
.ts-name em { font-style: italic; color: var(--gold); }
.ts-desc {
  font-family: var(--ff-serif);
  font-style: italic;
  color: rgba(249,245,239,.55);
  font-size: .92rem;
  line-height: 1.6;
}
.ts-price {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--gold);
  flex-shrink: 0;
}
.ts-tags { display: flex; gap: 8px; margin-top: 12px; }
.ts-tag {
  font-family: var(--ff-sans);
  font-size: .5rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(201,162,74,.3);
  color: rgba(249,245,239,.6);
}
/* ── Allergen filter ── */
.allergen-filter {
  padding: 18px 56px;
  background: var(--cream);
  border-bottom: 1px solid rgba(58,31,93,.06);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.af-label {
  font-family: var(--ff-sans);
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--purple);
  margin-right: 4px;
}
.af-btn {
  font-family: var(--ff-sans);
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid rgba(58,31,93,.18);
  background: transparent;
  color: var(--purple);
  cursor: pointer;
  transition: all .2s;
}
.af-btn.on {
  background: var(--purple);
  color: var(--ivory);
  border-color: var(--purple);
}
.af-btn:hover:not(.on) { border-color: var(--purple); }
@media (max-width: 900px) {
  .todays-special { flex-direction: column; align-items: center; text-align: center; padding: 32px 24px; gap: 12px; }
  .ts-badge { writing-mode: horizontal-tb; transform: none; }
  .ts-content { text-align: center; }
  .ts-headline { justify-content: center; align-items: baseline; gap: 16px; }
  .allergen-filter { padding: 16px 24px; }
}
/* Seasonal notice */
.seasonal-notice {
  background: linear-gradient(90deg, rgba(184,144,42,.08), rgba(184,144,42,.03));
  border-left: 3px solid var(--gold);
  margin: 0 56px 32px;
  padding: 14px 20px;
  border-radius: 0 6px 6px 0;
}
.seasonal-notice p {
  font-family: var(--ff-sans);
  font-size: .72rem;
  color: var(--text);
  line-height: 1.5;
}
.seasonal-notice strong { color: var(--purple-deep); }
@media (max-width: 900px) { .seasonal-notice { margin: 0 24px 24px; } }


/* ── Cake gallery ── */
.cake-gallery {
  padding: 80px 56px 0;
  background: var(--linen);
}
.cg-head {
  text-align: center;
  margin-bottom: 48px;
}
.cg-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--purple-deep);
  letter-spacing: -.02em;
}
.cg-head h2 em { font-style: italic; color: var(--purple-mid); }
.cg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.cg-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: var(--navy);
}
.cg-item:first-child { grid-column: span 2; grid-row: span 2; }
.cg-item:last-child { grid-column: span 2; }
.cg-thumb {
  width: 100%; height: 100%;
  min-height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease-out);
}
.cg-item:first-child .cg-thumb { min-height: 440px; }
.cg-item:hover .cg-thumb { transform: scale(1.05); }
.cg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,22,36,.75));
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.cg-item:hover .cg-overlay { opacity: 1; }
.cg-caption {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--ivory);
  font-style: italic;
}

/* Gallery placeholder tiles */
.cg-ph { background-size: cover; background-position: center; }
.cg-ph-a { background: linear-gradient(135deg,#1a0838,#4a1a80); }
.cg-ph-b { background: linear-gradient(135deg,#0a1428,#1a3060); }
.cg-ph-c { background: linear-gradient(135deg,#2a0828,#6030a0); }
.cg-ph-d { background: linear-gradient(135deg,#1a1428,#3a2060); }
.cg-ph-e { background: linear-gradient(135deg,#0a1820,#1a4040); }
.cg-ph-icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(201,162,74,.15);
}
.cg-item:first-child .cg-ph-icon { font-size: 4.5rem; }

/* ── Pricing guide ── */
.cake-pricing {
  padding: 80px 56px;
  background: var(--linen);
  border-top: 1px solid rgba(58,31,93,.07);
}
.cp-head {
  text-align: center;
  margin-bottom: 52px;
}
.cp-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--purple-deep);
  letter-spacing: -.02em;
}
.cp-head h2 em { font-style: italic; color: var(--purple-mid); }
.cp-head p {
  font-family: var(--ff-sans);
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 12px;
}
.cp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.cp-card {
  background: var(--ivory);
  border: 1px solid rgba(58,31,93,.08);
  border-radius: 8px;
  padding: 36px 32px;
  text-align: center;
  position: relative;
  transition: box-shadow .3s, transform .3s;
}
.cp-card.featured {
  background: var(--navy);
  border-color: rgba(201,162,74,.3);
  box-shadow: 0 8px 40px rgba(0,0,0,.15);
}
.cp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(58,31,93,.12); }
.cp-card.featured:hover { box-shadow: 0 16px 48px rgba(0,0,0,.25); }
.cp-featured-label {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-family: var(--ff-sans);
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}
.cp-tier {
  font-family: var(--ff-sans);
  font-size: .55rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.cp-price {
  font-family: var(--ff-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--purple-deep);
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.cp-card.featured .cp-price { color: var(--ivory); }
.cp-serves {
  font-family: var(--ff-sans);
  font-size: .68rem;
  color: rgba(58,31,93,.4);
  margin-bottom: 20px;
}
.cp-card.featured .cp-serves { color: rgba(249,245,239,.4); }
.cp-divider { width: 32px; height: 1px; background: rgba(201,162,74,.3); margin: 0 auto 20px; }
.cp-list {
  list-style: none; padding: 0; margin: 0;
  font-family: var(--ff-sans);
  font-size: .74rem;
  color: var(--text);
  line-height: 1;
}
.cp-card.featured .cp-list { color: rgba(249,245,239,.65); }
.cp-list li {
  padding: 7px 0;
  border-bottom: 1px solid rgba(58,31,93,.05);
  display: flex; align-items: center; gap: 8px;
}
.cp-card.featured .cp-list li { border-bottom-color: rgba(249,245,239,.06); }
.cp-list li::before { content: '✦'; color: var(--gold); font-size: .45rem; flex-shrink: 0; }
.cp-note {
  text-align: center;
  margin-top: 32px;
  font-family: var(--ff-sans);
  font-size: .72rem;
  color: var(--text-light);
  font-style: italic;
}



/* ── FAQ accordion ── */
.cake-faq {
  padding: 80px 56px;
  background: var(--ivory);
}
.faq-head {
  text-align: center;
  margin-bottom: 48px;
}
.faq-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: var(--purple-deep);
  letter-spacing: -.02em;
}
.faq-head h2 em { font-style: italic; color: var(--purple-mid); }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(58,31,93,.1);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--purple-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
}
.faq-q:hover { color: var(--purple); }
.faq-q.open { color: var(--purple); }
.faq-icon {
  font-size: .9rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
  line-height: 1;
}
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open { max-height: 300px; padding-bottom: 20px; }
.faq-a p {
  font-family: var(--ff-sans);
  font-size: .82rem;
  color: var(--text);
  line-height: 1.85;
}

@media (max-width: 900px) {
  .cake-gallery { padding: 60px 24px 0; }
  .cg-grid { grid-template-columns: 1fr 1fr; }
  .cg-item:first-child { grid-column: span 2; }
  .cg-item:nth-child(4) { grid-column: span 2; }
  .cake-pricing { padding: 60px 24px; }
  .cp-grid { grid-template-columns: 1fr; }
  .cake-faq { padding: 60px 24px; }
}


/* ── Press strip ── */
.story-press {
  background: var(--ivory);
  padding: 56px 56px;
  border-top: 1px solid rgba(58,31,93,.07);
  text-align: center;
}
.story-press .eyebrow { margin-bottom: 28px; display: block; }
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.press-logo {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(58,31,93,.22);
  letter-spacing: -.01em;
  font-style: italic;
  transition: color .25s;
  cursor: default;
  user-select: none;
}
.press-logo:hover { color: rgba(58,31,93,.45); }

/* ── Meet the Team ── */
.story-team {
  background: var(--linen);
  padding: 100px 56px;
}
.team-head {
  text-align: center;
  margin-bottom: 64px;
}
.team-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--purple-deep);
  letter-spacing: -.02em;
}
.team-head h2 em { font-style: italic; color: var(--purple-mid); }
.team-head p {
  font-family: var(--ff-sans);
  font-size: .8rem;
  color: var(--text-light);
  margin-top: 14px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
  line-height: 1.7;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.team-card {
  text-align: center;
  background: var(--ivory);
  border: 1px solid rgba(58,31,93,.12);
  border-radius: 6px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(58,31,93,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(58,31,93,.12);
}
.team-avatar {
  width: 140px; height: 140px;
  border-radius: 50%;
  margin: 0 auto 22px;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(201,162,74,.25);
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.team-avatar-initials {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: rgba(201,162,74,.6);
  font-style: italic;
}
.team-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--purple-deep);
  margin-bottom: 4px;
}
.team-role {
  font-family: var(--ff-sans);
  font-size: .52rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.team-bio {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.75;
}

/* ── Visit: map + live hours ── */
.vi-map-block {
  margin-top: 32px;
}
.map-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a1040 100%);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(201,162,74,.15);
  cursor: pointer;
  transition: opacity .2s;
  text-decoration: none;
}
.map-placeholder:hover { opacity: .85; }
.map-pin-icon {
  font-size: 2.2rem;
  filter: drop-shadow(0 4px 12px rgba(201,162,74,.4));
}
.map-cta-text {
  font-family: var(--ff-sans);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(249,245,239,.55);
}
.map-address {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--ivory);
  font-style: italic;
  text-align: center;
}
/* Live hours status */
.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--ff-sans);
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hs-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,.5);
}
.hs-dot.closed { background: rgba(249,245,239,.2); box-shadow: none; }
.hs-text { color: var(--text-light); }
.hs-text strong { color: var(--purple-deep); }

@media (max-width: 900px) {
  .story-press { padding: 48px 24px; }
  .press-logos { gap: 28px; }
  .story-team { padding: 72px 24px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .story-team { padding: 56px 20px; }
  .team-head { margin-bottom: 36px; }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }
  .team-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
    padding: 22px 20px;
  }
  .team-avatar {
    width: 72px; height: 72px;
    flex-shrink: 0;
    margin: 0;
  }
  .team-avatar-initials { font-size: 1.5rem; }
  .team-info { flex: 1; }
  .team-name { font-size: 1.05rem; margin-bottom: 2px; }
  .team-role { margin-bottom: 8px; }
  .team-bio { font-size: .76rem; }
}


/* ── FAQ + Form side-by-side ── */
.faq-form-wrap {
  background: var(--navy);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.faq-form-wrap .cake-faq {
  background: transparent;
  padding: 80px 56px;
  border-right: 1px solid rgba(201,162,74,.12);
}
.faq-form-wrap .cake-faq .faq-head h2 { color: var(--ivory); }
.faq-form-wrap .cake-faq .faq-q { color: var(--ivory); }
.faq-form-wrap .cake-faq .faq-q:hover { color: var(--gold); }
.faq-form-wrap .cake-faq .faq-q.open { color: var(--gold); }
.faq-form-wrap .cake-faq .faq-a p { color: rgba(249,245,239,.6); }
.faq-form-wrap .cake-faq .faq-item { border-bottom-color: rgba(201,162,74,.12); }
.faq-form-wrap .form-section {
  max-width: 100%;
  padding: 80px 56px;
  margin: 0;
}
.faq-form-wrap .form-preamble h2 { color: var(--ivory); }
.faq-form-wrap .form-preamble p { color: rgba(249,245,239,.55); }
.faq-form-wrap .form-card {
  background: rgba(249,245,239,.05);
  border-color: rgba(201,162,74,.18);
}
.faq-form-wrap .form-card::before { border-color: rgba(201,162,74,.06); }
.faq-form-wrap .fg label { color: rgba(201,162,74,.8); }
.faq-form-wrap .fg input,
.faq-form-wrap .fg select,
.faq-form-wrap .fg textarea {
  background: rgba(249,245,239,.07);
  border-color: rgba(201,162,74,.18);
  color: var(--ivory);
}
.faq-form-wrap .fg input::placeholder,
.faq-form-wrap .fg textarea::placeholder { color: rgba(249,245,239,.3); }
.faq-form-wrap .form-note { color: rgba(249,245,239,.4); }
.faq-form-wrap .eyebrow { color: var(--gold) !important; }
@media (max-width: 900px) {
  .faq-form-wrap { grid-template-columns: 1fr; }
  .faq-form-wrap .cake-faq { border-right: none; border-bottom: 1px solid rgba(201,162,74,.12); padding: 60px 24px; }
  .faq-form-wrap .form-section { padding: 60px 24px; }
}


/* ── Scroll hint on sig-strip ── */
.sig-strip-wrap { position: relative; }
.scroll-hint {
  position: absolute;
  bottom: 28px; right: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  animation: hintFade 4s ease 2s forwards;
}
@keyframes hintFade {
  0%   { opacity: 0; transform: translateX(12px); }
  20%  { opacity: 1; transform: translateX(0); }
  80%  { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-8px); }
}
.scroll-hint-text {
  font-family: var(--ff-sans);
  font-size: .5rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(249,245,239,.75);
}
.scroll-hint-arrow { display: flex; gap: 4px; }
.scroll-hint-arrow span {
  width: 7px; height: 7px;
  border-right: 2px solid rgba(201,162,74,.9);
  border-top: 2px solid rgba(201,162,74,.9);
  transform: rotate(45deg);
  display: block;
}
.scroll-hint-arrow span:nth-child(2) { opacity: .55; }
.scroll-hint-arrow span:nth-child(3) { opacity: .25; }
.strip-progress {
  height: 2px;
  background: rgba(58,31,93,.1);
}
.strip-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  width: 0%;
  transition: width .1s linear;
}

/* ═══════════════════════════════════════════════════════
   EXPERIENCES PAGE
═══════════════════════════════════════════════════════ */
.pg-experiences { background: var(--linen); min-height: 100vh; }

.exp-grid-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px 100px;
}
.exp-grid-header {
  text-align: center;
  margin-bottom: 64px;
}
.exp-grid-header .eyebrow { margin-bottom: 16px; }
.exp-grid-header h2 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--purple-deep);
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.exp-grid-header h2 em { font-style: italic; color: var(--gold); }
.exp-grid-header p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.exp-tile {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--white);
  border: 1px solid rgba(58,31,93,.08);
  overflow: hidden;
  position: relative;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
  min-height: 320px;
}
.exp-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width .5s var(--ease-out);
  z-index: 3;
}
.exp-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(58,31,93,.16);
  border-color: rgba(201,162,74,.3);
}
.exp-tile:hover::before { width: 100%; }
.exp-tile-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: .02em;
  z-index: 2;
  opacity: .85;
}
.exp-tile-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease-out);
  position: relative;
}
.exp-tile-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(58,31,93,.08));
}
.exp-tile:hover .exp-tile-photo { transform: scale(1.06); }
.exp-tile-body {
  padding: 36px 32px 36px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.exp-tile-body .eyebrow {
  margin-bottom: 12px;
  font-size: .58rem;
  letter-spacing: .22em;
  color: var(--gold);
}
.exp-tile-body h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  font-weight: 500;
  color: var(--purple-deep);
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 14px;
}
.exp-tile-body h3 em { font-style: italic; color: var(--gold); }
.exp-tile-body p {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: .9rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 22px;
}
.exp-tile-body .btn { align-self: flex-start; }

@media (max-width: 900px) {
  .exp-grid { grid-template-columns: 1fr; gap: 24px; }
  .exp-tile { grid-template-columns: 1fr; min-height: 0; }
  .exp-tile-photo { aspect-ratio: 16/10; height: auto; }
  .exp-tile-body { padding: 28px 24px 32px; }
  .exp-grid-wrap { padding: 60px 24px 80px; }
}
@media (max-width: 540px) {
  .exp-grid { grid-template-columns: 1fr; gap: 16px; }
  .exp-tile-photo { aspect-ratio: 16/9; }
}


#back-to-top {
  position: fixed;
  bottom: 96px;
  right: 36px;
  z-index: 300;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--purple);
  color: var(--ivory);
  border: 1px solid rgba(201,162,74,.25);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s var(--ease-out), transform .4s var(--ease-out), background .3s;
  pointer-events: none;
}
#back-to-top.btt-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#back-to-top:hover {
  background: var(--purple-mid);
}

/* ── Accessibility widget ─────────────────────────────── */
#a11y { position: fixed; bottom: 36px; right: 36px; z-index: 320; font-family: var(--ff-sans); }
#a11y-toggle {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--purple); color: var(--ivory);
  border: 1px solid rgba(201,162,74,.4);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,.3);
  transition: background .3s, transform .3s;
}
#a11y-toggle:hover { background: var(--purple-hi); transform: translateY(-2px); }
/* Hide floating buttons while the full-screen mobile menu is open */
#mm.open ~ #back-to-top, #mm.open ~ #a11y { opacity: 0; pointer-events: none; }
#a11y-toggle svg { width: 26px; height: 26px; fill: currentColor; }
#a11y-panel {
  position: absolute; bottom: 60px; right: 0;
  width: 340px; background: #fff; color: var(--purple-deep);
  border-radius: 14px; box-shadow: 0 16px 44px rgba(20,10,38,.3);
  padding: 14px; border: 1px solid rgba(58,31,93,.1);
  border-top: 3px solid var(--purple);
  overflow: hidden;
  opacity: 0; transform: translateY(10px) scale(.98);
  pointer-events: none; transition: opacity .2s, transform .2s;
}
#a11y-panel.open { opacity: 1; transform: none; pointer-events: auto; }
.a11y-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 500;
  color: #fff; background: var(--purple);
  margin: -14px -14px 14px; padding: 13px 16px;
}
.a11y-head button { background: none; border: none; cursor: pointer; color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1; transition: color .2s; }
.a11y-head button:hover { color: #fff; }
.a11y-body { max-height: 60vh; overflow-y: auto; overflow-x: hidden; margin: 0 -4px; padding: 0 4px; }
.a11y-body::-webkit-scrollbar { width: 6px; }
.a11y-body::-webkit-scrollbar-thumb { background: rgba(58,31,93,.2); border-radius: 3px; }
.a11y-sec-label { font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dim); font-weight: 600; margin: 14px 4px 8px; }
.a11y-sec-label:first-child { margin-top: 2px; }
.a11y-stepper { display: flex; align-items: center; gap: 8px; background: rgba(58,31,93,.04); border-radius: 10px; padding: 7px; }
.a11y-step { width: 40px; height: 40px; flex-shrink: 0; border-radius: 8px; border: 1px solid rgba(58,31,93,.15); background: #fff; color: var(--purple); font-size: 1.3rem; font-weight: 700; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.a11y-step:hover { background: var(--purple); color: #fff; }
.a11y-step-val { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--ff-sans); font-weight: 600; font-size: .9rem; color: var(--purple-deep); }
.a11y-step-t { font-family: var(--ff-display); font-size: 1.15rem; color: var(--purple); }
.a11y-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.a11y-opt-wide { grid-column: 1 / -1; flex-direction: row; justify-content: flex-start; gap: 11px; text-align: left; padding: 11px 14px; }
.a11y-collapse {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  background: rgba(58,31,93,.05); border: 1px solid rgba(58,31,93,.1); border-radius: 10px;
  padding: 12px 14px; cursor: pointer; margin-bottom: 4px;
  font-family: var(--ff-sans); font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--purple-deep);
  transition: background .2s;
}
.a11y-collapse:hover { background: rgba(58,31,93,.09); }
.a11y-chev { color: var(--purple-mid); transform: rotate(-90deg); transition: transform .2s; flex-shrink: 0; }
.a11y-collapse[aria-expanded="true"] .a11y-chev { transform: rotate(0); }
.a11y-profiles { display: flex; flex-direction: column; gap: 7px; margin: 8px 0 4px; }
.a11y-profiles[hidden] { display: none; }
.a11y-profile {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: rgba(58,31,93,.04); border: 1px solid transparent; border-radius: 10px;
  padding: 10px 12px; cursor: pointer; transition: background .2s, border-color .2s;
}
.a11y-profile:hover { background: rgba(58,31,93,.08); }
.a11y-profile.on { background: rgba(58,31,93,.1); border-color: var(--gold); }
.a11y-pf-ic { width: 32px; height: 32px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--purple); background: rgba(201,162,74,.2); border-radius: 8px; }
.a11y-pf-txt { display: flex; flex-direction: column; line-height: 1.25; }
.a11y-pf-txt strong { font-family: var(--ff-sans); font-weight: 600; font-size: .82rem; color: var(--purple-deep); }
.a11y-pf-txt small { font-family: var(--ff-sans); font-size: .68rem; color: var(--purple-mid); }
.a11y-opt {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; width: 100%;
  background: rgba(58,31,93,.04); border: 1px solid transparent; border-radius: 10px;
  padding: 12px 8px; cursor: pointer; text-align: center;
  font-family: var(--ff-sans); font-size: .76rem; color: var(--purple-deep);
  transition: background .2s, border-color .2s;
}
.a11y-opt:hover { background: rgba(58,31,93,.08); }
.a11y-opt.on { background: rgba(58,31,93,.1); border-color: var(--gold); }
.a11y-ic { width: 30px; height: 30px; display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; color: var(--purple); background: rgba(201,162,74,.2); border-radius: 7px; flex-shrink: 0; }
.a11y-lbl { line-height: 1.25; }
#a11y-reset { margin-top: 12px; width: 100%; background: none; border: 1px solid rgba(58,31,93,.2); border-radius: 9px; padding: 9px; cursor: pointer; font-family: var(--ff-sans); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--purple-mid); transition: border-color .2s, color .2s; }
#a11y-reset:hover { border-color: var(--purple); color: var(--purple-deep); }
/* Reading guide — horizontal ruler that follows the cursor */
#a11y-guide { position: fixed; left: 0; right: 0; height: 44px; z-index: 315; pointer-events: none; display: none;
  border-top: 2px solid rgba(201,162,74,.9); border-bottom: 2px solid rgba(201,162,74,.9);
  background: rgba(20,10,38,.06); box-shadow: 0 0 0 100vmax rgba(20,10,38,.02); }
html.a11y-guide #a11y-guide { display: block; }
/* Colour-filter overlay — applies contrast/saturation to the page (via
   backdrop-filter) without breaking fixed positioning; sits below the widget. */
#a11y-filter { position: fixed; inset: 0; z-index: 310; pointer-events: none; display: none; }
html.a11y-colour #a11y-filter { display: block; }
@media (max-width: 640px) {
  #a11y { bottom: 16px; right: 16px; }
  #a11y-panel {
    position: fixed; left: 14px; right: 14px; bottom: 76px; width: auto;
    max-height: calc(100vh - 92px); max-height: calc(100dvh - 92px);
    display: flex; flex-direction: column;
  }
  #a11y-panel .a11y-head, #a11y-panel #a11y-reset { flex-shrink: 0; }
  #a11y-panel .a11y-body { max-height: none; flex: 1 1 auto; min-height: 0; }
}

/* Accessibility modes (toggled on <html>) */
html.a11y-size-1 { font-size: 18px; }
html.a11y-size-2 { font-size: 20px; }
html.a11y-size-3 { font-size: 22px; }
html.a11y-size-4 { font-size: 24px; }
html.a11y-readable * { font-family: Arial, "Segoe UI", system-ui, sans-serif !important; font-style: normal !important; }
html.a11y-readable body, html.a11y-readable p, html.a11y-readable li { line-height: 1.9 !important; }
html.a11y-linespace body, html.a11y-linespace p, html.a11y-linespace li,
html.a11y-linespace h1, html.a11y-linespace h2, html.a11y-linespace h3, html.a11y-linespace h4 { line-height: 2.1 !important; }
html.a11y-letterspace body, html.a11y-letterspace p, html.a11y-letterspace li, html.a11y-letterspace a,
html.a11y-letterspace h1, html.a11y-letterspace h2, html.a11y-letterspace h3, html.a11y-letterspace h4 { letter-spacing: .06em !important; word-spacing: .12em !important; }
html.a11y-links a { text-decoration: underline !important; text-underline-offset: 3px; outline: 1px dashed currentColor; outline-offset: 2px; }
html.a11y-titles h1, html.a11y-titles h2, html.a11y-titles h3, html.a11y-titles h4 {
  background: rgba(201,162,74,.16) !important; outline: 1px solid rgba(201,162,74,.5); outline-offset: 3px; border-radius: 3px;
}
html.a11y-bold body, html.a11y-bold p, html.a11y-bold li, html.a11y-bold a, html.a11y-bold span,
html.a11y-bold h1, html.a11y-bold h2, html.a11y-bold h3, html.a11y-bold h4, html.a11y-bold button, html.a11y-bold label, html.a11y-bold em { font-weight: 700 !important; }
html.a11y-align p, html.a11y-align li, html.a11y-align h1, html.a11y-align h2, html.a11y-align h3, html.a11y-align h4 { text-align: left !important; }
html.a11y-cursor, html.a11y-cursor * {
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath d='M6 3 L6 33 L14 25 L20 37 L25 35 L19 23 L30 23 Z' fill='%23140a26' stroke='%23fff' stroke-width='1.6'/%3E%3C/svg%3E") 4 3, auto !important;
}
html.a11y-motion *, html.a11y-motion *::before, html.a11y-motion *::after {
  animation-duration: .001ms !important; animation-iteration-count: 1 !important;
  transition-duration: .001ms !important; scroll-behavior: auto !important;
}

/* Honeypot — visually hidden anti-spam field (humans never see/fill it) */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* ============================================================
   TYPE SYSTEM — normalization layer
   Categorized, readable, uniform-per-category font sizing.
   Appended last so it overrides earlier ad-hoc sizes by source
   order (selectors mirror the originals — no specificity tricks).
   Tweak a category here and it updates everywhere it's used.
   ============================================================ */
:root {
  --fs-display: clamp(2.8rem, 6.5vw, 6rem);   /* hero / page H1            */
  --fs-h1:      clamp(2.3rem, 4.5vw, 3.8rem); /* major section titles     */
  --fs-h2:      clamp(2rem, 3.6vw, 3rem);     /* standard section titles  */
  --fs-h3:      clamp(1.5rem, 2.5vw, 2.1rem); /* subsection titles        */
  --fs-h4:      1.25rem;                       /* card / item titles       */
  --fs-lead:    clamp(1.1rem, 1.6vw, 1.3rem); /* intro / lead paragraphs  */
  --fs-body:    1.05rem;                       /* standard body copy       */
  --fs-body-sm: 0.92rem;                       /* dense / secondary copy   */
  --fs-caption: 0.82rem;                       /* fine print               */
  --fs-button:  0.74rem;                       /* all buttons              */
  --fs-nav:     0.7rem;                        /* nav links                */
  --fs-label:   0.72rem;                       /* uppercase labels / tags  */
  --fs-micro:   0.72rem;                       /* tiny badges (read floor) */
}

/* --- Display --- */
.hero-h1, .page-hero h1 { font-size: var(--fs-display); }

/* --- Heading XL --- */
.sig-head-left h2, .exp-grid-header h2, .story-cta-band h2 { font-size: var(--fs-h1); }

/* --- Heading L --- */
.intro-title, .visit-info h2, .story-text h2, .nl-inner h2, .mcat-head h2,
.tl-head h2, .cg-head h2, .team-head h2, .sv-head h2, .vi-location h2,
.form-preamble h2, .pullquote, .se-text h2 { font-size: var(--fs-h2); }

/* --- Heading M --- */
.exp-tile-body h3, .ss-cta h3, .ts-name, .sl-inner h2, .checkout-head h2,
.cp-head h2, .faq-head h2, .vi-reserve h2, .sv-title { font-size: var(--fs-h3); }

/* --- Card / item titles --- */
.sig-name, .fn-copy h4, .mi-name, .team-name, .cd-title, .tl-h,
.footer-brand .fb-name { font-size: var(--fs-h4); }

/* --- Lead paragraphs --- */
.hero-sub, .visit-info .lead, .story-text p, .sl-inner p, .page-hero p,
.sfq-text { font-size: var(--fs-lead); }

/* --- Body copy --- */
.pillar p, .mi-desc, .faq-q, .sig-head-right, .sn-section p, .nl-inner .sub,
.map-address, .sv-body, .story-text p.normal, .exp-grid-header p,
.form-preamble p { font-size: var(--fs-body); }

/* --- Body, small / dense --- */
.sig-desc, .cs-list li, .addr-text p, .cd-item-name, .faq-a p,
.footer-col ul li a, .vh-time, .exp-tile-body p, .visit-addr, .cd-item-price,
.cd-qty-val, .cs-qty, .cp-list, .tl-p, .upload-zone p, .cd-subtotal,
.cs-total, .cd-item-total, .team-bio, .mi-qty-num, .fn-input, .nl-fields input,
.nl-form-row input, .fg textarea, .cf-field textarea { font-size: var(--fs-body-sm); }

/* --- Captions / fine print --- */
.footer-bottom p, #cookie-banner p, .nl-promise, .cp-note, .seasonal-notice p,
.fn-copy p, .pg-footer p, .form-note, .cf-back, #toast, .hours-status,
.cp-head p, .team-head p { font-size: var(--fs-caption); }

/* --- Buttons --- */
.btn, .nav-reserve, .fn-submit, .cd-checkout, .cf-submit, .cookie-accept,
.cookie-decline, .mi-add-btn, .af-btn, .menu-dl button, .nl-form-row button,
.text-link, .tab-btn { font-size: var(--fs-button); }
.mm-close { font-size: var(--fs-button) !important; }

/* --- Nav --- */
.nav-link { font-size: var(--fs-nav); white-space: nowrap; }

/* --- Eyebrows / labels / tags --- */
.eyebrow, .exp-tile-body .eyebrow, .section-label, .sig-tag, .sig-price,
.cp-tier, .af-label, .ts-label, .ts-tag, .ts-badge, .se-label,
.scroll-hint-text, .team-role, .menu-qr-label, .fg label, .cf-field label,
.footer-col h5, .visit-hours h4, .hours-wrap h4, .nl-socials-label,
.footer-brand .fb-faith, .cp-featured-label, .sn-heading, .sfq-attr, .vh-day,
.cs-title, .cp-serves, .photo-caption, .map-cta-text, .pillar h4,
#announce-bar { font-size: var(--fs-label); }

/* --- Micro badges (readability floor) --- */
.mi-badge, .story-badge .u, .cart-count, .hero-scroll-label,
.se-text .year-tag { font-size: var(--fs-micro); }
