*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #f5f0e8;
  --warm-white: #faf7f2;
  --caramel: #c8852a;
  --brown-butter: #7a4f1e;
  --dark: #1a1208;
  --mid: #4a3520;
  --gold: #d4a04a;
  --light-rule: rgba(122, 79, 30, 0.15);
  --gold-rule: rgba(212, 160, 74, 0.2);
}

html { scroll-behavior: smooth; }

/* ── TOP BANNER ── */
.top-banner {
  width: 100%;
  padding: 0.55rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-wrap: wrap;
  position: relative;
  z-index: 200;
}
.top-banner.banner--open {
  background: var(--dark);
  color: var(--cream);
}
.top-banner.banner--pickup {
  background: var(--caramel);
  color: #fff;
}
.top-banner.banner--countdown {
  background: var(--cream);
  color: var(--dark);
  border-bottom: 1px solid var(--light-rule);
}
.banner-countdown {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}
.banner-cta {
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.banner-cta:hover { opacity: 0.8; }
.top-banner.banner--open .banner-cta {
  background: var(--caramel);
  color: #fff;
}
.top-banner.banner--pickup .banner-cta,
.top-banner.banner--countdown .banner-cta {
  background: var(--dark);
  color: var(--cream);
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--dark);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--light-rule);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--dark);
}

.nav-links { display: flex; align-items: center; gap: 2rem; }

.nav-link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--caramel); }

.nav-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--caramel);
  border-bottom: 1px solid var(--caramel);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.nav-cta:hover { opacity: 0.65; }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(200, 133, 42, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(122, 79, 30, 0.07) 0%, transparent 50%),
    var(--warm-white);
}

/* The 3D scene container — tilts on mouse move */
.hero-scene {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  transform-style: preserve-3d;
  perspective: 1200px;
  transition: transform 0.05s linear;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  transform-style: preserve-3d;
}

.hero-eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--caramel);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: var(--dark);
  margin-bottom: 1.75rem;
  transform: translateZ(40px);
}
.hero h1 em {
  font-style: italic;
  color: var(--brown-butter);
}

.hero-italic {
  display: inline-block;
  font-style: normal;
  transform: skewX(-9deg);
  color: var(--brown-butter);
  letter-spacing: 0.01em;
}

.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  color: var(--mid);
  max-width: 36ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  transform: translateZ(20px);
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--dark);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  transform: translateZ(30px);
}
.btn-primary:hover {
  background: var(--brown-butter);
  color: var(--cream);
  transform: translateZ(40px) scale(1.03);
  box-shadow: 0 12px 40px rgba(122, 79, 30, 0.25);
}

/* Floating 3D cards in hero */
.float-card {
  position: absolute;
  background: rgba(250, 247, 242, 0.75);
  backdrop-filter: blur(16px);
  border: 1px solid var(--light-rule);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  box-shadow:
    0 4px 24px rgba(122, 79, 30, 0.08),
    0 1px 0 rgba(255,255,255,0.9) inset;
  pointer-events: none;
  transition: transform 0.1s linear;
}

.float-card--1 {
  top: 22%;
  left: 8%;
  transform: translateZ(60px) rotate(-4deg);
}
.float-card--2 {
  bottom: 28%;
  left: 6%;
  transform: translateZ(80px) rotate(3deg);
}
.float-card--3 {
  top: 25%;
  right: 7%;
  transform: translateZ(70px) rotate(5deg);
}

.float-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--caramel);
  line-height: 1;
}
.float-card-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.float-card-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--brown-butter);
  line-height: 1.3;
}

/* Blurred orbs */
.float-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0.35;
}
.float-orb--1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,133,42,0.4), transparent 70%);
  top: 10%; right: 15%;
  animation: orb-drift 8s ease-in-out infinite;
}
.float-orb--2 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(122,79,30,0.35), transparent 70%);
  bottom: 15%; left: 10%;
  animation: orb-drift 11s ease-in-out infinite reverse;
}
@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -15px); }
  66% { transform: translate(-15px, 10px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--gold);
  animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Perspective grid canvas */
.hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.55;
}

