/* ============================================================
   L&C French Bakery — Parisian Editorial Design with Photography
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
button { font-family: inherit; font-size: inherit; }

:root {
  --ivory:    #F8F4EE;
  --ivory-dk: #EDE6D9;
  --charcoal: #1C1612;
  --charcoal2:#2E2520;
  --gold:     #B8965A;
  --gold-lt:  #D4B07A;
  --burgundy: #6B2337;
  --burg-lt:  #8B3350;
  --warm-gray:#7A6F64;
  --border:   rgba(28,22,18,0.12);
  --ease:     cubic-bezier(0.25,0.1,0.25,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--charcoal);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }
em { font-style: italic; }

/* ── NEWSLETTER MODAL ── */
.nl-modal {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(28,22,18,0.75);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn .3s ease;
}
.nl-modal.hidden { display: none !important; }

.nl-inner {
  background: var(--ivory);
  max-width: 480px; width: 100%;
  padding: 56px 48px 44px;
  position: relative;
  animation: slideUp .4s var(--ease);
}

.nl-x {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none;
  font-size: 1.6rem; color: var(--warm-gray);
  cursor: pointer; line-height: 1;
  transition: color .2s, transform .2s;
}
.nl-x:hover { color: var(--charcoal); transform: rotate(90deg); }

.nl-kicker {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.nl-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 900;
  line-height: 1.1; color: var(--charcoal);
  margin-bottom: 1rem;
}
.nl-title em { color: var(--burgundy); }
.nl-body { font-size: .9rem; color: var(--warm-gray); line-height: 1.7; margin-bottom: 1.75rem; }

.nl-form { display: flex; border: 1.5px solid var(--charcoal); }
.nl-form input {
  flex: 1; padding: 12px 16px;
  border: none; outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem; background: #fff;
  color: var(--charcoal);
}
.nl-form button {
  padding: 12px 20px;
  background: var(--charcoal); color: var(--ivory);
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  white-space: nowrap; transition: background .2s;
}
.nl-form button:hover { background: var(--burgundy); }

.nl-ok { display: none; font-size: .85rem; color: var(--gold); font-weight: 500; margin-top: .75rem; }
.nl-ok.show { display: block; }

.nl-skip {
  display: block; margin-top: 1rem;
  background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem; color: var(--warm-gray);
  cursor: pointer; text-decoration: underline;
  transition: color .2s;
}
.nl-skip:hover { color: var(--charcoal); }

/* ── HEADER / MASTHEAD NAV ── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  transition: background .35s var(--ease), box-shadow .35s;
}
#site-header.scrolled {
  background: rgba(248,244,238,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.masthead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1280px; margin: 0 auto;
  padding: 0 36px; height: 68px;
}

.nav-left, .nav-right {
  display: flex; list-style: none; gap: 2px; align-items: center;
}
.nav-right { justify-content: flex-end; }

.masthead a:not(.masthead-logo):not(.nav-cta) {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  padding: 7px 12px;
  transition: color .2s;
}
.masthead a:not(.masthead-logo):not(.nav-cta):hover { color: #fff; }
#site-header.scrolled .masthead a:not(.masthead-logo):not(.nav-cta) { color: var(--warm-gray); }
#site-header.scrolled .masthead a:not(.masthead-logo):not(.nav-cta):hover { color: var(--charcoal); }

.nav-cta {
  font-size: .7rem !important; font-weight: 500 !important;
  letter-spacing: .12em !important; text-transform: uppercase !important;
  color: var(--charcoal) !important;
  background: var(--gold-lt);
  padding: 8px 16px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold) !important; }

.masthead-logo {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  text-decoration: none; line-height: 1.1;
}
.ml-lc {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 900;
  letter-spacing: .04em; color: #fff;
  transition: color .3s;
}
.ml-sub {
  font-size: .55rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
  transition: color .3s;
}
#site-header.scrolled .ml-lc { color: var(--charcoal); }
#site-header.scrolled .ml-sub { color: var(--warm-gray); }

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
  position: absolute; right: 20px; top: 50%; transform: translateY(-50%);
}
.burger span {
  display: block; width: 22px; height: 1.5px;
  background: #fff; transition: all .3s;
}
#site-header.scrolled .burger span { background: var(--charcoal); }

.mobile-nav {
  display: none; flex-direction: column;
  background: var(--ivory);
  padding: 16px 0 24px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 28px;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--warm-gray); border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--charcoal); }

/* ── HERO — photo left / text right ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-left {
  position: relative;
  background-image: url('images/hero-interior.webp');
  background-size: cover;
  background-position: center;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 56px 80px;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 0;
}
.hero-left-inner { position: relative; z-index: 1; }

.hero-kicker {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
}

.hero-wordmark {
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-style: italic;
  font-size: clamp(7rem, 14vw, 11rem);
  line-height: .85; color: #fff;
  display: block; margin-bottom: 1rem;
}
.hw-amp { color: var(--gold); }

.hero-sub-word {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300; color: rgba(255,255,255,.55);
  letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 2.5rem; line-height: 1.4;
}

.hero-rule {
  width: 48px; height: 1px;
  background: var(--gold); margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: 'Cormorant', serif;
  font-style: italic; font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,.75); line-height: 1.55;
}

.hero-right {
  background: var(--ivory);
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 120px 64px 0 56px;
  position: relative; overflow: hidden;
}
.hero-right-inner { max-width: 440px; padding-bottom: 48px; }

.hero-desc {
  font-size: 1.05rem; color: var(--warm-gray);
  line-height: 1.8; margin-bottom: 2rem;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 2.5rem;
}
.hero-badges span {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .08em;
  color: var(--charcoal2);
  border: 1px solid var(--border);
  padding: 5px 13px;
}

.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-dark {
  display: inline-block;
  padding: 13px 28px;
  background: var(--charcoal); color: var(--ivory);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  transition: all .25s;
  cursor: pointer;
}
.btn-dark:hover { background: var(--burgundy); border-color: var(--burgundy); }

.btn-ghost {
  display: inline-block;
  padding: 13px 28px;
  background: transparent; color: var(--charcoal);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1.5px solid var(--charcoal);
  transition: all .25s;
}
.btn-ghost:hover { background: var(--charcoal); color: var(--ivory); }

.btn-cream {
  display: inline-block;
  padding: 14px 32px;
  background: var(--ivory); color: var(--charcoal);
  font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  border: 1.5px solid var(--ivory);
  transition: all .25s;
  cursor: pointer;
}
.btn-cream:hover { background: var(--gold-lt); border-color: var(--gold-lt); }

.hero-rating {
  display: flex; align-items: center; gap: 12px;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hr-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.hr-score { font-weight: 500; font-size: .88rem; }
.hr-count { font-size: .78rem; color: var(--warm-gray); }

.hero-photo-card {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  height: 260px;
}
.hero-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-photo-card span {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(transparent, rgba(28,22,18,0.75));
  font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}

/* ── TICKER ── */
.ticker {
  background: var(--charcoal); padding: 13px 0;
  overflow: hidden; border-top: 1px solid rgba(255,255,255,.06);
}
.ticker-track {
  display: inline-flex; gap: 28px; white-space: nowrap;
  font-size: .68rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.4);
  animation: ticker 35s linear infinite;
}
.ticker-track span { flex-shrink: 0; }
.td { color: var(--gold); }

