:root {
  --cream: #F6EFE4;
  --cream-2: #FFFCF6;
  --sand: #EFE4D3;
  --sand-2: #E7D9C4;
  --ink: #3A2A22;
  --ink-soft: #6B5548;
  --ink-faint: #8A7263;
  --maroon: #650A27;
  --maroon-dark: #480618;
  --gold: #B99C7E;
  --light: #F8F2E8;
  --tan: #A9846A;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--sans); -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
/* A hidden overlay must never intercept clicks, even with a display rule set */
[hidden] { display: none !important; }
a { color: var(--maroon); text-decoration: none; }
::selection { background: rgba(101,10,39,0.15); }

@keyframes jkMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes jkFadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.grain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none; mix-blend-mode: multiply; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

.eyebrow { font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: #9A7F6D; display: block; }
.eyebrow.gold { color: var(--gold); }
.eyebrow.light { color: rgba(246,239,228,0.62); }
.muted { opacity: 0.7; }
.dot { opacity: 0.4; }
.note { font-size: 12.5px; color: #9A7F6D; }
.center { text-align: center; }

.display {
  margin: 18px 0 0; font-family: var(--serif); font-weight: 300;
  font-size: clamp(36px, 4.8vw, 72px); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink);
}
.display.light { color: var(--cream); }
.display.narrow { max-width: 20ch; margin-inline: auto; }

.wrap { max-width: 1320px; margin: 0 auto; }
.wrap-narrow { max-width: 1080px; margin: 0 auto; }

/* Announcement */
.announce {
  background: var(--ink); color: #E8DCC9; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  display: flex; justify-content: center; gap: 34px; padding: 11px 20px; overflow: hidden; white-space: nowrap;
}
.announce b { font-weight: 500; }

/* Header */
header {
  position: sticky; top: 0; z-index: 900; background: rgba(246,239,228,0.86);
  backdrop-filter: blur(14px); border-bottom: 1px solid rgba(58,42,34,0); transition: border-color .5s ease, background .5s ease;
}
.nav-inner { max-width: 1320px; margin: 0 auto; padding: 14px 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 74px; height: 74px; object-fit: contain; mix-blend-mode: multiply; }
.nav-links { display: flex; align-items: center; gap: 38px; font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links a { color: #5A463A; padding: 6px 0; border-bottom: 1px solid transparent; transition: all .25s ease; }
.nav-links a:hover { color: var(--maroon); border-bottom-color: var(--maroon); }
.basket-btn {
  display: flex; align-items: center; gap: 10px; background: none; border: 1px solid rgba(58,42,34,0.2);
  border-radius: 999px; padding: 11px 20px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink); cursor: pointer; transition: all .3s ease;
}
.basket-btn:hover { border-color: var(--maroon); color: var(--maroon); }
.pill { display: inline-flex; align-items: center; justify-content: center; min-width: 21px; height: 21px; border-radius: 999px; background: var(--maroon); color: var(--cream); font-size: 11px; }
.pill.light { background: rgba(248,242,232,0.22); }

/* Buttons */
.btn { border-radius: 999px; padding: 17px 34px; font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; transition: all .32s ease; display: inline-block; cursor: pointer; font-family: var(--sans); border: none; }
.btn-primary { background: var(--maroon); color: var(--light); box-shadow: 0 16px 34px -20px rgba(101,10,39,0.85); }
.btn-primary:hover { background: var(--maroon-dark); color: var(--light); transform: translateY(-2px); }
.btn-ghost-dark { border: 1px solid rgba(58,42,34,0.24); color: var(--ink); }
.btn-ghost-dark:hover { border-color: var(--ink); background: rgba(58,42,34,0.04); }
.btn-ghost { border: 1px solid rgba(58,42,34,0.24); color: var(--ink); padding: 15px 28px; font-size: 11.5px; }
.btn-ghost:hover { border-color: var(--maroon); color: var(--maroon); }
.btn-cream { background: var(--light); color: var(--maroon); }
.btn-cream:hover { background: var(--ink); color: var(--light); transform: translateY(-2px); }

/* Hero */
.hero { position: relative; height: calc(100vh - 130px); min-height: min(760px, calc(100svh - 130px)); overflow: hidden; background: #F6EFE4; }
.hero-slide { position: absolute; inset: 0; opacity: 0; z-index: 10; pointer-events: none; transition: opacity 1.1s cubic-bezier(.4,0,.2,1); }
.hero-slide.active { opacity: 1; z-index: 20; pointer-events: auto; }
.hero-logo-bg { position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 0%, #FBF6EE 0%, #F6EFE4 46%, #EFE4D3 100%); }
.hero-logo-inner { position: relative; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: clamp(6px,1.6svh,18px); padding: clamp(16px,3svh,44px) 28px clamp(74px,11svh,120px); }
.hero-logo-img { width: auto; max-width: min(330px,58vw); max-height: min(330px,38svh); object-fit: contain; mix-blend-mode: multiply; }
.hero-logo-tag { margin: 0; font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(20px, min(3.2vw,3.4svh), 44px); line-height: 1.2; color: #4A3529; max-width: 19ch; }
.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: clamp(6px,1.6svh,18px); }

.hero-photo { position: absolute; inset: 0; overflow: hidden; }
.hero-photo img, .hero-photo .slot-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to bottom, rgba(24,14,10,0.72) 0%, rgba(24,14,10,0.5) 42%, rgba(24,14,10,0.68) 100%); }
.hero-copy-wrap { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: clamp(80px,12vh,120px) clamp(22px,6vw,80px) clamp(120px,16vh,150px); }
.hero-copy { max-width: min(680px,100%); }
.hero-copy .eyebrow { color: rgba(248,242,232,0.68); }
.hero-copy h1 { margin: 16px 0 0; font-family: var(--serif); font-weight: 300; font-size: clamp(36px,6vw,88px); line-height: 1.04; letter-spacing: -0.02em; color: var(--light); }
.hero-copy .line { margin: 18px auto 0; font-size: clamp(14.5px,1.4vw,18.5px); line-height: 1.7; color: rgba(248,242,232,0.82); max-width: 44ch; }
.hero-usps { display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; margin-top: 22px; }
.hero-usps span { border: 1px solid rgba(248,242,232,0.34); border-radius: 999px; padding: 8px 15px; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(248,242,232,0.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; align-items: center; justify-content: center; }
.hero-actions .price { font-family: var(--serif); font-size: 22px; color: rgba(248,242,232,0.78); }
.hero-actions .btn-primary { box-shadow: 0 20px 40px -20px rgba(0,0,0,0.8); }
.hero-actions .see { border: 1px solid rgba(248,242,232,0.4); color: var(--light); border-radius: 999px; padding: 18px 32px; font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-dots { position: absolute; left: clamp(28px,7vw,110px); bottom: clamp(28px,4vw,52px); z-index: 60; display: flex; align-items: center; gap: 14px; }
.hero-dots button { width: 18px; height: 3px; border: none; padding: 0; border-radius: 999px; background: rgba(58,42,34,0.28); cursor: pointer; transition: all .5s cubic-bezier(.2,.7,.2,1); }
.hero-dots button.on { width: 46px; background: var(--ink); }
.hero-arrows { position: absolute; right: clamp(28px,7vw,110px); bottom: clamp(28px,4vw,52px); z-index: 60; display: flex; gap: 10px; }
.hero-arrow { width: 52px; height: 52px; border-radius: 999px; border: 1px solid rgba(58,42,34,0.24); background: rgba(58,42,34,0.04); color: var(--ink); font-size: 17px; cursor: pointer; transition: all .4s ease; }
.hero-arrow:hover { border-color: var(--maroon); color: var(--maroon); }

/* Reveal loaf */
.reveal-wrap { position: relative; height: 230vh; background: linear-gradient(to bottom, #EFE4D3 0%, #E7D9C4 60%, #3A2A22 100%); }
.reveal-sticky { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; overflow: hidden; }
.reveal-frame { position: relative; width: 34vw; height: 56vh; border-radius: 400px 400px 30px 30px; overflow: hidden; box-shadow: 0 60px 120px -50px rgba(58,42,34,0.7); }
.reveal-frame img, .reveal-frame video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.22); transform-origin: center 40%; }
.reveal-frame .slot { background: rgba(246,239,228,0.08); }
.reveal-frame .slot span { color: rgba(246,239,228,0.7); }
.reveal-cap { position: absolute; left: 0; right: 0; bottom: 9vh; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; padding: 0 24px; text-align: center; }
.reveal-cap p { margin: 0; font-family: var(--serif); font-size: clamp(26px,3.2vw,44px); font-weight: 300; color: var(--cream); }

/* Reveal-on-scroll */
[data-reveal] { transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
[data-reveal].hidden { opacity: 0; transform: translateY(22px); }

/* Sections */
.section-cream { background: var(--cream); padding: clamp(90px,11vw,160px) 34px; }
.section-alt { background: var(--sand); padding: clamp(90px,11vw,160px) 34px; }
.best { padding-bottom: clamp(90px,11vw,160px); }
.section-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; padding-bottom: 52px; border-bottom: 1px solid rgba(58,42,34,0.12); }
.menu .section-head { border-bottom: none; padding-bottom: 0; }
.section-lead { margin: 0; font-size: 15.5px; line-height: 1.8; color: var(--ink-soft); max-width: 38ch; }
.center-head { text-align: center; max-width: 640px; margin: 0 auto clamp(44px,5vw,72px); }

/* Story */
.story { background: var(--ink); color: #EDE0CC; padding: clamp(90px,11vw,170px) 34px; }
.story-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(320px,1fr)); gap: clamp(44px,6vw,96px); align-items: center; }
.story-h { margin: 20px 0 0; font-family: var(--serif); font-weight: 300; font-size: clamp(34px,4.4vw,64px); line-height: 1.1; letter-spacing: -0.015em; color: var(--cream); }
.story-p { margin: 26px 0 0; font-size: 17px; line-height: 1.85; color: rgba(237,224,204,0.78); max-width: 52ch; }
.story-sign { margin: 34px 0 0; font-family: var(--serif); font-style: italic; font-size: 24px; color: #D8BFA0; }
.portrait-frame { position: relative; width: 100%; aspect-ratio: 4/5; border-radius: 280px 280px 22px 22px; overflow: hidden; box-shadow: 0 50px 90px -46px rgba(0,0,0,0.7); background: var(--sand-2); }

/* Product cards (best sellers) */
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(258px,1fr)); gap: clamp(20px,2.4vw,34px); padding-top: clamp(38px,4vw,58px); }
.card { background: var(--cream-2); border: 1px solid rgba(58,42,34,0.08); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; transition: transform .48s cubic-bezier(.2,.7,.2,1), box-shadow .48s ease; box-shadow: 0 18px 42px -34px rgba(58,42,34,0.55); }
.card:hover { transform: translateY(-6px); box-shadow: 0 40px 70px -40px rgba(58,42,34,0.5); }
.card-img { position: relative; aspect-ratio: 1/1; background: var(--sand); }
.card-body { padding: 26px 24px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-cat { font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--tan); }
.card h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 27px; line-height: 1.15; color: var(--ink); }
.card-desc { margin: 0; font-size: 14.5px; line-height: 1.7; color: var(--ink-soft); flex: 1; }
.card-price { margin: 0; font-family: var(--serif); font-size: 20px; color: var(--maroon); }
.btn-choose { margin-top: 4px; width: 100%; background: none; border: 1px solid rgba(58,42,34,0.22); border-radius: 999px; padding: 14px; font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); cursor: pointer; transition: all .3s ease; }
.btn-choose:hover:not(:disabled) { background: var(--maroon); border-color: var(--maroon); color: var(--light); }
.btn-choose:disabled { opacity: 0.5; cursor: not-allowed; }
.soldout-badge { position: absolute; top: 14px; left: 14px; background: rgba(35,23,17,0.82); color: var(--light); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; }
.low-badge { position: absolute; top: 14px; left: 14px; background: rgba(101,10,39,0.9); color: var(--light); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; padding: 7px 12px; border-radius: 999px; }

/* Category tiles */
.grid-cats { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: clamp(16px,2vw,26px); }
.cat-tile { position: relative; display: block; aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; background: var(--sand-2); box-shadow: 0 20px 46px -34px rgba(58,42,34,0.6); }
.cat-scrim { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(to top, rgba(35,23,17,0.78) 0%, rgba(35,23,17,0.12) 52%, rgba(35,23,17,0) 78%); }
.cat-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px; pointer-events: none; }
.cat-label h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 29px; color: var(--light); line-height: 1.1; }
.cat-label p { margin: 8px 0 0; font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(248,242,232,0.66); }