/* ─── 3D TILT CARDS (reusable) ──────────────────────────── */
.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}
.card-3d-dark {
  transform-style: preserve-3d;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

/* ─── ABOUT ──────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--light-rule);
}

.about-text {
  padding: 6rem 5rem 6rem 6rem;
  border-right: 1px solid var(--light-rule);
}

.label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 1.5rem;
  display: block;
}
.label.light { color: var(--gold); }

.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 2rem;
}
.about-text h2 em { font-style: italic; color: var(--brown-butter); }
.about-text p {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 46ch;
  margin-bottom: 1.25rem;
}

.about-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
  gap: 0;
}

.detail {
  padding: 2.5rem 1.5rem;
  border-bottom: 1px solid var(--light-rule);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  cursor: default;
  border-radius: 2px;
}
.detail:first-child { border-top: 1px solid var(--light-rule); }

.detail-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--caramel);
  line-height: 1;
}
.detail-label {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--mid);
  text-transform: uppercase;
}

/* ─── MENU ───────────────────────────────────────────────── */
.menu {
  background: var(--dark);
  color: var(--cream);
  border-top: 1px solid var(--gold-rule);
}

.menu-header {
  text-align: center;
  padding: 7rem 2rem 3rem;
  border-bottom: 1px solid var(--gold-rule);
}

.menu-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.menu-header h2 em { font-style: italic; color: var(--gold); }

.menu-subtitle {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: rgba(245, 240, 232, 0.45);
  text-transform: uppercase;
}

.menu-section {
  padding: 5rem 6rem;
  border-bottom: 1px solid var(--gold-rule);
}
.menu-section--dark {
  background: rgba(0, 0, 0, 0.25);
}

.menu-section-title {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  text-align: center;
}
.menu-section-title.light { color: var(--gold); }

/* Feature waffle item */
.menu-item--feature {
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid var(--gold-rule);
  padding: 2.5rem;
  cursor: default;
  border-radius: 2px;
}
.menu-item--feature:hover {
  background: rgba(245, 240, 232, 0.07);
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
  gap: 1rem;
}
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--cream);
}
.menu-item-name em { font-style: italic; color: rgba(245,240,232,0.55); font-size: 1.1rem; }
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
}
.menu-item-desc {
  font-size: 0.85rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.8;
  max-width: 80ch;
}

.menu-item-transparency {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  color: rgba(245,240,232,0.35);
  line-height: 1.7;
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 0.75rem;
  font-style: italic;
}

/* Sauce grid */
.sauce-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--gold-rule);
  border: 1px solid var(--gold-rule);
}

.sauce-card {
  background: rgba(245, 240, 232, 0.03);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  cursor: default;
  transition: background 0.2s;
}
.sauce-card:hover { background: rgba(245, 240, 232, 0.07); }

.sauce-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
}
.sauce-desc {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.75;
}

/* Espresso list */
.espresso-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gold-rule);
}

.espresso-item {
  padding: 2.25rem 2.5rem;
  border-bottom: 1px solid var(--gold-rule);
  cursor: default;
  transition: background 0.2s;
}
.espresso-item:last-child { border-bottom: none; }
.espresso-item:hover { background: rgba(245, 240, 232, 0.04); }
.espresso-item--special {
  background: rgba(212, 160, 74, 0.05);
}
.espresso-item--special:hover { background: rgba(212, 160, 74, 0.09); }

.espresso-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.75rem;
  gap: 1rem;
}
.espresso-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.house-special {
  font-size: 0.62rem;
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(212,160,74,0.4);
  padding: 0.2em 0.6em;
}
.espresso-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
}
.espresso-desc {
  font-size: 0.82rem;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.75;
  max-width: 72ch;
}

/* Pairing grid */
.pairing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pairing-card {
  background: rgba(245, 240, 232, 0.03);
  border: 1px solid var(--gold-rule);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: default;
  transition: background 0.2s;
}
.pairing-card:hover { background: rgba(245, 240, 232, 0.07); }
.pairing-card--feature {
  background: rgba(212, 160, 74, 0.06);
  border-color: rgba(212, 160, 74, 0.35);
}
.pairing-card--feature:hover { background: rgba(212, 160, 74, 0.1); }