/* ── STORY — founders photo layout ── */
.story {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 72px;
  padding: 100px 36px;
  max-width: 1280px; margin: 0 auto;
  align-items: start;
}

.story-left {}

.story-eyebrow {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}

.story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--charcoal); margin-bottom: 2rem;
}
.story-title em { color: var(--burgundy); font-style: italic; }

.story-text {
  margin-bottom: 2rem;
}
.story-text p {
  font-size: .92rem; color: var(--warm-gray);
  line-height: 1.85; margin-bottom: 1.2rem;
}
.story-text strong { color: var(--charcoal); font-weight: 500; }

.story-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.story-chips span {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--charcoal2);
  border: 1px solid var(--border); padding: 6px 14px;
}

.story-pullquote {
  font-family: 'Cormorant', serif;
  font-style: italic; font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  color: var(--charcoal); line-height: 1.65;
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px 24px;
}

.story-right {
  position: sticky; top: 88px;
}

.story-photo-frame {
  position: relative;
  overflow: hidden;
}
.story-photo-frame img {
  width: 100%; height: 580px;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.story-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 56px 24px 22px;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  display: flex; flex-direction: column; gap: 5px;
}
.spc-names {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.1rem;
  color: #fff; font-weight: 400;
}
.spc-role {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

.story-logo-seal {
  margin-top: 20px;
  display: flex; justify-content: flex-end;
}
.story-logo-seal img {
  height: 72px; width: auto;
  opacity: .65;
}

/* ── CRAFT — behind the scenes ── */
.craft-sect {
  background: #0d0b09;
  padding: 96px 0 0;
}

.craft-intro {
  max-width: 1280px; margin: 0 auto;
  padding: 0 36px 64px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px;
}

.craft-eyebrow {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8rem;
}

.craft-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #fff; line-height: 1.05;
}
.craft-title em { color: var(--gold-lt); }

.craft-subtitle {
  font-size: .9rem; color: rgba(255,255,255,.42);
  line-height: 1.75; max-width: 360px;
  text-align: right;
}

.craft-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.craft-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: default;
}
.craft-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
  display: block;
}
.craft-item:hover img { transform: scale(1.05); }

.craft-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 48px 22px 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.88));
  display: flex; flex-direction: column; gap: 4px;
}

.craft-num {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.4rem;
  color: var(--gold); line-height: 1;
  margin-bottom: 4px;
}
.craft-label {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.88);
}
.craft-sub {
  font-size: .75rem; color: rgba(255,255,255,.42);
  line-height: 1.5;
}

/* ── MENU ── */
.menu-section {
  background: var(--ivory);
  padding: 0 0 80px;
}

.menu-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 36px 40px;
}

.menu-kicker {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .85rem;
}

.menu-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: var(--charcoal); line-height: 1;
}

.menu-note-header {
  font-size: .78rem; color: rgba(28,22,18,.5);
  text-align: right; line-height: 1.7;
}

/* ── MENU LOCATION PICKER ── */
.menu-loc-picker { /* reuses .locations grid */ }

.menu-body-wrap { display: none; }
.menu-body-wrap.open { display: block; }

.menu-active-bar {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto;
  padding: 28px 36px;
  border-bottom: 1px solid rgba(28,22,18,.1);
  flex-wrap: wrap; gap: 12px;
}
.menu-active-label { font-size: .88rem; color: rgba(28,22,18,.6); }
.menu-active-label strong { color: var(--charcoal); }
.menu-active-note { font-size: .74rem; color: rgba(28,22,18,.38); }
.menu-back-btn {
  background: none;
  border: 1px solid rgba(28,22,18,.22);
  color: rgba(28,22,18,.6);
  padding: 8px 18px; font-size: .78rem;
  cursor: pointer; letter-spacing: .04em;
  transition: border-color .2s, color .2s;
}
.menu-back-btn:hover { border-color: var(--gold); color: var(--gold); }