/* Promise */
.promise { background: var(--sand); padding: clamp(90px,11vw,160px) 0; overflow: hidden; }
.promise .wrap { padding: 0 34px; }
.marquee { display: flex; width: max-content; margin-top: clamp(44px,5vw,74px); }
.marquee-track { display: flex; align-items: center; animation: jkMarquee 34s linear infinite; }
.marquee-track span { display: flex; align-items: center; gap: 34px; padding: 0 34px; font-family: var(--serif); font-size: clamp(26px,2.6vw,40px); font-weight: 300; color: #5A463A; white-space: nowrap; }
.marquee-track span i { width: 7px; height: 7px; border-radius: 999px; background: var(--maroon); flex-shrink: 0; display: inline-block; }
.promise-grid { max-width: 1240px; margin: clamp(52px,6vw,86px) auto 0; padding: 0 34px; display: grid; grid-template-columns: repeat(auto-fit,minmax(232px,1fr)); gap: 1px; background: rgba(58,42,34,0.12); border: 1px solid rgba(58,42,34,0.12); border-radius: 18px; overflow: hidden; }
.promise-card { background: var(--cream); padding: 36px 30px; display: flex; flex-direction: column; gap: 12px; }
.promise-card .num { font-family: var(--serif); font-size: 40px; font-weight: 300; color: var(--maroon); line-height: 1; }
.promise-card h3 { margin: 0; font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); }
.promise-card p { margin: 0; font-size: 15px; line-height: 1.75; color: var(--ink-soft); }