.pairing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}
.pairing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pairing-desc {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.5);
  line-height: 1.75;
}

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  background: rgba(212, 160, 74, 0.08);
  border-top: 1px solid var(--gold-rule);
  border-bottom: 1px solid var(--gold-rule);
  padding: 1.1rem 0;
}

.ticker {
  display: inline-flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.ticker-dot { opacity: 0.4; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── DROP ───────────────────────────────────────────────── */
.drop {
  background: var(--dark);
  color: var(--cream);
  padding: 7rem 2rem;
  text-align: center;
  border-top: 1px solid var(--gold-rule);
}

.drop-inner { max-width: 700px; margin: 0 auto; }

.drop h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 3rem;
}
.drop h2 em { font-style: italic; color: var(--gold); }

.drop-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.drop-divider {
  width: 1px;
  height: 5rem;
  background: rgba(212, 160, 74, 0.3);
}

.drop-card {
  padding: 1.75rem 2rem;
  border: 1px solid var(--gold-rule);
  background: rgba(245,240,232,0.03);
  cursor: default;
}

.drop-card-label {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.drop-card-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
}

.drop-note {
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.45);
  max-width: 38ch;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── ORDER ──────────────────────────────────────────────── */
.order {
  padding: 7rem 2rem;
  background: var(--cream);
  border-top: 1px solid var(--light-rule);
}

.order-inner { max-width: 560px; margin: 0 auto; }

/* Ava's story section */
.ava-story-section {
  background: var(--cream);
  padding: 4rem 1.5rem;
  border-top: 1px solid var(--light-rule);
  border-bottom: 1px solid var(--light-rule);
}
.ava-story {
  max-width: 560px;
  margin: 0 auto;
}
.ava-story-body {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.ava-story-cta {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--dark);
  margin: 1.25rem 0 0.5rem;
  line-height: 1.4;
}
.ava-story-sig {
  font-size: 0.85rem;
  color: var(--caramel);
  font-style: italic;
  margin-top: 0.25rem;
}

.order h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.25rem;
}
.order h2 em { font-style: italic; color: var(--brown-butter); }

.order-sub {
  font-size: 0.9rem;
  color: var(--mid);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.order-form input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--warm-white);
  border: 1px solid var(--light-rule);
  border-radius: 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.order-form input::placeholder { color: rgba(74, 53, 32, 0.4); }
.order-form input:focus { border-color: var(--caramel); }

.order-form .btn-primary { margin-top: 0.5rem; width: 100%; }

/* ── Cart & Checkout ─────────────────────────────────────── */
.cart-items {
  border: 1px solid var(--light-rule);
  margin-bottom: 2rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--light-rule);
  gap: 1rem;
}
.cart-item:last-child { border-bottom: none; }

.cart-item-info { flex: 1; }
.cart-item-name {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.cart-item-sub {
  font-size: 0.7rem;
  color: rgba(74,53,32,0.5);
  font-style: italic;
}
.cart-item-special {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--caramel);
  border: 1px solid rgba(200,133,42,0.3);
  padding: 0.15em 0.5em;
}
.cart-item-price {
  font-size: 0.78rem;
  color: var(--mid);
  margin-top: 0.2rem;
}

.cart-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--light-rule);
  background: var(--warm-white);
  color: var(--dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.qty-btn:hover { background: var(--cream); border-color: var(--caramel); }
.qty-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--dark);
  min-width: 1.25rem;
  text-align: center;
}

/* Cart section labels */
.cart-section-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--caramel);
  text-align: center;
  margin: 1.75rem 0 0.6rem;
}
.cart-section-note {
  font-size: 0.72rem;
  color: rgba(74,53,32,0.55);
  text-align: center;
  margin-bottom: 0.75rem;
  font-style: italic;
}