.loc-actions {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px; flex-wrap: wrap;
}
.btn-view-menu {
  background: var(--gold); color: var(--charcoal);
  border: none; cursor: pointer;
  padding: 12px 22px;
  font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  transition: opacity .2s;
  white-space: nowrap;
}
.btn-view-menu:hover { opacity: .85; }

.menu-body { max-width: 1280px; margin: 0 auto; }

.menu-cat {
  display: grid;
  grid-template-columns: 260px 1fr;
  border-bottom: 1px solid rgba(28,22,18,.1);
}
.menu-cat.alt { background: rgba(28,22,18,.03); }
.menu-cat.seasonal-cat { background: rgba(184,150,90,.06); }

.menu-cat-label {
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 48px 36px;
  border-right: 1px solid rgba(28,22,18,.1);
}
.menu-cat-label span {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400; color: var(--gold);
  text-align: right; line-height: 1.4;
}

.menu-cat-items {
  padding: 40px 48px 48px;
}

.mitem {
  display: flex; align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(28,22,18,.08);
  transition: padding .2s;
}
.mitem:last-of-type { border-bottom: none; }
.mitem.featured .mitem-name { color: var(--gold-lt); }

.mitem-name {
  font-size: .92rem; font-weight: 500;
  color: var(--charcoal);
  white-space: nowrap; flex-shrink: 0;
  display: flex; align-items: center; gap: 8px;
}

.mitem-dots {
  flex: 1; margin: 0 16px;
  border-bottom: 1px dotted rgba(28,22,18,.18);
  min-width: 20px;
}

.mitem-desc {
  font-size: .82rem; color: rgba(28,22,18,.5);
  text-align: right; max-width: 320px; flex-shrink: 0;
  line-height: 1.5;
}

.mitem-tag {
  font-size: .58rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 2px 8px;
  background: var(--gold); color: var(--charcoal);
  flex-shrink: 0;
}
.mitem-tag.sig { background: var(--burgundy); color: #fff; }
.mitem-tag.gf  { background: #3D6B3A; color: #fff; }
.mitem-tag.loc { background: rgba(28,22,18,.1); color: rgba(28,22,18,.65); }
.mitem-tag.sea { background: var(--gold-lt); color: var(--charcoal); }

.menu-subnote, .menu-subintro {
  font-size: .78rem; color: rgba(28,22,18,.4);
  font-style: italic; padding: 8px 0 16px; line-height: 1.65;
}
.menu-subintro { color: rgba(28,22,18,.55); font-style: normal; margin-bottom: 4px; }

.seasonal-signup {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid rgba(28,22,18,.1);
  display: flex; align-items: center; gap: 20px;
}
.seasonal-signup p { font-size: .82rem; color: rgba(28,22,18,.5); }

.menu-order-cta {
  max-width: 1280px; margin: 0 auto;
  padding: 40px 36px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(28,22,18,.1);
}
.menu-order-cta p { font-size: .82rem; color: rgba(28,22,18,.45); }

/* ── PHOTO BREAK — full-width macaron photo ── */
.photo-break {
  position: relative;
  height: 55vh;
  overflow: hidden;
}
.photo-break img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.photo-break-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.38);
  display: flex; align-items: center; justify-content: center;
}
.photo-break-quote {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  color: #fff; text-align: center;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  max-width: 640px; padding: 0 36px;
  line-height: 1.35; font-weight: 300;
}

/* ── ORDER SECTION ── */
.order-sect {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.order-left {
  background: var(--burgundy);
  padding: 88px 72px;
  display: flex; flex-direction: column;
  justify-content: center;
}

.order-kicker {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 1.5rem;
}

.order-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: #fff;
  line-height: 1.05; margin-bottom: 1.75rem;
}
.order-title em { color: var(--gold-lt); }

.order-sub {
  font-size: .9rem; color: rgba(255,255,255,.65);
  line-height: 1.8; max-width: 380px; margin-bottom: 2.5rem;
}

.order-fine {
  margin-top: 1.2rem; font-size: .78rem;
  color: rgba(255,255,255,.38);
}
.order-fine a { color: var(--gold-lt); text-decoration: underline; }

.order-right {
  background: var(--ivory-dk);
  display: flex; flex-direction: column;
  overflow: hidden;
}

.order-photo {
  flex-shrink: 0;
  height: 400px;
  overflow: hidden;
}
.order-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
  transition: transform .5s var(--ease);
}
.order-photo:hover img { transform: scale(1.03); }

.order-cats-list {
  display: flex; flex-direction: column; gap: 0;
  padding: 32px 72px 72px;
  flex: 1;
}

.oc-row {
  display: flex; align-items: center; gap: 24px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  transition: all .2s; cursor: default;
}
.oc-row:first-child { border-top: 1px solid var(--border); }
.oc-row:hover .oc-name { color: var(--burgundy); }
.oc-row:hover .oc-num { color: var(--gold); }

.oc-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-style: italic;
  color: var(--warm-gray); flex-shrink: 0; width: 28px;
  transition: color .2s;
}
.oc-name {
  font-size: .88rem; font-weight: 500;
  letter-spacing: .04em; color: var(--charcoal);
  transition: color .2s;
}

/* ── LOCATIONS — real photo backgrounds ── */
.locations { display: grid; grid-template-columns: 1fr 1fr; min-height: 90vh; }

.loc-panel {
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 72px;
}

.loc-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}
.loc-fairview .loc-bg {
  object-position: center center;
}
.loc-baker .loc-bg {
  object-position: 50% 18%;
}

