/* ==========================================================================
   King's Table Sourdough  ::  editorial redesign v3
   ========================================================================== */

:root {
  --paper:      #FAF5EC;
  --paper-2:    #F1E7D6;
  --card:       #FFFFFF;
  --ink:        #241C12;
  --ink-soft:   #5A4F41;
  --muted:      #93856F;
  --line:       #E4D7C1;
  --clay:       #7E784E;
  --clay-deep:  #575334;
  --olive:      #5E5B3E;
  --gold:       #C7C39C;
  --shadow:     0 30px 70px -40px rgba(52, 46, 28, 0.5);
  --shadow-sm:  0 14px 34px -22px rgba(52, 46, 28, 0.4);

  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:    "Mulish", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.8; font-weight: 300;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; line-height: 1.04; letter-spacing: -0.005em; margin: 0; text-wrap: balance; }
.hero-tagline, .section-head p, .band blockquote, .cta p, .hero-lead { text-wrap: balance; }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 32px; }

/* Micro type -------------------------------------------------------------- */
.kicker {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 11.5px; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--clay); margin: 0 0 26px;
}
.kicker::before { content: ""; width: 30px; height: 1px; background: var(--clay); opacity: 0.6; }
.kicker.center { justify-content: center; }
.section-head .kicker, .story-body .kicker { color: var(--clay); }
.lede { font-size: 1.12rem; color: var(--ink-soft); font-weight: 300; }
.verse { font-family: var(--display); font-style: italic; font-weight: 500; line-height: 1.4; color: var(--ink); }
.verse cite {
  display: block; font-family: var(--sans); font-style: normal; font-size: 11px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--clay); margin-top: 16px;
}

/* Brand logotype (emblem + name) ------------------------------------------ */
.logotype { display: inline-flex; flex-direction: column; align-items: center; text-decoration: none; }
.logotype .lt-name {
  font-family: var(--sans); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; line-height: 1; color: var(--ink);
}
.logotype .lt-sub {
  font-family: var(--sans); font-weight: 300; text-transform: uppercase;
  letter-spacing: 0.46em; line-height: 1; color: var(--clay); margin-top: 10px;
}

/* Buttons ----------------------------------------------------------------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; text-decoration: none; padding: 17px 34px; border-radius: 999px;
  border: 1px solid var(--ink); transition: all .3s ease; cursor: pointer;
}
.btn::after { content: "\2192"; font-size: 15px; transition: transform .3s ease; }
.btn:hover::after { transform: translateX(5px); }
.btn-solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-solid:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250, 245, 236, 0.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.brand { display: inline-flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { height: 72px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name b { font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: 0.19em; text-transform: uppercase; color: var(--ink); }
.brand-name span { font-family: var(--sans); font-weight: 300; font-size: 9.5px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--clay); margin-top: 4px; }
.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  text-decoration: none; font-size: 12px; font-weight: 400; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft); transition: color .25s; position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1px;
  background: var(--clay); transition: width .3s ease;
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 11px 24px; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); }
.nav-cta:hover { background: var(--ink); color: var(--paper); }
.nav-toggle { display: none; }

/* Loading screen ---------------------------------------------------------- */
.loader {
  position: fixed; inset: 0; z-index: 200; background: var(--paper);
  display: grid; place-items: center; transition: opacity .75s ease, visibility .75s ease;
}
.loader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { width: min(86vw, 400px); text-align: center; }
.loader-logo { height: 120px; width: auto; margin: 0 auto 18px; animation: floaty 3s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.loader-name { margin-bottom: 30px; }
.loader-name b { display: block; font-family: var(--sans); font-weight: 600; font-size: 1.5rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); line-height: 1; }
.loader-name span { display: block; font-family: var(--sans); font-weight: 300; font-size: 0.8rem; letter-spacing: 0.46em; text-transform: uppercase; color: var(--clay); margin-top: 8px; }
.loader-phrase { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.6rem; color: var(--ink-soft); margin: 0 0 24px; min-height: 1.5em; }
.loader-bar { height: 2px; width: 100%; background: var(--line); border-radius: 4px; overflow: hidden; }
.loader-bar span { display: block; height: 100%; width: 0%; background: var(--clay); border-radius: 4px; }
.loader-pct { margin: 18px 0 0; font-family: var(--sans); font-size: 10.5px; font-weight: 500; letter-spacing: 0.3em; color: var(--muted); }
@media (prefers-reduced-motion: reduce) { .loader-logo { animation: none; } }