/* Item description */
.cart-item-desc {
  font-size: 0.72rem;
  color: rgba(74,53,32,0.5);
  line-height: 1.5;
  margin-top: 0.2rem;
  max-width: 36ch;
}

/* Mix & match dip row */
.cart-addon-row {
  background: rgba(200,133,42,0.04);
  border: 1px solid rgba(200,133,42,0.15);
  border-top: none;
  padding: 0.85rem 1.25rem;
}
.addon-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.6rem;
}
.addon-sublabel {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.5rem;
}
.addon-ice-note {
  font-size: 0.8rem;
  color: var(--caramel);
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(200,133,42,0.08);
  border-radius: 6px;
  border-left: 3px solid var(--caramel);
}
.dip-options {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.dip-opt { cursor: pointer; }
.dip-opt input { display: none; }
.dip-opt span {
  display: block;
  padding: 0.45rem 0.85rem;
  border: 1px solid var(--light-rule);
  font-size: 0.72rem;
  color: var(--mid);
  background: var(--warm-white);
  transition: all 0.15s;
}
.dip-opt input:checked + span {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.dip-opt:hover span { border-color: var(--caramel); }

/* Live box counter */
.box-counter {
  margin-bottom: 2rem;
}
.box-counter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: var(--dark);
  color: var(--cream);
  text-decoration: none;
  border-left: 3px solid var(--caramel);
  transition: opacity 0.15s;
}
.box-counter-inner:hover { opacity: 0.85; }
.box-counter-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
}
.box-counter-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
}
.box-counter-cta {
  font-size: 0.78rem;
  color: var(--caramel);
  letter-spacing: 0.06em;
}

/* Tip row */
.tip-row {
  padding: 1.1rem 0 1.25rem;
  border-top: 1px solid var(--light-rule);
  margin-top: 0.5rem;
}
.tip-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.65rem;
}
.tip-sublabel {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: none;
  color: var(--caramel);
  margin-left: 0.3rem;
}
.tip-btns {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.tip-btn {
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--light-rule);
  background: var(--warm-white);
  color: var(--mid);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.15s;
}
.tip-btn:hover { border-color: var(--caramel); color: var(--caramel); }
.tip-btn--active {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.tip-custom {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.6rem;
}
.tip-dollar {
  font-size: 0.9rem;
  color: var(--mid);
}
.tip-custom-input {
  width: 80px;
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--caramel);
  background: var(--warm-white);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  outline: none;
}

/* Per-drink espresso customization rows */
.espresso-cust-wrap {
  background: rgba(200,133,42,0.04);
  border: 1px solid rgba(200,133,42,0.15);
  border-top: none;
  padding: 0.85rem 1.25rem 1rem;
}
.espresso-unit-row {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(200,133,42,0.12);
}
.espresso-unit-row:last-child { border-bottom: none; }
.espresso-unit-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.55rem;
}
.espresso-unit-fields {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-bottom: 0.6rem;
}
.espresso-field {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 90px;
}
.espresso-field-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  opacity: 0.7;
}
.esp-select {
  padding: 0.38rem 0.6rem;
  border: 1px solid var(--light-rule);
  background: var(--warm-white);
  color: var(--dark);
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  border-radius: 0;
  appearance: none;
  cursor: pointer;
}
.esp-select:focus { outline: 1px solid var(--caramel); }
.espresso-foam-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  margin-top: 0.25rem;
}
.espresso-foam-label input[type="checkbox"] {
  width: 14px;
  height: 14px;
  accent-color: var(--caramel);
  cursor: pointer;
}
.espresso-foam-text {
  font-size: 0.82rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.foam-price {
  color: var(--caramel);
  font-weight: 500;
}
.esp-ice-note {
  font-size: 0.78rem;
  color: var(--caramel);
  margin: 0.4rem 0 0.5rem;
  padding: 0.45rem 0.7rem;
  background: rgba(200,133,42,0.08);
  border-left: 2px solid var(--caramel);
  line-height: 1.5;
}
.esp-foam-type-sel {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
}

/* Pickup slots */
.pickup-select { margin-bottom: 2rem; border-top: 1px solid var(--light-rule); padding-top: 2rem; }
.pickup-step-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.25rem;
  color: var(--dark);
}
.pickup-day-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.5rem;
}
.pickup-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
}
.slot { cursor: pointer; }
.slot input { display: none; }
.slot span {
  display: block;
  padding: 0.55rem 0.4rem;
  border: 1px solid var(--light-rule);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--mid);
  text-align: center;
  transition: all 0.15s;
  background: var(--warm-white);
}
.slot input:checked + span {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}
.slot:hover span { border-color: var(--caramel); }
.slot--full { cursor: not-allowed; opacity: 0.45; }
.slot--full span {
  background: rgba(74,53,32,0.05);
  color: rgba(74,53,32,0.35);
  font-size: 0.6rem;
  text-decoration: line-through;
}
.slot--full:hover span { border-color: var(--light-rule); }