.loc-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0.12) 100%);
  z-index: 1;
}

.loc-panel-inner { position: relative; z-index: 2; }

.loc-type {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1rem;
}
.loc-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: #fff;
  line-height: 1; margin-bottom: 1.2rem;
}
.loc-rule { width: 40px; height: 1px; background: var(--gold); margin-bottom: 1.4rem; }

.loc-desc { font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.75; margin-bottom: 2rem; max-width: 340px; }

.loc-info { margin-bottom: 1.75rem; display: flex; flex-direction: column; gap: 8px; }
.loc-line { font-size: .82rem; color: rgba(255,255,255,.72); display: flex; align-items: flex-start; gap: 10px; }
.loc-line i { color: var(--gold); font-size: .78rem; margin-top: 3px; flex-shrink: 0; }
.loc-line a { color: rgba(255,255,255,.85); transition: color .2s; }
.loc-line a:hover { color: var(--gold-lt); }
.closed-line { color: rgba(255,255,255,.32) !important; }

.loc-amenities { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 2rem; }
.loc-amenities span {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.25); padding: 4px 12px;
}

.btn-outline-loc {
  display: inline-block;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: #fff; border-bottom: 1px solid rgba(255,255,255,.5);
  padding-bottom: 3px; transition: border-color .2s, color .2s;
}
.btn-outline-loc:hover { color: var(--gold-lt); border-color: var(--gold-lt); }

/* ── GALLERY — real photos ── */
/* ── GALLERY CAROUSEL ── */
.gallery-sect {
  background: var(--ivory-dk);
  padding: 80px 0 60px;
}
.gallery-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 36px 32px;
}
.gallery-kicker {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .75rem;
}
.gallery-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; line-height: 1.1;
  color: var(--charcoal);
}
.gallery-title em { color: var(--burgundy); font-style: italic; }
.gallery-nav { display: flex; gap: 8px; }
.g-arrow {
  width: 46px; height: 46px;
  border: 1px solid var(--charcoal);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; color: var(--charcoal);
  transition: background .22s, color .22s;
}
.g-arrow:hover { background: var(--charcoal); color: #fff; }
.g-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }

.gallery-track-wrap { overflow: hidden; padding: 0 36px; }
.gallery-track {
  display: flex; gap: 14px;
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
}
.gt-item {
  flex-shrink: 0;
  width: 260px; height: 260px;
  overflow: hidden; cursor: pointer;
}
.gt-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gt-item:hover img { transform: scale(1.06); }

.gallery-footer { text-align: center; padding: 36px 0 0; }
.btn-insta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 24px;
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
  color: #fff; font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  transition: opacity .25s;
}
.btn-insta:hover { opacity: .88; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lb-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.78);
}
.lb-card {
  position: relative; z-index: 1;
  background: #fff;
  max-width: 500px; width: calc(100vw - 48px);
  box-shadow: 0 32px 96px rgba(0,0,0,.45);
}
.lb-card img {
  width: 100%; display: block;
  max-height: 80vh; object-fit: contain;
}
.lb-close {
  position: absolute;
  bottom: -52px; left: 50%; transform: translateX(-50%);
  width: 40px; height: 40px;
  background: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--charcoal);
  border-radius: 50%;
  transition: background .2s;
}
.lb-close:hover { background: #f0ede8; }

/* ── REVIEWS ── */
.reviews-sect {
  background: var(--charcoal);
  padding: 96px 0;
  display: flex; flex-direction: column; align-items: center;
}

.reviews-header {
  display: flex; align-items: center; gap: 28px;
  margin-bottom: 64px;
}
.rh-score {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 900;
  color: #fff; line-height: 1;
}
.rh-info p { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 2px; }
.rh-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 4px; display: block; margin-top: 6px; }

.quotes-track {
  max-width: 780px; width: 100%;
  padding: 0 36px;
  position: relative; min-height: 200px;
}

.quote-item {
  display: none; text-align: center;
  animation: fadeIn .4s ease;
}
.quote-item.active { display: block; }

.quote-item blockquote {
  font-family: 'Cormorant', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: #fff; line-height: 1.55; font-weight: 300;
  margin-bottom: 2rem;
}

.quote-item figcaption {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.quotes-nav {
  display: flex; align-items: center; gap: 20px;
  margin-top: 48px;
}
.quotes-nav button {
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.2);
  background: none; color: rgba(255,255,255,.55);
  cursor: pointer; font-size: .85rem;
  transition: all .25s;
  display: flex; align-items: center; justify-content: center;
}
.quotes-nav button:hover { border-color: var(--gold); color: var(--gold); }

.q-dots { display: flex; gap: 8px; }
.qdot {
  width: 6px; height: 6px;
  background: rgba(255,255,255,.2);
  border-radius: 50%; border: none; cursor: pointer;
  transition: all .3s;
}
.qdot.active { background: var(--gold); width: 20px; border-radius: 3px; }

/* ── SOCIAL ── */
.social-sect {
  display: grid; grid-template-columns: 380px 1fr;
  background: var(--ivory);
}

.ss-left {
  padding: 80px 56px;
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; justify-content: center;
}
.ss-kicker {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.ss-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 900; color: var(--charcoal); line-height: 1.1;
}

.ss-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 72px; gap: 0;
}

.ss-link {
  display: flex; align-items: center; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; transition: all .25s;
}
.ss-link:first-child { border-top: 1px solid var(--border); }
.ss-link:hover { padding-left: 12px; }