/* Hero  ::  big logotype -------------------------------------------------- */
.hero { position: relative; overflow: hidden; }
.hero-inner {
  min-height: min(90vh, 860px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 70px 0 62px;
}
.hero-logotype { align-items: center; margin: 0 0 30px; animation: heroRise 1.2s cubic-bezier(.2,.7,.2,1) .15s both; }
.hero-logotype img { height: clamp(150px, 23vw, 250px); width: auto; margin-bottom: 24px; transform-origin: center; animation: emblemFloat 6.5s ease-in-out infinite; }
.hero-tagline { animation: heroRise 1.2s cubic-bezier(.2,.7,.2,1) .3s both; }
@keyframes heroRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes emblemFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(-1.2deg); } }
.hero-logotype .lt-name { font-size: clamp(1.9rem, 4.6vw, 3.2rem); letter-spacing: 0.2em; }
.hero-logotype .lt-sub { font-size: clamp(0.9rem, 2vw, 1.35rem); letter-spacing: 0.52em; margin-top: 14px; }
.hero-tagline {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.1; color: var(--ink);
  margin: 8px 0 22px; max-width: 18ch;
}
.hero-tagline em { color: var(--clay-deep); }
.hero-lead { max-width: 44ch; margin: 0 auto 34px; color: var(--ink-soft); font-size: 1.18rem; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 34px; }
.hero-area {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted);
}
.hero-area::before, .hero-area::after { content: ""; width: 34px; height: 1px; background: var(--line); }
.hero-area strong { color: var(--ink-soft); font-weight: 500; }

/* Section scaffold -------------------------------------------------------- */
.section { position: relative; padding: 92px 0; }
.section-head { max-width: 700px; margin-bottom: 64px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 500; }
.section-head h2 em { font-style: italic; color: var(--clay-deep); }
.section-head p { margin: 22px 0 0; color: var(--ink-soft); font-size: 1.1rem; }
.head-mark { height: 96px; width: auto; display: block; margin: 0 auto 26px; mix-blend-mode: multiply; }

/* Story  ::  single photo + modern pullquote ------------------------------ */
.story { background: var(--paper-2); }
.story-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 72px; align-items: center; }
.story-photo { margin: 0; position: relative; }
.story-photo img {
  width: 100%; aspect-ratio: 4 / 4.7; object-fit: cover;
  border-radius: 230px 230px 10px 10px; box-shadow: var(--shadow);
}
.story-photo figcaption {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  background: rgba(250,245,236,.94); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 20px; font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-soft); white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.story-body h2 { font-size: clamp(2.3rem, 4.4vw, 3.5rem); font-weight: 500; margin-bottom: 30px; }
.story-body h2 em { font-style: italic; color: var(--clay-deep); }
.story-body p { color: var(--ink-soft); margin: 0 0 22px; }
.story-body p.first::first-letter {
  float: left; font-family: var(--display); font-weight: 500; font-size: 4.6rem;
  line-height: 0.72; padding: 8px 14px 0 0; color: var(--clay-deep);
}
.pullquote { margin: 40px 0 0; padding: 30px 0 0; border-top: 1px solid var(--line); position: relative; }
.pullquote::before {
  content: "\201C"; position: absolute; left: -6px; top: -6px;
  font-family: var(--display); font-style: italic; font-size: 5rem; line-height: 1; color: var(--clay); opacity: .35;
}
.pullquote blockquote {
  margin: 0; font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.55rem, 2.7vw, 2.15rem); line-height: 1.32; color: var(--ink); max-width: 26ch;
}
.pullquote blockquote em { color: var(--clay-deep); font-style: italic; }
.pullquote figcaption {
  margin-top: 18px; font-family: var(--sans); font-size: 11px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--clay);
}