/* Ingredients */
.grid-ing { margin-top: clamp(44px,5vw,76px); display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: clamp(18px,2.2vw,30px); }
.ing { display: flex; flex-direction: column; gap: 18px; }
.ing-photo { position: relative; aspect-ratio: 1/1; border-radius: 999px; overflow: hidden; background: var(--sand); box-shadow: inset 0 0 0 1px rgba(58,42,34,0.08); }
.ing h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 23px; color: var(--ink); }
.ing p { margin: 7px 0 0; font-size: 14px; line-height: 1.65; color: var(--ink-soft); }

/* Full menu */
.menu { background: var(--sand); padding: clamp(90px,11vw,160px) 34px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter { background: transparent; border: 1px solid rgba(58,42,34,0.2); color: #5A463A; border-radius: 999px; padding: 12px 22px; font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: all .3s ease; }
.filter.on { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.grid-menu { margin-top: clamp(38px,4vw,60px); display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: clamp(18px,2.2vw,30px); }
.menu-card { background: var(--cream-2); border: 1px solid rgba(58,42,34,0.08); border-radius: 22px; display: flex; flex-direction: column; overflow: hidden; transition: transform .48s cubic-bezier(.2,.7,.2,1), box-shadow .48s ease; }
.menu-card:hover { transform: translateY(-5px); box-shadow: 0 38px 66px -42px rgba(58,42,34,0.5); }
.menu-top { display: flex; gap: 20px; padding: 22px 22px 0; }
.menu-thumb { position: relative; width: 104px; height: 104px; flex-shrink: 0; border-radius: 16px; overflow: hidden; background: var(--sand); }
.menu-top .cat { font-size: 10px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--tan); }
.menu-top h3 { margin: 8px 0 0; font-family: var(--serif); font-weight: 400; font-size: 24px; line-height: 1.15; color: var(--ink); }
.menu-top .ing-line { margin: 8px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-faint); }
.menu-foot { padding: 18px 22px 22px; margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.menu-price { font-family: var(--serif); font-size: 19px; color: var(--maroon); }
.menu-size { font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tan); display: block; margin-top: 3px; }
.btn-choose-sm { background: none; border: 1px solid rgba(58,42,34,0.22); border-radius: 999px; padding: 11px 20px; font-family: var(--sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); cursor: pointer; transition: all .3s ease; }
.btn-choose-sm:hover:not(:disabled) { background: var(--maroon); border-color: var(--maroon); color: var(--light); }
.btn-choose-sm:disabled { opacity: 0.5; cursor: not-allowed; }

/* Image slot placeholder */
.slot { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 12px; background: repeating-linear-gradient(45deg, rgba(58,42,34,0.03), rgba(58,42,34,0.03) 10px, rgba(58,42,34,0.06) 10px, rgba(58,42,34,0.06) 20px); }
.slot span { font-size: 11px; line-height: 1.5; color: var(--ink-faint); font-style: italic; font-family: var(--serif); }
.slot-img { width: 100%; height: 100%; object-fit: cover; }

/* Comparison */
.compare { margin-top: clamp(44px,5vw,72px); display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: clamp(20px,2.4vw,32px); }
.compare-them { background: rgba(58,42,34,0.035); border: 1px dashed rgba(58,42,34,0.2); border-radius: 20px; padding: 38px 32px; }
.compare-us { background: var(--cream-2); border: 1px solid rgba(101,10,39,0.22); border-radius: 20px; padding: 38px 32px; box-shadow: 0 34px 70px -46px rgba(58,42,34,0.55); }
.compare h3 { margin: 0 0 24px; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; }
.compare-them h3 { color: var(--ink-faint); }
.compare-us h3 { color: var(--maroon); }
.compare ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.compare li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; line-height: 1.6; }
.compare-them li { color: var(--ink-faint); }
.compare-us li { color: var(--ink); }
.compare li::before { content: ""; flex-shrink: 0; margin-top: 9px; }
.compare-them li::before { width: 7px; height: 1px; background: var(--tan); margin-top: 11px; }
.compare-us li::before { width: 7px; height: 7px; border-radius: 999px; background: var(--maroon); }