/* Cart total */
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1rem 0;
  border-top: 1px solid var(--light-rule);
  margin-bottom: 1.5rem;
}
.cart-total span:first-child {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.cart-total span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
}

/* Checkout fields */
.checkout-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.checkout-fields input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--warm-white);
  border: 1px solid var(--light-rule);
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
}
.checkout-fields input:focus { border-color: var(--caramel); }
.checkout-fields input::placeholder { color: rgba(74,53,32,0.4); }

/* Checkout summary */
.checkout-summary {
  background: var(--warm-white);
  border: 1px solid var(--light-rule);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.7;
}

/* Promo opt-in */
.promo-opt {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: rgba(200,133,42,0.05);
  border: 1px solid rgba(200,133,42,0.2);
}
.promo-opt input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--caramel);
  flex-shrink: 0;
  cursor: pointer;
}
.promo-opt span {
  font-size: 0.78rem;
  color: var(--mid);
  line-height: 1.4;
}

/* Stripe element */
.stripe-trust-note {
  font-size: 0.78rem;
  color: #888;
  line-height: 1.6;
  padding: 0.85rem 1rem;
  background: #f9f9f7;
  border: 1px solid var(--light-rule);
  border-radius: 6px;
  margin-bottom: 1rem;
  text-align: center;
}
.stripe-trust-note a {
  color: var(--caramel);
  text-decoration: none;
  font-weight: 500;
}

.stripe-element {
  padding: 1rem;
  border: 1px solid var(--light-rule);
  background: var(--warm-white);
  margin-bottom: 1rem;
  min-height: 60px;
}

.payment-error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  min-height: 1rem;
}

.btn-back {
  display: block;
  width: 100%;
  margin-top: 0.75rem;
  background: none;
  border: none;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(74,53,32,0.5);
  cursor: pointer;
  text-align: center;
  padding: 0.5rem;
  transition: color 0.2s;
}
.btn-back:hover { color: var(--caramel); }

/* Success */
.success-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

/* Disabled button */
.btn-primary:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Countdown clock */
.countdown-clock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0;
}

.clock-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: var(--warm-white);
  border: 1px solid var(--light-rule);
  padding: 1.5rem 1.75rem;
  min-width: 90px;
}

.clock-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: opacity 0.15s;
}

.clock-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(74,53,32,0.45);
}

.clock-colon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--caramel);
  line-height: 1;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.btn-order-live {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  padding: 1.25rem 2rem;
  margin-bottom: 1.5rem;
  background: var(--caramel);
  animation: pulse-gold 2.5s ease-in-out infinite;
}
.btn-order-live:hover {
  background: var(--brown-butter);
  animation: none;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,133,42,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(200,133,42,0); }
}

.order-fine {
  font-size: 0.7rem;
  color: rgba(74, 53, 32, 0.45);
  text-align: center;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* ─── INSTAGRAM SECTION ──────────────────────────────────── */
.insta-section {
  background: var(--warm-white);
  padding: 6rem 2rem 4rem;
  text-align: center;
  border-top: 1px solid var(--light-rule);
}
.insta-header { margin-bottom: 2.5rem; }
.insta-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin: 0.4rem 0 0.75rem;
}
.insta-handle {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.insta-handle:hover { color: var(--caramel); }
.insta-sub {
  color: var(--mid);
  font-size: 0.9rem;
  font-weight: 300;
}
.insta-feed-wrap {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
}
.insta-cta { margin-top: 1rem; }
.btn-outline-dark {
  display: inline-block;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  padding: 0.75rem 2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  border-radius: 2px;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--cream);
}