/* Verse band -------------------------------------------------------------- */
.band { position: relative; text-align: center; padding: 116px 0; background: var(--ink); color: var(--paper); overflow: hidden; }
.band-mark { height: 68px; width: auto; display: block; margin: 0 auto 30px; opacity: .95; }
.band blockquote {
  margin: 0 auto; max-width: 18ch; font-family: var(--display); font-weight: 500; font-style: italic;
  font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.06; letter-spacing: -0.01em;
}
.band cite {
  display: block; margin-top: 30px; font-family: var(--sans); font-style: normal;
  font-size: 12px; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold);
}

/* Scent callout ----------------------------------------------------------- */
.scent { text-align: center; background: var(--paper); }
.scent-video {
  width: min(460px, 86vw); margin: 0 auto 34px; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: 28px; box-shadow: var(--shadow); background: var(--paper-2);
}
.scent-video video { width: 100%; height: 100%; object-fit: cover; display: block; }
.scent-big {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(2rem, 4.8vw, 3.4rem); line-height: 1.14; color: var(--ink);
  max-width: 20ch; margin: 0 auto 22px; text-wrap: balance;
}
.scent-big em { color: var(--clay-deep); }
.scent-sub { max-width: 46ch; margin: 0 auto; color: var(--ink-soft); font-size: 1.08rem; text-wrap: balance; }
@media (prefers-reduced-motion: reduce) { .scent-steam { animation: none; } }

/* Menu -------------------------------------------------------------------- */
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 34px; }
.item { display: flex; flex-direction: column; }
.item-media { position: relative; overflow: hidden; border-radius: 6px; aspect-ratio: 4 / 5; box-shadow: var(--shadow-sm); }
.item-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.item:hover .item-media img { transform: scale(1.06); }
.item-media .num { position: absolute; top: 16px; left: 18px; font-family: var(--display); font-style: italic; font-size: 1.5rem; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.4); }
.item-head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin: 22px 0 0; padding-bottom: 14px; border-bottom: 1px solid var(--line); transition: border-color .3s; }
.item:hover .item-head { border-color: var(--clay); }
.item-head h3 { font-size: 1.85rem; font-weight: 500; }
.item-head .price { font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--clay-deep); white-space: nowrap; }
.item p { margin: 14px 0 0; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.7; }
.tiers { margin: 14px 0 0; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; }
.tiers b { color: var(--clay-deep); font-weight: 500; }
.item-tag { margin-top: 14px; font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.menu-note { text-align: center; margin-top: 60px; font-family: var(--display); font-style: italic; font-size: 1.5rem; color: var(--ink-soft); }

/* Order builder :: add buttons -------------------------------------------- */
.add-btn {
  margin-top: 16px; align-self: flex-start; cursor: pointer;
  font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink); background: transparent;
  border: 1px solid var(--ink); border-radius: 999px; padding: 12px 26px;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}