/* Reviews */
.reviews { background: var(--ink); padding: clamp(90px,11vw,160px) 34px; color: #EDE0CC; }
.grid-reviews { margin-top: clamp(44px,5vw,72px); display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: clamp(20px,2.4vw,32px); }
.review { margin: 0; background: rgba(246,239,228,0.05); border: 1px solid rgba(246,239,228,0.12); border-radius: 20px; padding: 36px 30px; display: flex; flex-direction: column; gap: 22px; }
.review blockquote { margin: 0; font-family: var(--serif); font-style: italic; font-weight: 300; font-size: 23px; line-height: 1.5; color: var(--cream); }
.review figcaption { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.reviews .note { margin: 26px auto 0; color: rgba(237,224,204,0.42); }

/* Instagram */
.grid-ig { margin-top: clamp(34px,4vw,56px); display: grid; grid-template-columns: repeat(auto-fit,minmax(160px,1fr)); gap: clamp(10px,1.4vw,18px); }
.ig-tile { position: relative; aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; background: var(--sand-2); }

/* FAQ */
.faq { margin-top: clamp(40px,4.5vw,64px); border-top: 1px solid rgba(58,42,34,0.14); }
.faq-item { border-bottom: 1px solid rgba(58,42,34,0.14); }
.faq-q { width: 100%; background: none; border: none; padding: 28px 4px; display: flex; align-items: center; justify-content: space-between; gap: 22px; text-align: left; cursor: pointer; font-family: var(--serif); font-size: clamp(20px,2.1vw,27px); font-weight: 400; color: var(--ink); transition: color .26s ease; }
.faq-q:hover { color: var(--maroon); }
.faq-icon { position: relative; flex-shrink: 0; width: 26px; height: 26px; transition: transform .42s cubic-bezier(.2,.7,.2,1); }
.faq-icon::before { content: ""; position: absolute; top: 12.5px; left: 4px; right: 4px; height: 1px; background: var(--maroon); }
.faq-icon::after { content: ""; position: absolute; left: 12.5px; top: 4px; bottom: 4px; width: 1px; background: var(--maroon); transition: opacity .3s ease; }
.faq-item.open .faq-icon { transform: rotate(90deg); }
.faq-item.open .faq-icon::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.2,.7,.2,1); }
.faq-a p { margin: 0; padding: 0 60px 30px 4px; font-size: 16px; line-height: 1.8; color: var(--ink-soft); }