.ss-link i { font-size: 1.6rem; flex-shrink: 0; }
.insta-link i { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.fb-link i { color: #1877f2; }

.ss-link div { flex: 1; }
.ss-link strong { display: block; font-size: .95rem; font-weight: 500; color: var(--charcoal); margin-bottom: 3px; }
.ss-link span { font-size: .78rem; color: var(--warm-gray); }

.ss-arrow { font-size: 1.1rem; color: var(--warm-gray); transition: all .25s; }
.ss-link:hover .ss-arrow { color: var(--charcoal); transform: translateX(4px); }

/* ── CONTACT ── */
.contact-sect {
  display: grid; grid-template-columns: 420px 1fr;
  background: var(--ivory-dk);
}

.contact-left {
  padding: 88px 56px;
  border-right: 1px solid var(--border);
}
.contact-kicker {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.contact-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900; color: var(--charcoal);
  line-height: 1.1; margin-bottom: 3rem;
}

.contact-details { display: flex; flex-direction: column; gap: 2rem; }
.cd-block h5 {
  font-family: 'Playfair Display', serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: .6rem;
}
.cd-block p { font-size: .88rem; color: var(--warm-gray); line-height: 1.7; }
.cd-block a { color: var(--burgundy); }
.cd-block a:hover { text-decoration: underline; }
.hours-note { color: var(--gold) !important; font-size: .82rem !important; }

.contact-right { padding: 88px 72px; }
.contact-right h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--charcoal); margin-bottom: .5rem;
}
.contact-form-sub { font-size: .85rem; color: var(--warm-gray); margin-bottom: 2rem; }

.cform { display: flex; flex-direction: column; gap: 12px; }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cform input, .cform textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border);
  background: #fff; color: var(--charcoal);
  font-family: 'DM Sans', sans-serif; font-size: .88rem;
  outline: none; transition: border-color .2s;
}
.cform input:focus, .cform textarea:focus { border-color: var(--charcoal); }
.cform textarea { resize: vertical; }

.cform-ok { display: none; font-size: .85rem; color: #3D6B3A; font-weight: 500; margin-top: 4px; }
.cform-ok.show { display: block; }

/* ── FOOTER ── */
.site-footer { background: var(--charcoal2); }

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 48px; max-width: 1280px; margin: 0 auto;
  padding: 72px 36px 56px;
}

.ft-brand {}

.ft-logo-img-wrap {
  margin-bottom: 1.4rem;
  display: inline-block;
  background: rgba(255,255,255,0.06);
  padding: 12px 14px;
}
.ft-logo-img {
  height: 72px; width: auto;
  display: block;
}

.ft-brand p { font-size: .85rem; color: rgba(255,255,255,.38); line-height: 1.7; margin-bottom: 1.5rem; }

.ft-socials { display: flex; gap: 10px; margin-bottom: 1.5rem; }
.ft-socials a {
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: .85rem;
  transition: all .25s;
}
.ft-socials a:hover { border-color: var(--gold); color: var(--gold); }

.ft-owned { display: flex; flex-direction: column; gap: 4px; }
.ft-owned span { font-size: .7rem; color: rgba(255,255,255,.28); }

.ft-links h6, .ft-hours h6, .ft-nl h6 {
  font-size: .62rem; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 1.2rem;
}
.ft-links { display: flex; flex-direction: column; gap: 0; }
.ft-links a {
  font-size: .85rem; color: rgba(255,255,255,.45);
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s;
}
.ft-links a:hover { color: var(--gold-lt); }

.ft-hours p { font-size: .85rem; color: rgba(255,255,255,.42); line-height: 1.8; }
.ft-note { color: var(--gold) !important; font-size: .78rem !important; }

.ft-nl p { font-size: .85rem; color: rgba(255,255,255,.38); margin-bottom: 1.2rem; line-height: 1.7; }
.ft-nl-form { display: flex; border: 1px solid rgba(255,255,255,.18); margin-bottom: .75rem; }
.ft-nl-form input {
  flex: 1; padding: 11px 14px;
  background: rgba(255,255,255,.04);
  border: none; outline: none;
  font-family: 'DM Sans', sans-serif; font-size: .85rem;
  color: #fff;
}
.ft-nl-form input::placeholder { color: rgba(255,255,255,.25); }
.ft-nl-form button {
  padding: 11px 16px; background: var(--gold);
  border: none; color: var(--charcoal);
  font-size: 1rem; cursor: pointer; transition: background .2s;
}
.ft-nl-form button:hover { background: var(--gold-lt); }
.ft-nl-ok { display: none; font-size: .78rem; color: var(--gold); }
.ft-nl-ok.show { display: block; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  max-width: 1280px; margin: 0 auto;
  padding: 20px 36px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.22); }
.footer-bottom a { color: rgba(184,150,90,.5); }