.add-btn:hover { background: var(--clay); border-color: var(--clay); color: #fff; }
.add-btn.added, .tier-btn.added { background: var(--clay-deep); border-color: var(--clay-deep); color: #fff; }
.add-btn.added { transform: scale(1.03); }
.addon {
  display: flex; align-items: center; gap: 9px; margin-top: 14px; cursor: pointer;
  font-family: var(--sans); font-size: 0.88rem; color: var(--ink-soft); user-select: none;
}
.addon input { width: 16px; height: 16px; accent-color: var(--clay); cursor: pointer; }
.addon b { color: var(--clay-deep); font-weight: 600; }
.tier-btns { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.tier-btn {
  display: flex; justify-content: space-between; align-items: center; gap: 12px; cursor: pointer;
  font-family: var(--sans); font-size: 0.92rem; color: var(--ink); text-align: left;
  background: transparent; border: 1px solid var(--line); border-radius: 12px; padding: 12px 18px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.tier-btn b { color: var(--clay-deep); font-weight: 600; transition: color .25s ease; }
.tier-btn:hover { background: var(--clay); border-color: var(--clay); color: #fff; }
.tier-btn:hover b, .tier-btn.added b { color: #fff; }

/* Order builder :: floating button ---------------------------------------- */
.cart-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  background: var(--ink); color: var(--paper); border: none; border-radius: 999px;
  padding: 14px 20px; box-shadow: var(--shadow);
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.03em;
  transition: transform .25s ease, background .25s ease;
}
.cart-fab:hover { background: var(--clay-deep); transform: translateY(-2px); }
.cart-fab svg { width: 20px; height: 20px; }
.cart-fab-total { font-weight: 700; }
.cart-fab-count {
  background: var(--clay); color: #fff; border-radius: 999px; min-width: 22px; height: 22px;
  display: grid; place-items: center; font-size: 11px; font-weight: 700; padding: 0 6px;
}
.cart-fab.pulse { animation: cartPulse .45s ease; }
@keyframes cartPulse { 0% { transform: scale(1); } 45% { transform: scale(1.1); } 100% { transform: scale(1); } }

/* Order builder :: drawer ------------------------------------------------- */
.cart-drawer { position: fixed; inset: 0; z-index: 100; visibility: hidden; }
.cart-drawer.open { visibility: visible; }
.cart-scrim { position: absolute; inset: 0; background: rgba(30, 22, 12, .5); opacity: 0; transition: opacity .35s ease; }
.cart-drawer.open .cart-scrim { opacity: 1; }
.cart-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(520px, 92vw);
  background: var(--paper); box-shadow: var(--shadow); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .42s cubic-bezier(.2,.7,.2,1);
  overflow-y: auto;
}
.cart-drawer.open .cart-panel { transform: none; }
.cart-head {
  display: flex; justify-content: space-between; align-items: center; padding: 26px 28px;
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 2; background: var(--paper);
}
.cart-head h3 { font-family: var(--display); font-weight: 500; font-size: 1.85rem; }
.cart-close { background: none; border: none; font-size: 1.9rem; line-height: 1; color: var(--ink-soft); cursor: pointer; padding: 0 4px; }
.cart-close:hover { color: var(--ink); }
.cart-empty { padding: 48px 28px; text-align: center; color: var(--muted); line-height: 1.7; }
.cart-items { padding: 6px 28px; }
.cart-line { display: flex; align-items: center; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-line-img { width: 52px; height: 52px; flex: 0 0 52px; border-radius: 8px; object-fit: cover; background: var(--card); }
.cart-line-info { flex: 1; min-width: 0; }
.cart-line-name { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; line-height: 1.3; }
.cart-line-price { font-size: 0.82rem; color: var(--muted); margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 10px; }
.cart-qty button { width: 28px; height: 28px; border: 1px solid var(--line); background: var(--card); border-radius: 50%; cursor: pointer; font-size: 1rem; color: var(--ink); display: grid; place-items: center; transition: border-color .2s, color .2s; }
.cart-qty button:hover { border-color: var(--clay); color: var(--clay); }
.cart-qty span { min-width: 18px; text-align: center; font-weight: 600; font-size: 0.95rem; }
.cart-line-total { font-family: var(--sans); font-weight: 600; min-width: 46px; text-align: right; font-size: 0.95rem; }
.cart-foot { padding: 22px 28px 26px; border-top: 1px solid var(--line); }
.cart-pickup { margin-bottom: 22px; }
.pickup-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 13px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
  cursor: pointer; font-family: var(--sans); font-size: 0.88rem; font-weight: 600; color: var(--ink);
  transition: border-color .2s ease;
}
.pickup-toggle:hover { border-color: var(--clay); }
.pickup-chevron { color: var(--muted); transition: transform .2s ease; }
.pickup-chevron.is-open { transform: rotate(180deg); }
.pickup-cal { border: 1px solid var(--line); border-radius: 10px; padding: 14px; background: #fff; margin-top: 8px; }
.pickup-cal-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--display); font-size: 1.05rem; color: var(--ink); margin-bottom: 10px;
}
.pickup-nav {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer; display: grid; place-items: center; font-size: 0.9rem;
  transition: border-color .2s ease, color .2s ease;
}
.pickup-nav:hover:not(:disabled) { border-color: var(--clay); color: var(--clay-deep); }
.pickup-nav:disabled { opacity: 0.3; cursor: default; }
.pickup-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.pickup-dow {
  text-align: center; font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.04em; color: var(--muted); padding-bottom: 4px; text-transform: uppercase;
}
.pickup-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: none; background: transparent; font-family: var(--sans); font-size: 0.85rem;
  color: var(--muted); cursor: default;
}
.pickup-day.is-saturday {
  color: var(--clay-deep); font-weight: 600; cursor: pointer; border: 1px solid var(--clay);
  transition: background .2s ease, color .2s ease;
}
.pickup-day.is-saturday:hover { background: var(--clay); color: #fff; }
.pickup-day.is-selected { background: var(--clay); color: #fff; border-color: var(--clay); }
.pickup-day.is-disabled { color: var(--line); }
.cart-coupon { display: flex; gap: 8px; margin-bottom: 8px; }
.coupon-input {
  flex: 1; padding: 11px 13px; box-sizing: border-box; border: 1px solid var(--line); border-radius: 6px;
  background: #fff; font-family: var(--sans); font-size: 0.85rem; color: var(--ink); text-transform: uppercase;
}
.coupon-input:focus { outline: none; border-color: var(--clay); }
.coupon-apply {
  padding: 0 20px; border: 1px solid var(--ink); border-radius: 6px; background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em; cursor: pointer;
  transition: background .2s ease;
}
.coupon-apply:hover { background: var(--clay-deep); border-color: var(--clay-deep); }
.coupon-status { margin: -2px 0 14px; font-family: var(--sans); font-size: 0.8rem; color: var(--muted); }
.coupon-status.is-error { color: #b3261e; }
.coupon-status.is-success { color: var(--clay-deep); }
.coupon-remove {
  background: none; border: none; padding: 0; margin-left: 8px; font-family: var(--sans); font-size: 0.72rem;
  color: var(--muted); text-decoration: underline; cursor: pointer;
}
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; font-family: var(--display); }
.cart-total-row span:first-child { font-size: 1.15rem; color: var(--ink-soft); }
.cart-total-row span:last-child { font-size: 1.3rem; font-weight: 500; }
.cart-total-row:last-of-type { margin-bottom: 18px; }
.cart-total-row:last-of-type span:first-child { font-size: 1.15rem; }
.cart-total-row:last-of-type span:last-child { font-size: 2.1rem; font-weight: 500; }
.cart-send { width: 100%; justify-content: center; margin-bottom: 10px; }
.cart-copy {
  width: 100%; padding: 14px; cursor: pointer; background: transparent;
  border: 1px solid var(--line); border-radius: 999px;
  font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft); transition: all .25s ease;
}
.cart-copy:hover { border-color: var(--ink); color: var(--ink); }
.cart-copy.copied { background: var(--clay); border-color: var(--clay); color: #fff; }
.cart-note { margin: 16px 0 0; font-size: 0.8rem; color: var(--muted); line-height: 1.5; text-align: center; }

.cart-pay-card { margin-bottom: 18px; }
.pay-card-label {
  font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft); margin: 0 0 10px;
}
.pay-email {
  width: 100%; padding: 13px 14px; margin-bottom: 8px; box-sizing: border-box;
  border: 1px solid var(--line); border-radius: 6px; background: #fff;
  font-family: var(--sans); font-size: 0.88rem; color: var(--ink);
  transition: border-color .2s ease; -webkit-appearance: none; appearance: none;
}
.pay-email::placeholder { color: var(--muted); }
.pay-email:focus { outline: none; border-color: var(--clay); }
#sqCardContainer {
  margin-bottom: 12px; min-height: 40px; display: flex; align-items: center;
  font-family: var(--sans); font-size: 0.82rem; color: var(--muted); cursor: default;
}
#sqCardContainer:empty { cursor: default; }
.cart-pay-btn { width: 100%; justify-content: center; }
.pay-card-status { margin: 10px 0 0; font-size: 0.82rem; color: var(--clay-deep); line-height: 1.5; text-align: center; }
.pay-secure {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  margin: 12px 0 0; font-family: var(--sans); font-size: 0.76rem; color: var(--muted);
}
.pay-secure svg { width: 14px; height: 14px; flex: 0 0 14px; color: var(--muted); }
.cart-divider {
  display: flex; align-items: center; gap: 12px; margin: 18px 0;
  font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}
.cart-divider::before, .cart-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.cart-alt-pay { display: flex; gap: 10px; margin-bottom: 12px; }
.alt-pay-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 8px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--sans); font-size: 0.82rem; font-weight: 600; color: var(--ink);
  text-decoration: none; cursor: pointer; transition: border-color .2s ease;
}
.alt-pay-btn:hover { border-color: var(--clay); }
.alt-pay-ico { width: 20px; height: 20px; flex: 0 0 20px; }
.cart-paid { padding: 40px 28px; text-align: center; }
.cart-paid-msg { font-family: var(--display); font-size: 1.4rem; color: var(--clay-deep); margin-bottom: 22px; }
.cart-paid .btn { width: 100%; justify-content: center; margin-bottom: 14px; }
.cart-paid .cart-note { margin-top: 18px; }