/* CTA */
.cta { background: var(--maroon); padding: clamp(80px,9vw,140px) 34px; text-align: center; color: var(--light); }
.cta-h { margin: 0; font-family: var(--serif); font-weight: 300; font-style: italic; font-size: clamp(34px,4.6vw,66px); line-height: 1.12; letter-spacing: -0.015em; color: var(--light); }
.cta-p { margin: 24px auto 0; font-size: 16.5px; line-height: 1.8; color: rgba(248,242,232,0.74); max-width: 46ch; }
.cta-p b { color: var(--light); font-weight: 500; }
.cta .btn { margin-top: 36px; }

/* Footer */
footer { background: var(--cream); padding: clamp(70px,8vw,120px) 34px 40px; }
.footer-inner { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit,minmax(210px,1fr)); gap: clamp(34px,4vw,64px); padding-bottom: 56px; border-bottom: 1px solid rgba(58,42,34,0.12); }
.footer-logo { width: 170px; height: 170px; object-fit: contain; mix-blend-mode: multiply; margin: -22px 0 0 -14px; }
.footer-tag { margin: 8px 0 0; font-size: 15px; line-height: 1.75; color: var(--ink-soft); max-width: 30ch; }
footer h4 { margin: 0 0 18px; font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: #9A7F6D; }
footer div a, footer div span { display: block; color: #5A463A; font-size: 15px; margin-bottom: 12px; }
footer div a:hover { color: var(--maroon); }
.footer-bottom { max-width: 1320px; margin: 22px auto 0; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #9A7F6D; }
.admin-link { color: var(--maroon); }

/* Modal (size picker) */
.modal-root { position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cart-root { position: fixed; inset: 0; z-index: 1200; }
.overlay { position: absolute; inset: 0; background: rgba(35,23,17,0.55); backdrop-filter: blur(4px); animation: jkFadeUp .26s ease both; }
.picker { position: relative; width: min(560px, 100%); max-height: 92vh; overflow-y: auto; background: var(--light); border-radius: 26px; box-shadow: 0 60px 120px -40px rgba(35,23,17,0.7); animation: jkFadeUp .38s cubic-bezier(.2,.7,.2,1) both; }
.picker-head { display: flex; gap: 20px; padding: 26px 26px 22px; border-bottom: 1px solid rgba(58,42,34,0.12); align-items: flex-start; }
.picker-thumb { position: relative; width: 92px; height: 92px; flex-shrink: 0; border-radius: 16px; overflow: hidden; background: var(--sand); }
.picker-meta { flex: 1; min-width: 0; }
.picker-head .eyebrow { color: var(--tan); }
.picker-head h3 { margin: 8px 0 0; font-family: var(--serif); font-weight: 400; font-size: 29px; line-height: 1.1; color: var(--ink); }
.picker-head .ing { margin: 7px 0 0; font-size: 13.5px; line-height: 1.6; color: var(--ink-faint); }
.picker-close { background: none; border: none; font-size: 20px; line-height: 1; color: var(--ink-faint); cursor: pointer; padding: 2px 4px; }
.picker-close:hover { color: var(--maroon); }
.picker-opts { padding: 22px 26px 6px; display: flex; flex-direction: column; gap: 10px; }
.opt { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; text-align: left; background: transparent; border: 1px solid rgba(58,42,34,0.16); border-radius: 16px; padding: 18px 20px; cursor: pointer; font-family: var(--sans); transition: all .26s ease; }
.opt.on { background: rgba(101,10,39,0.06); border-color: var(--maroon); }
.opt:disabled { opacity: 0.45; cursor: not-allowed; }
.opt-left { display: flex; align-items: center; gap: 14px; }
.opt-dot { width: 16px; height: 16px; border-radius: 999px; border: 1px solid rgba(58,42,34,0.3); flex-shrink: 0; }
.opt.on .opt-dot { border-color: var(--maroon); background: var(--maroon); }
.opt-label { font-family: var(--serif); font-size: 22px; color: var(--ink); line-height: 1.1; display: block; }
.opt-note { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tan); }
.opt-price { font-family: var(--serif); font-size: 24px; color: var(--maroon); white-space: nowrap; }
.picker-foot { padding: 20px 26px 26px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.qty { display: flex; align-items: center; gap: 16px; border: 1px solid rgba(58,42,34,0.18); border-radius: 999px; padding: 10px 18px; }
.qty button { background: none; border: none; cursor: pointer; color: var(--maroon); font-size: 19px; line-height: 1; padding: 0; }
.qty span { font-size: 15px; min-width: 16px; text-align: center; color: var(--ink); }
.picker-add { flex: 1; min-width: 200px; background: var(--maroon); border: none; border-radius: 999px; padding: 18px 26px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); cursor: pointer; transition: all .3s ease; }
.picker-add:hover { background: var(--maroon-dark); }

/* Cart drawer */
.cart-root { display: flex; justify-content: flex-end; }
.cart { position: relative; width: min(430px,100vw); height: 100%; background: var(--light); box-shadow: -30px 0 80px -30px rgba(35,23,17,0.6); display: flex; flex-direction: column; animation: jkFadeUp .42s cubic-bezier(.2,.7,.2,1) both; }
.cart-head { padding: 28px 28px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(58,42,34,0.12); }
.cart-head h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 27px; color: var(--ink); }
.cart-head button { background: none; border: none; font-family: var(--sans); font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-faint); cursor: pointer; }
.cart-head button:hover { color: var(--maroon); }
.cart-body { flex: 1; overflow-y: auto; padding: 8px 28px; }
.cart-empty { margin: 44px 0; font-family: var(--serif); font-style: italic; font-size: 21px; color: var(--ink-faint); text-align: center; }
.cart-line { display: flex; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid rgba(58,42,34,0.1); }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line h4 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 20px; color: var(--ink); }
.cart-line p { margin: 5px 0 0; font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tan); }
.cart-foot { padding: 24px 28px 30px; border-top: 1px solid rgba(58,42,34,0.12); display: flex; flex-direction: column; gap: 14px; }
.cart-total-row { display: flex; justify-content: space-between; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-faint); align-items: center; }
.cart-total-row .amt { font-family: var(--serif); font-size: 22px; letter-spacing: 0; text-transform: none; color: var(--ink); }
.checkout { background: var(--maroon); border: none; border-radius: 999px; padding: 17px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); cursor: pointer; transition: all .3s ease; }
.checkout:hover { background: var(--maroon-dark); }
.cart-pay { margin: 0; text-align: center; font-size: 12px; color: #9A7F6D; }

/* Sticky mobile basket */
.sticky-basket { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 1000; display: none; align-items: center; justify-content: center; gap: 12px; background: var(--maroon); border: none; border-radius: 999px; padding: 18px; font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--light); box-shadow: 0 20px 40px -18px rgba(58,42,34,0.8); cursor: pointer; }
.sticky-basket.show { display: flex; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .reveal-frame { width: 70vw; }
}
@media (max-width: 720px) {
  .announce { gap: 16px; font-size: 10px; }
  .nav-inner { padding: 10px 20px; }
  .section-cream, .menu, .section-alt, .reviews { padding-inline: 20px; }
}