/* ── ANIMATIONS ── */
@keyframes fadeIn  { from { opacity:0 } to { opacity:1 } }
@keyframes slideUp { from { opacity:0; transform:translateY(24px) } to { opacity:1; transform:translateY(0) } }
@keyframes ticker  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity:1; transform:translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .story { grid-template-columns: 1fr 340px; gap: 48px; }
  .craft-subtitle { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 140px 36px 56px; min-height: 55vh; }
  .hero-right { padding: 48px 36px 0; }
  .hero-photo-card { height: 220px; }

  /* Story */
  .story { grid-template-columns: 1fr; padding: 72px 24px; gap: 48px; }
  .story-right { position: static; }
  .story-photo-frame img { height: 420px; }

  /* Craft */
  .craft-intro { flex-direction: column; gap: 16px; }
  .craft-subtitle { display: block; text-align: left; max-width: 100%; }
  .craft-grid { grid-template-columns: 1fr 1fr; }
  .craft-item { aspect-ratio: 4/5; }

  /* Menu */
  .menu-cat { grid-template-columns: 1fr; }
  .menu-cat-label { border-right: none; border-bottom: 1px solid rgba(28,22,18,.1); padding: 28px 24px 20px; justify-content: flex-start; }
  .menu-cat-items { padding: 24px 24px 32px; }
  .mitem-desc { display: none; }

  /* Order */
  .order-sect { grid-template-columns: 1fr; }
  .order-left { padding: 64px 36px; }
  .order-right {}
  .order-photo { height: 220px; }
  .order-cats-list { padding: 28px 36px 56px; }

  /* Locations */
  .locations { grid-template-columns: 1fr; }
  .loc-panel { min-height: 70vh; }

  /* Gallery */
  .gallery-sect { grid-template-columns: 1fr; }
  .gallery-intro { padding: 56px 36px; border-right: none; border-bottom: 1px solid var(--border); }
  .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }

  /* Social / Contact */
  .social-sect { grid-template-columns: 1fr; }
  .ss-left { border-right: none; border-bottom: 1px solid var(--border); padding: 56px 36px; }
  .ss-right { padding: 40px 36px 56px; }
  .contact-sect { grid-template-columns: 1fr; }
  .contact-left { border-right: none; padding: 64px 36px 40px; }
  .contact-right { padding: 40px 36px 64px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 56px 24px 40px; }
  .footer-bottom { padding: 16px 24px; }

  /* Nav */
  .nav-left, .nav-right { display: none; }
  .burger { display: flex; }
  .masthead { grid-template-columns: 1fr auto; }
  .nav-cta { display: none; }

  /* Photo break */
  .photo-break { height: 42vh; }
}

@media (max-width: 500px) {
  .menu-header { flex-direction: column; gap: 12px; align-items: flex-start; padding: 56px 24px 32px; }
  .menu-loc-tabs { grid-template-columns: 1fr; padding: 0 24px; gap: 12px; }
  .menu-loc-tab { height: 160px; }
  .menu-loc-showing { padding: 12px 24px 28px; }
  .menu-order-cta { flex-direction: column; gap: 16px; text-align: center; padding: 32px 24px; }
  .loc-panel { padding: 48px 28px; }
  .hero-wordmark { font-size: clamp(5rem, 22vw, 7rem); }
  .quotes-track { padding: 0 20px; }
  .cform-row { grid-template-columns: 1fr; }
  .nl-inner { padding: 44px 28px 36px; }
  .nl-form { flex-direction: column; }
  .craft-grid { grid-template-columns: 1fr; }
  .craft-item { aspect-ratio: 16/9; }
}

/* ── CLOVER LIVE MENU ── */
.mitem-price {
  font-size: .75rem;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: .02em;
  margin-left: 2px;
}

.mitem.has-mods { flex-wrap: wrap; }

.mitem-mods {
  display: none;
}

.mitem-mod-group {
  display: flex; align-items: baseline;
  gap: 10px; flex-wrap: wrap;
  font-size: .72rem;
}

.mitem-mod-label {
  color: rgba(255,255,255,.3);
  white-space: nowrap; flex-shrink: 0;
  text-transform: uppercase; letter-spacing: .07em; font-size: .63rem;
}
.mitem-mod-label em {
  font-style: normal;
  color: rgba(255,255,255,.18);
}

.mitem-mod-opts {
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}

.mitem-mod-price {
  color: var(--gold);
  font-size: .68rem;
}

.menu-loading {
  display: flex; align-items: center; gap: 14px;
  padding: 64px 48px;
  color: rgba(28,22,18,.4);
  font-size: .84rem; letter-spacing: .05em; text-transform: uppercase;
}

@keyframes lnc-spin { to { transform: rotate(360deg); } }
.menu-spinner {
  width: 18px; height: 18px;
  border: 2px solid rgba(28,22,18,.12);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: lnc-spin .8s linear infinite;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════
   CART NAV BUTTON
══════════════════════════════════════════════════════════ */

.cart-nav-btn {
  position: relative;
  background: none;
  border: 1px solid rgba(28,22,18,.18);
  border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer;
  color: var(--charcoal);
  font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.cart-nav-btn:hover { background: var(--charcoal); color: var(--ivory); border-color: var(--charcoal); }

.cart-nav-badge {
  position: absolute;
  top: -5px; right: -5px;
  background: var(--burgundy);
  color: #fff;
  font-size: .6rem; font-weight: 600;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  display: none;
  align-items: center; justify-content: center;
  padding: 0 4px;
}

.mobile-cart-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--charcoal);
  color: var(--ivory);
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: .9rem;
  margin-top: 8px;
  width: 100%;
  justify-content: center;
}

/* ══════════════════════════════════════════════════════════
   MENU ITEM ADD BUTTON
══════════════════════════════════════════════════════════ */