/* Order  ::  animated + colorful hovers ----------------------------------- */
.order { background: var(--card); }
.order-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.order-grid > * { min-width: 0; }
.order-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.pay-slider { width: 100%; }
.order-figure { margin: 0; overflow: hidden; border-radius: 8px 8px 220px 220px; box-shadow: var(--shadow); }
.order-figure img { width: 100%; aspect-ratio: 3/4; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.order-figure:hover img { transform: scale(1.05); }
.steps { list-style: none; margin: 0 0 40px; padding: 0; counter-reset: step; }
.steps li { position: relative; padding: 0 0 30px 74px; counter-increment: step; }
.steps li:not(:last-child)::after { content: ""; position: absolute; left: 26px; top: 56px; bottom: 4px; width: 1px; background: var(--line); }
.steps li::before {
  content: counter(step, decimal-leading-zero); position: absolute; left: 0; top: -6px;
  width: 54px; height: 54px; border: 1px solid var(--clay); border-radius: 50%; color: var(--clay-deep);
  background: transparent; display: grid; place-items: center; font-family: var(--display);
  font-style: italic; font-size: 1.4rem; transition: transform .35s cubic-bezier(.2,.7,.2,1), background .35s ease, color .35s ease, box-shadow .35s ease;
}
.steps li:hover::before { background: var(--clay); color: #fff; transform: scale(1.12) rotate(-4deg); box-shadow: 0 12px 26px -12px rgba(176,107,65,.7); }
.steps h3 { font-size: 1.6rem; font-weight: 500; margin-bottom: 4px; transition: color .3s ease, transform .3s ease; }
.steps li:hover h3 { color: var(--clay-deep); transform: translateX(4px); }
.steps p { margin: 0; color: var(--ink-soft); font-size: 0.98rem; }
/* Payment slider */
.pay-label { margin: 34px 0 16px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.pay-slider {
  overflow: hidden; margin: 0 0 36px; width: 100%;
  background: transparent; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.pay-track { display: flex; width: max-content; animation: payslide 26s linear infinite; }
.pay-slider:hover .pay-track { animation-play-state: paused; }
@keyframes payslide { to { transform: translateX(-25%); } }
.pay-set { display: flex; gap: 8px; padding-right: 8px; }
.pay-badge {
  display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; text-decoration: none;
  background: transparent; border: 1px solid transparent; border-radius: 999px;
  padding: 9px 24px; color: var(--ink); transition: transform .3s ease, background .3s ease;
}
.pay-badge:hover { transform: translateY(-3px); background: var(--paper); }
.pay-ico { width: 36px; height: 36px; flex: 0 0 36px; }
.pay-ico svg { display: block; width: 100%; height: 100%; }
.pay-name { font-family: var(--sans); font-weight: 500; font-size: 14px; letter-spacing: 0.03em; }
.qr-row { display: flex; flex-wrap: wrap; gap: 18px; margin: 0 0 34px; }
.qr-card {
  display: flex; flex-direction: column; align-items: center; gap: 9px; width: 150px;
  padding: 16px 14px 18px; text-decoration: none; color: var(--ink);
  background: var(--card); border: 1px solid var(--line); border-radius: 16px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.qr-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); border-color: var(--clay); }
.qr-media { width: 114px; height: 114px; display: grid; place-items: center; }
.qr-media img { width: 100%; height: 100%; display: block; }
.qr-media .qr-tile { width: 92px; height: 92px; }
.qr-card b { font-family: var(--sans); font-weight: 600; font-size: 13.5px; letter-spacing: 0.02em; margin-top: 2px; }
.qr-card > span { font-family: var(--sans); font-size: 11px; color: var(--muted); letter-spacing: 0.02em; }
@media (prefers-reduced-motion: reduce) { .pay-track { animation: none; } }

/* Serve  ::  Florida outline + city list ---------------------------------- */
.serve { background: var(--paper); }
.serve-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 66px; align-items: center; }
.fl-figure { position: relative; margin: 0; }
.fl-outline { width: 100%; height: auto; display: block; color: var(--clay); overflow: visible; }
.fl-shape { fill: #F1E7D6; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
.fl-ring { fill: none; stroke: var(--clay); stroke-width: 1.4; opacity: .45; }
.fl-heart { fill: var(--clay); transform-box: fill-box; transform-origin: center; animation: heartPulse 2.6s ease-in-out infinite; }
@keyframes heartPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.fl-cap {
  position: absolute; left: 50%; bottom: 4px; transform: translateX(-50%);
  font-family: var(--sans); font-size: 10.5px; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.serve-list { list-style: none; margin: 0 auto; padding: 0; max-width: 900px; display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 56px; }
.serve-row { display: flex; align-items: center; gap: 22px; padding: 26px 6px; border-bottom: 1px solid var(--line); transition: padding .3s ease; }
.serve-row:nth-child(1), .serve-row:nth-child(2) { border-top: 1px solid var(--line); }
.serve-ico { width: 58px; height: 42px; flex: 0 0 58px; color: var(--clay); transition: color .3s ease, transform .35s cubic-bezier(.2,.7,.2,1); }
.serve-row:hover { padding-left: 16px; }
.serve-row:hover .serve-ico { color: var(--clay-deep); transform: scale(1.08) rotate(-3deg); }
.serve-txt { display: flex; flex-direction: column; }
.serve-txt b { font-family: var(--display); font-weight: 500; font-size: 1.75rem; line-height: 1.12; color: var(--ink); transition: color .3s ease; }
.serve-row:hover .serve-txt b { color: var(--clay-deep); }
.serve-txt em { font-style: normal; font-size: 0.92rem; color: var(--muted); }
.serve-txt b .home { font-size: 0.85rem; color: var(--clay); margin-left: 6px; }

/* FAQ --------------------------------------------------------------------- */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 56px; }
.faq details { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq summary { cursor: pointer; list-style: none; font-family: var(--display); font-weight: 500; font-size: 1.55rem; display: flex; justify-content: space-between; gap: 18px; align-items: baseline; transition: color .25s ease; }
.faq summary:hover { color: var(--clay-deep); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { color: var(--clay); font-family: var(--sans); font-weight: 300; font-size: 1.4rem; transition: transform .35s; }
.faq details[open] summary .plus { transform: rotate(135deg); }
.faq p { margin: 16px 0 4px; color: var(--ink-soft); font-size: 1rem; max-width: 42ch; }

/* CTA --------------------------------------------------------------------- */
.cta { background: var(--paper-2); text-align: center; padding: 128px 0; }
.cta-logotype { align-items: center; margin: 0 auto 30px; }
.cta-logotype img { height: 96px; width: auto; margin-bottom: 18px; }
.cta-logotype .lt-name { font-size: 1.7rem; }
.cta-logotype .lt-sub { font-size: 0.85rem; }
.cta h2 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; margin-bottom: 22px; }
.cta h2 em { font-style: italic; color: var(--clay-deep); }
.cta p { color: var(--ink-soft); max-width: 42em; margin: 0 auto 36px; font-size: 1.12rem; }

/* Footer ------------------------------------------------------------------ */
.site-footer { background: var(--ink); color: #CDBFA9; padding: 84px 0 38px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 50px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.footer-logotype { align-items: flex-start; margin-bottom: 22px; }
.footer-logotype img { height: 74px; width: auto; margin-bottom: 16px; }
.footer-logotype .lt-name { font-size: 1.3rem; color: var(--paper); }
.footer-logotype .lt-sub { font-size: 0.7rem; color: #C7C39C; letter-spacing: 0.4em; }
.footer-brand p { margin: 0; max-width: 30em; font-size: 0.96rem; line-height: 1.8; }
.footer-col h4 { font-family: var(--sans); font-size: 10.5px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: #C7C39C; margin: 0 0 20px; }
.footer-col a, .footer-col p { color: #CDBFA9; text-decoration: none; display: block; margin-bottom: 12px; font-size: 0.96rem; }
.footer-col a:hover { color: var(--paper); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: 0.8rem; color: #8B7E6B; }
.footer-bottom .disclaimer { max-width: 54ch; }

/* Word fade-in reveal ----------------------------------------------------- */
.tr-word { display: inline-block; opacity: 0; transform: translateY(0.35em); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); }
.tr-in .tr-word { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .tr-word { opacity: 1 !important; transform: none !important; } }

/* Reveal ------------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-logotype, .hero-logotype img, .hero-tagline, .fl-heart, .pay-track { animation: none; }
}

/* Responsive -------------------------------------------------------------- */
@media (max-width: 980px) {
  .story-grid { grid-template-columns: 1fr; gap: 44px; }
  .story-photo { order: -1; max-width: 460px; margin-inline: auto; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .order-grid { grid-template-columns: 1fr; gap: 44px; }
  .order-figure { max-width: 480px; margin-inline: auto; }
  .serve-list { grid-template-columns: 1fr; max-width: 520px; }
  .serve-row:nth-child(2) { border-top: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .wrap { padding: 0 22px; }
  .section { padding: 50px 0; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 22px;
    position: absolute; top: 96px; left: 0; right: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 28px 24px;
  }
  .nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav-toggle span { width: 24px; height: 2px; background: var(--ink); }
  .brand-name { display: none; }
  .brand img { height: 62px; }
  .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .band blockquote { max-width: none; }
  .cart-fab-txt { display: none; }
  .cart-fab { right: 16px; bottom: 16px; padding: 13px 18px; }
  .hero-inner { min-height: auto; padding: 52px 0 46px; }
  .qr-row { justify-content: center; }
  .pay-label { text-align: center; }
  .scent { padding: 64px 0; }
}