/* ─── NOTIFY SECTION ─────────────────────────────────────── */
.notify-section {
  background: var(--dark);
  color: var(--cream);
  padding: 7rem 2rem;
  text-align: center;
}
.notify-inner { max-width: 540px; margin: 0 auto; }
.notify-inner .label { color: var(--caramel); }
.notify-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
  color: var(--cream);
}
.notify-sub {
  color: rgba(245,240,232,0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.notify-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.notify-fields input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.notify-fields input::placeholder { color: rgba(245,240,232,0.4); }
.notify-fields input:focus { border-color: var(--caramel); }
.notify-btn {
  width: 100%;
  background: var(--caramel);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.95rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
  margin-bottom: 0.75rem;
}
.notify-btn:hover { opacity: 0.85; }
.notify-btn:disabled { opacity: 0.5; cursor: default; }
.notify-fine {
  font-size: 0.75rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.04em;
}
.notify-success {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--caramel);
  padding: 1.5rem 0;
}

/* ─── CATERING ───────────────────────────────────────────── */
.catering {
  background: var(--cream);
  border-top: 1px solid var(--light-rule);
  padding: 7rem 6rem;
}

.catering-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.catering-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.catering-text h2 em { font-style: italic; color: var(--brown-butter); }

.catering-text p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 42ch;
  margin-bottom: 1.5rem;
}

.catering-uses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.catering-uses span {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-butter);
  border: 1px solid rgba(122,79,30,0.25);
  padding: 0.35em 0.85em;
}

.catering-reply {
  font-size: 0.75rem !important;
  color: rgba(74,53,32,0.5) !important;
  font-style: italic;
}

.catering-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.catering-field-group {
  margin-bottom: 1.1rem;
}
.catering-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
.catering-field-row .catering-field-group {
  margin-bottom: 0;
}
.catering-form input,
.catering-form textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--warm-white);
  border: 1px solid var(--light-rule);
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.catering-form textarea { min-height: 120px; }
.catering-form input::placeholder,
.catering-form textarea::placeholder { color: rgba(74,53,32,0.4); }
.catering-form input:focus,
.catering-form textarea:focus { border-color: var(--caramel); }
.catering-form .catering-submit { margin-top: 0.5rem; width: 100%; }

@media (max-width: 900px) {
  .catering { padding: 4rem 2rem; }
  .catering-inner { grid-template-columns: 1fr; gap: 3rem; }
}

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(245, 240, 232, 0.45);
  text-align: center;
  padding: 3.5rem 2rem;
  border-top: 1px solid var(--gold-rule);
}

.footer-logo {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--cream);
  margin-bottom: 0.35rem;
}
.footer-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  margin-bottom: 1.25rem;
}
footer p:last-child {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── TOAST ──────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(6rem);
  background: var(--dark);
  color: var(--cream);
  padding: 1rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  border: 1px solid rgba(212, 160, 74, 0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  z-index: 999;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─── MOBILE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .menu-section { padding: 4rem 2rem; }
  .sauce-grid { grid-template-columns: 1fr; gap: 0; }
  .pairing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .float-card { display: none; }

  .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }

  .about { grid-template-columns: 1fr; }
  .about-text {
    padding: 4rem 1.75rem;
    border-right: none;
    border-bottom: 1px solid var(--light-rule);
  }
  .about-details { padding: 3.5rem 1.75rem; }

  .drop-grid { flex-direction: column; gap: 1.5rem; }
  .drop-divider { width: 3rem; height: 1px; }

  .form-row { grid-template-columns: 1fr; }
  .order-inner { padding: 0 0.25rem; }
}