.mitem-add-btn {
  background: none;
  border: 1px solid rgba(28,22,18,.22);
  color: rgba(28,22,18,.6);
  border-radius: 50%;
  width: 28px; height: 28px;
  font-size: 1.1rem; line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  align-self: flex-start;
  margin-left: 8px;
  transition: background .18s, color .18s, border-color .18s;
}
.mitem-add-btn:hover,
.mitem-add-btn.added {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.mitem-add-btn.added { font-size: .78rem; }

/* ══════════════════════════════════════════════════════════
   MODIFIER PANEL
══════════════════════════════════════════════════════════ */

.mod-panel {
  display: none;
  position: fixed; inset: 0;
  z-index: 900;
}
.mod-panel.open { display: flex; align-items: flex-end; justify-content: center; }

@media (min-width: 600px) {
  .mod-panel.open { align-items: center; }
}

.mod-panel-backdrop {
  position: absolute; inset: 0;
  background: rgba(28,22,18,.55);
  backdrop-filter: blur(3px);
}

.mod-panel-card {
  position: relative;
  background: var(--charcoal);
  color: var(--ivory);
  width: 100%; max-width: 480px;
  max-height: 88vh;
  border-radius: 16px 16px 0 0;
  padding: 32px 28px 28px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 0;
}
@media (min-width: 600px) {
  .mod-panel-card { border-radius: 16px; max-height: 82vh; }
}

.mod-panel-close {
  position: absolute; top: 16px; right: 18px;
  background: rgba(255,255,255,.08);
  border: none; border-radius: 50%;
  width: 30px; height: 30px;
  color: rgba(255,255,255,.6);
  cursor: pointer; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.mod-panel-close:hover { background: rgba(255,255,255,.16); }

.mod-panel-cat { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.mod-panel-name { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 4px; }
.mod-panel-base-price { font-size: .85rem; color: rgba(255,255,255,.45); margin-bottom: 20px; }

/* Modifier groups */
.mpg { margin-bottom: 18px; }
.mpg-label {
  font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.mpg-req { color: var(--burgundy); font-size: .62rem; background: rgba(107,35,55,.25); padding: 1px 6px; border-radius: 3px; }
.mpg-opt { color: rgba(255,255,255,.22); font-size: .62rem; }

.mpg-opts { display: flex; flex-direction: column; gap: 2px; }

.mpg-opt-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s;
  font-size: .88rem;
}
.mpg-opt-row:hover { background: rgba(255,255,255,.06); }
.mpg-opt-row input { accent-color: var(--gold); width: 15px; height: 15px; flex-shrink: 0; cursor: pointer; }
.mpg-opt-name { flex: 1; }
.mpg-opt-price { color: var(--gold); font-size: .78rem; }

.mpg-error .mpg-label { color: var(--burgundy); animation: mp-shake .35s ease; }
@keyframes mp-shake {
  0%,100% { transform: translateX(0); }
  25%      { transform: translateX(-5px); }
  75%      { transform: translateX(5px); }
}

/* Panel footer */
.mod-panel-footer {
  display: flex; align-items: center; gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.mod-panel-qty {
  display: flex; align-items: center; gap: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px; overflow: hidden;
  flex-shrink: 0;
}
.mod-qty-btn {
  background: none; border: none;
  color: var(--ivory);
  width: 32px; height: 36px;
  font-size: 1.1rem; cursor: pointer;
  transition: background .15s;
}
.mod-qty-btn:hover { background: rgba(255,255,255,.1); }
.mod-qty-val {
  min-width: 28px; text-align: center;
  font-size: .9rem;
  border-left: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.12);
  height: 36px; line-height: 36px;
}

.mod-panel-add-btn {
  flex: 1;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 0 18px;
  height: 36px;
  font-size: .88rem; font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.mod-panel-add-btn:hover { background: var(--gold-lt); }

/* ══════════════════════════════════════════════════════════
   CART DRAWER
══════════════════════════════════════════════════════════ */

.cart-drawer {
  display: none;
  position: fixed; inset: 0;
  z-index: 800;
}
.cart-drawer.open { display: block; }

.cart-backdrop {
  position: absolute; inset: 0;
  background: rgba(28,22,18,.45);
  backdrop-filter: blur(2px);
}

.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: #fff;
  display: flex; flex-direction: column;
  box-shadow: -8px 0 40px rgba(28,22,18,.18);
  animation: cart-slide-in .28s var(--ease);
}
@keyframes cart-slide-in {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

.cart-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.cart-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--charcoal);
}
.cart-close {
  background: none; border: none;
  color: var(--warm-gray); cursor: pointer;
  font-size: 1rem; padding: 4px;
  border-radius: 4px;
  transition: color .15s;
}
.cart-close:hover { color: var(--charcoal); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

.cart-empty-state {
  display: flex; flex-direction: column; align-items: center;
  padding: 56px 24px; gap: 12px;
  color: var(--warm-gray); text-align: center;
}
.cart-empty-state i { font-size: 2rem; color: var(--ivory-dk); }
.cart-empty-state p { font-size: .9rem; }
.cart-empty-state button {
  background: none; border: 1px solid var(--border);
  padding: 8px 20px; border-radius: 4px;
  cursor: pointer; font-size: .85rem; color: var(--charcoal);
  transition: background .2s;
}
.cart-empty-state button:hover { background: var(--ivory); }

.cart-items-list { list-style: none; padding: 0; }

.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(28,22,18,.06);
}
.ci-info { flex: 1; min-width: 0; }
.ci-name { display: block; font-size: .9rem; font-weight: 500; color: var(--charcoal); }
.ci-mods { display: block; font-size: .75rem; color: var(--warm-gray); margin-top: 2px; }

.ci-controls { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.ci-qty-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 22px; height: 22px;
  font-size: .85rem; line-height: 1;
  cursor: pointer; color: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.ci-qty-btn:hover { background: var(--ivory); }
.ci-qty { font-size: .85rem; min-width: 18px; text-align: center; }
.ci-price { font-size: .85rem; color: var(--charcoal); min-width: 46px; text-align: right; }
.ci-remove {
  background: none; border: none;
  color: rgba(28,22,18,.28); cursor: pointer;
  font-size: 1.1rem; padding: 0 2px;
  line-height: 1;
  transition: color .15s;
}
.ci-remove:hover { color: var(--burgundy); }

/* Cart footer */
.cart-footer {
  padding: 18px 24px 24px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 12px;
}

.cart-field { display: flex; flex-direction: column; gap: 4px; }
.cart-field label { font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--warm-gray); }
.cart-field input,
.cart-field select {
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 9px 12px;
  font-size: .88rem;
  color: var(--charcoal);
  background: var(--ivory);
  outline: none;
  transition: border-color .2s;
}
.cart-field input:focus,
.cart-field select:focus { border-color: var(--gold); }

.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 4px;
  font-size: .92rem; font-weight: 500;
  color: var(--charcoal);
}

.cart-tax-note { font-size: .7rem; color: var(--warm-gray); margin-top: -6px; }

.cart-checkout-btn {
  background: var(--charcoal);
  color: var(--ivory);
  border: none;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: .95rem; font-weight: 500;
  cursor: pointer;
  transition: background .2s;
}
.cart-checkout-btn:hover:not(:disabled) { background: var(--charcoal2); }
.cart-checkout-btn:disabled { opacity: .5; cursor: wait; }

.cart-checkout-err {
  font-size: .78rem; color: var(--burgundy);
  min-height: .9rem;
}

/* ══════════════════════════════════════════════════════════
   ORDER SUCCESS TOAST
══════════════════════════════════════════════════════════ */

.order-toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--charcoal);
  color: var(--ivory);
  border-radius: 10px;
  padding: 14px 22px;
  display: flex; align-items: center; gap: 14px;
  font-size: .9rem;
  box-shadow: 0 8px 32px rgba(28,22,18,.28);
  z-index: 1100;
  transition: transform .4s var(--ease);
  max-width: calc(100vw - 48px);
  pointer-events: none;
}
.order-toast.show { transform: translateX(-50%) translateY(0); }
.order-toast i { color: #5cb85c; font-size: 1.2rem; flex-shrink: 0; }
.order-toast strong { display: block; font-weight: 600; margin-bottom: 1px; }

/* ══════════════════════════════════════════════════════════
   CUSTOM CAKES / ORDER AHEAD
══════════════════════════════════════════════════════════ */

.cake-sect {
  background: var(--charcoal);
}

.cake-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 80vh;
}

.cake-pitch {
  padding: 88px 72px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,.08);
}

.cake-kicker {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}

.cake-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; color: #fff; line-height: 1.08;
  margin-bottom: 1.75rem;
}
.cake-title em { color: var(--gold-lt); }

.cake-body {
  font-size: .9rem; color: rgba(255,255,255,.55);
  line-height: 1.85; max-width: 400px;
  margin-bottom: 2rem;
}

.cake-list {
  list-style: none; padding: 0; margin: 0 0 2rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.cake-list li {
  font-size: .85rem; color: rgba(255,255,255,.42);
  display: flex; align-items: center; gap: .65rem;
}
.cake-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
}

.cake-note {
  font-size: .78rem; color: rgba(255,255,255,.28);
  font-style: italic;
}

/* Form panel */

.cake-form-panel {
  padding: 64px 72px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.025);
}

#cake-form {
  width: 100%;
}

.cf-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}

.cf-field {
  display: flex; flex-direction: column; gap: 6px;
  margin-bottom: 16px;
}
.cf-row .cf-field { margin-bottom: 0; }

.cf-field label {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

.cf-req { color: var(--gold); }

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  padding: 11px 14px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  transition: border-color .2s;
  outline: none;
  width: 100%;
}
.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(255,255,255,.22); }

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,.09);
}

.cf-field select { appearance: none; cursor: pointer; }
.cf-field select option { background: var(--charcoal); color: #fff; }

.cf-field textarea { resize: vertical; min-height: 90px; }

/* Fix date input calendar icon colour on dark background */
.cf-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(.4);
  cursor: pointer;
}

.cf-err {
  font-size: .8rem; color: var(--gold-lt);
  min-height: 1.1rem; margin-bottom: .5rem;
}

.cf-btn {
  width: 100%;
  background: var(--gold);
  color: var(--charcoal);
  border: none; border-radius: 4px;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
  margin-top: 4px;
}
.cf-btn:hover { background: var(--gold-lt); }
.cf-btn:active { transform: scale(.99); }
.cf-btn:disabled {
  background: rgba(184,150,90,.35);
  color: rgba(255,255,255,.3);
  cursor: not-allowed;
}

.cf-ok {
  margin-top: 16px;
  background: rgba(184,150,90,.12);
  border: 1px solid rgba(184,150,90,.3);
  border-radius: 6px;
  padding: 14px 16px;
}
.cf-ok p {
  font-size: .85rem; color: var(--gold-lt);
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 900px) {
  .cake-inner { grid-template-columns: 1fr; }
  .cake-pitch {
    padding: 60px 28px 40px;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .cake-form-panel { padding: 40px 28px 64px; }
  .cf-row { grid-template-columns: 1fr; }
}
.order-toast span { font-size: .8rem; color: rgba(255,255,255,.55); }

/* ── Cart Delivery / Pickup Toggle ── */
.cart-type-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.ctt-btn {
  flex: 1;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all .18s ease;
}
.ctt-btn.active {
  border-color: var(--gold);
  background: rgba(184,150,90,.1);
  color: var(--gold);
}
.ctt-badge {
  font-size: .65rem;
  background: #1a1a1a;
  color: var(--gold);
  border: 1px solid rgba(184,150,90,.4);
  border-radius: 4px;
  padding: 1px 5px;
  letter-spacing: .03em;
}
