/* ============================================================
   Brew & Co. — specialty coffee roastery
   Premium dark-espresso design · SVG icons · refined cards
   ============================================================ */
:root {
  --espresso:   #1c1512;
  --espresso-2: #241a15;
  --coffee:     #3a2a20;
  --cream:      #f6ede3;
  --cream-2:    #efe2d4;
  --paper:      #fffdfa;
  --caramel:    #c98a52;
  --caramel-2:  #e0a768;
  --gold:       #d8a24a;
  --ink:        #2a1f18;
  --muted:      #8c7767;
  --muted-dark: #b8a394;
  --line:       rgba(120, 90, 66, .16);
  --radius:     20px;
  --radius-lg:  34px;
  --shadow:     0 24px 60px -24px rgba(28, 21, 18, .55);
  --shadow-sm:  0 12px 30px -16px rgba(28, 21, 18, .45);
  --ease:       cubic-bezier(.32, .12, .2, 1);
  --serif:      'Fraunces', Georgia, serif;
  --sans:       'Inter', system-ui, sans-serif;
  --max:        1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 118px) 0; }

/* ---------- icons ---------- */
.ico {
  width: 1em; height: 1em; display: inline-block; vertical-align: middle; flex: none;
  fill: none; stroke: currentColor; stroke-width: 1.9;
  stroke-linecap: round; stroke-linejoin: round;
}
.ico--fill { fill: currentColor; stroke: none; }

/* ---------- shared type ---------- */
.kicker {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--caramel); margin-bottom: 14px;
}
.kicker.light { color: var(--caramel-2); }
.kicker::before { content: '— '; opacity: .7; }
.section-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 4.4vw, 52px); line-height: 1.08; letter-spacing: -.5px; color: var(--ink);
}
.section-title.light { color: var(--cream); }
.head-center { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 5vw, 64px); }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(36px, 4vw, 56px); flex-wrap: wrap; }
.head-note { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-size: 15px; max-width: 340px; }
.head-note .ico { font-size: 19px; color: var(--caramel); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 600 15px/1 var(--sans); cursor: pointer; border: none; white-space: nowrap;
  padding: 15px 28px; border-radius: 40px; transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.btn-solid { background: var(--caramel); color: #fff; box-shadow: 0 12px 26px -12px rgba(201,138,82,.8); }
.btn-solid:hover { background: var(--caramel-2); transform: translateY(-3px); }
.btn-line { background: transparent; color: var(--ink); border: 1.6px solid var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); }
.btn-ghost { background: rgba(255,255,255,.08); color: var(--cream); border: 1px solid rgba(246,237,227,.25); }
.btn-ghost:hover { background: var(--caramel); border-color: var(--caramel); }
.btn-block { width: 100%; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--caramel), var(--gold)); z-index: 200;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; transition: background .35s var(--ease), box-shadow .35s; padding: 8px 0; }
.nav.scrolled { background: rgba(28,21,18,.86); backdrop-filter: blur(14px); box-shadow: 0 10px 30px -18px rgba(0,0,0,.6); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-weight: 600; font-size: 22px; color: var(--cream); }
.brand-mark { display: inline-flex; font-size: 24px; color: var(--caramel-2); }

.menu { display: flex; gap: 34px; }
.menu-link { position: relative; font-size: 15px; font-weight: 500; color: var(--cream); opacity: .85; padding: 6px 0; transition: opacity .2s, color .2s; }
.menu-link::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--caramel-2); transition: width .28s var(--ease); }
.menu-link:hover { opacity: 1; }
.menu-link:hover::after, .menu-link.active::after { width: 100%; }
.menu-link.active { opacity: 1; color: var(--caramel-2); }

.nav-right { display: flex; align-items: center; gap: 14px; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; color: var(--cream); padding-top: 90px; }
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(120% 90% at 80% 0%, #3a2a20 0%, transparent 55%),
    radial-gradient(90% 80% at 0% 100%, #2a1d16 0%, transparent 60%),
    var(--espresso);
}
.hero-bg::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(216,162,74,.12) 1px, transparent 1px); background-size: 26px 26px; opacity: .5; }
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; width: 100%; padding-block: 40px; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 1px; color: var(--caramel-2); background: rgba(216,162,74,.12); border: 1px solid rgba(216,162,74,.3); padding: 7px 16px; border-radius: 40px; margin-bottom: 24px; }
.eyebrow .ico { font-size: 14px; }
.hero-title { font-family: var(--serif); font-weight: 600; font-size: clamp(42px, 6.4vw, 76px); line-height: 1.03; letter-spacing: -1px; }
.hero-title .ital { font-style: italic; color: var(--caramel-2); }
.hero-lead { max-width: 460px; margin: 24px 0 34px; color: var(--muted-dark); font-size: clamp(15px, 1.6vw, 18px); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-line { color: var(--cream); border-color: rgba(246,237,227,.4); }
.hero .btn-line:hover { background: var(--cream); color: var(--ink); }

.hero-stats { display: flex; gap: 40px; margin-top: 52px; flex-wrap: wrap; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--cream); }
.hero-stats span { font-size: 13px; color: var(--muted-dark); }

/* hero visual — constrained so the image never overflows its column */
.hero-visual { position: relative; width: 100%; max-width: 420px; justify-self: end; }
.hero-photo-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 4.6; animation: rise 1s var(--ease) both; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; }
@keyframes rise { from { opacity: 0; transform: translateY(40px) scale(.97); } }
.hero-badge { position: absolute; top: 22px; left: -16px; background: var(--cream); color: var(--ink); border-radius: 18px; padding: 12px 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-sm); animation: floatY 5s ease-in-out infinite; }
.hb-num { font-family: var(--serif); font-size: 24px; font-weight: 700; color: var(--caramel); }
.hb-txt { font-size: 12px; line-height: 1.3; color: var(--muted); }
.hero-chip { position: absolute; bottom: 24px; right: -12px; display: inline-flex; align-items: center; gap: 8px; background: var(--caramel); color: #fff; font-size: 14px; font-weight: 600; padding: 11px 18px; border-radius: 40px; box-shadow: var(--shadow-sm); animation: floatY 5s ease-in-out infinite .8s; }
.hero-chip .ico { font-size: 17px; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.scroll-hint { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted-dark); display: inline-flex; align-items: center; gap: 8px; }
.scroll-hint .ico { font-size: 16px; animation: bounce 1.6s infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--caramel); color: #fff; padding: 16px 0; overflow: hidden; }
.marquee-track { display: flex; align-items: center; gap: 26px; width: max-content; animation: scrollX 26s linear infinite; }
.marquee-track span { font-family: var(--serif); font-size: 22px; font-weight: 600; font-style: italic; white-space: nowrap; }
.mq-star { font-size: 13px; opacity: .85; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ============================================================
   STORY
   ============================================================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.story-media { position: relative; max-width: 460px; }
.sm-main { width: 100%; aspect-ratio: 4 / 4.3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.sm-inset { position: absolute; bottom: -26px; right: -20px; width: 44%; aspect-ratio: 1; object-fit: cover; border-radius: 22px; border: 7px solid var(--cream); box-shadow: var(--shadow-sm); }
.sm-tag { position: absolute; top: 20px; left: -16px; background: var(--ink); color: var(--cream); padding: 11px 17px; border-radius: 16px; font-size: 13px; box-shadow: var(--shadow-sm); }
.sm-tag strong { font-family: var(--serif); font-size: 22px; color: var(--caramel-2); display: block; }
.story-text p { color: var(--muted); margin-top: 18px; font-size: 16px; }
.story-list { margin: 26px 0 32px; display: grid; gap: 12px; }
.story-list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--ink); }
.story-list .tick { display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: var(--caramel); color: #fff; font-size: 14px; flex: none; }

/* ============================================================
   MENU (tabs)
   ============================================================ */
.tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 46px; flex-wrap: wrap; }
.tab { font: 600 15px var(--sans); cursor: pointer; padding: 12px 26px; border-radius: 40px; border: 1.5px solid var(--line); background: transparent; color: var(--muted); transition: all .25s var(--ease); }
.tab:hover { border-color: var(--caramel); color: var(--ink); }
.tab.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 46px; }
.menu-item { display: flex; align-items: center; gap: 18px; padding: 16px 0; border-bottom: 1px dashed var(--line); animation: fadeUp .5s var(--ease) both; }
.menu-item img { width: 70px; height: 70px; border-radius: 16px; object-fit: cover; flex: none; box-shadow: var(--shadow-sm); }
.mi-body { flex: 1; min-width: 0; }
.mi-top { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.mi-name { font-family: var(--serif); font-size: 19px; font-weight: 600; }
.mi-dots { flex: 1; border-bottom: 2px dotted var(--line); margin: 0 4px 4px; }
.mi-price { font-family: var(--serif); font-size: 19px; font-weight: 600; color: var(--caramel); }
.mi-desc { font-size: 14px; color: var(--muted); }
.mi-tag { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--caramel); background: rgba(201,138,82,.12); padding: 2px 9px; border-radius: 20px; margin-left: 8px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--espresso); color: var(--cream); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { position: relative; background: var(--espresso-2); border: 1px solid rgba(216,162,74,.14); border-radius: var(--radius); padding: 32px 24px 28px; overflow: hidden; transition: transform .3s var(--ease), border-color .3s; }
.step::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--caramel), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); }
.step:hover { transform: translateY(-8px); border-color: rgba(216,162,74,.4); }
.step:hover::before { transform: scaleX(1); }
.step-num { position: absolute; top: 16px; right: 20px; font-family: var(--serif); font-size: 42px; font-weight: 700; color: rgba(216,162,74,.16); }
.step-ico { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 16px; background: rgba(216,162,74,.14); color: var(--caramel-2); font-size: 26px; margin-bottom: 18px; }
.step h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted-dark); }

/* ============================================================
   SHOP — refined product cards
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product { position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), box-shadow .3s, border-color .3s; }
.product:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(201,138,82,.4); }
.product-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-2); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.product:hover .product-media img { transform: scale(1.06); }
.p-badge { position: absolute; top: 12px; left: 12px; background: var(--ink); color: var(--cream); font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; padding: 5px 11px; border-radius: 20px; }
.p-fav { position: absolute; top: 10px; right: 10px; width: 38px; height: 38px; border-radius: 50%; border: none; background: rgba(255,255,255,.92); color: var(--ink); cursor: pointer; font-size: 18px; display: grid; place-items: center; transition: transform .2s, background .2s, color .2s; }
.p-fav:hover { transform: scale(1.12); background: #fff; }
.p-fav.on { background: var(--caramel); color: #fff; }
.p-fav.on .ico { fill: currentColor; }
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.p-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.p-origin { font-size: 11.5px; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); }
.p-rating { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--ink); }
.p-rating .ico { font-size: 14px; color: var(--gold); }
.p-name { font-family: var(--serif); font-size: 20px; font-weight: 600; margin: 5px 0 6px; line-height: 1.2; }
.p-notes { font-size: 13px; color: var(--muted); margin-bottom: 16px; flex: 1; }
.p-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.p-price { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); }
.p-add { display: inline-flex; align-items: center; gap: 7px; background: var(--ink); color: var(--cream); border: none; cursor: pointer; font: 600 13.5px var(--sans); padding: 11px 16px; border-radius: 30px; transition: background .25s, transform .25s; }
.p-add .ico { font-size: 16px; }
.p-add:hover { background: var(--caramel); transform: translateY(-2px); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--coffee); color: var(--cream); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { position: relative; background: rgba(255,255,255,.05); border: 1px solid rgba(246,237,227,.12); border-radius: var(--radius); padding: 34px 26px 28px; transition: transform .3s var(--ease), border-color .3s; }
.review:hover { transform: translateY(-6px); border-color: rgba(216,162,74,.35); }
.review-quote { position: absolute; top: 22px; right: 24px; font-size: 40px; color: var(--caramel); opacity: .35; }
.stars { display: inline-flex; gap: 3px; color: var(--gold); font-size: 16px; margin-bottom: 16px; }
.review blockquote { font-family: var(--serif); font-size: 18px; line-height: 1.5; font-style: italic; }
.review figcaption { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.review figcaption img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review figcaption span { display: flex; flex-direction: column; font-size: 13px; color: var(--muted-dark); }
.review figcaption strong { color: var(--cream); font-size: 15px; }

/* ============================================================
   VISIT
   ============================================================ */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.visit-text p { color: var(--muted); margin: 18px 0 24px; font-size: 16px; }
.visit-info { display: grid; gap: 14px; margin-bottom: 30px; }
.visit-info li { display: flex; align-items: center; gap: 14px; font-weight: 500; }
.visit-info .vi-ico { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--cream-2); color: var(--caramel); font-size: 19px; flex: none; }
.visit-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter { background: var(--ink); color: var(--cream); padding: clamp(56px, 8vw, 96px) 0; text-align: center; }
.news-inner h2 { font-family: var(--serif); font-size: clamp(28px, 4vw, 44px); font-weight: 600; }
.news-inner p { color: var(--muted-dark); margin: 12px 0 30px; font-size: 16px; }
.news-form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; }
.news-form input { flex: 1; border: none; border-radius: 40px; padding: 16px 24px; font: 400 15px var(--sans); outline: none; background: rgba(255,255,255,.95); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--espresso); color: var(--muted-dark); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding: clamp(56px, 7vw, 80px) 24px 46px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 300px; margin-bottom: 20px; }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.06); color: var(--cream); font-size: 18px; transition: background .25s, transform .25s; }
.socials a:hover { background: var(--caramel); transform: translateY(-3px); }
.footer-col h4 { color: var(--cream); font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; transition: color .2s, padding .2s; }
.footer-col a:hover { color: var(--caramel-2); padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(246,237,227,.1); padding: 20px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-bottom ul { display: flex; gap: 22px; }
.footer-bottom a { font-size: 13px; transition: color .2s; }
.footer-bottom a:hover { color: var(--caramel-2); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart { position: fixed; top: 0; right: 0; height: 100%; width: 390px; max-width: 90vw; background: var(--paper); z-index: 150; transform: translateX(100%); transition: transform .4s var(--ease); display: flex; flex-direction: column; box-shadow: -20px 0 50px -24px rgba(0,0,0,.4); }
.cart.open { transform: translateX(0); }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-family: var(--serif); font-size: 22px; }
.cart-x { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--ink); line-height: 1; }
.cart-body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.cart-empty { text-align: center; color: var(--muted); margin-top: 50px; }
.ci { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.ci img { width: 58px; height: 58px; border-radius: 12px; object-fit: cover; }
.ci-info { flex: 1; }
.ci-name { font-weight: 600; font-size: 14px; }
.ci-price { font-size: 13px; color: var(--muted); }
.qty { display: inline-flex; align-items: center; gap: 10px; }
.qty button { width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line); background: var(--cream); cursor: pointer; font-size: 15px; color: var(--ink); }
.qty span { min-width: 16px; text-align: center; font-weight: 600; font-size: 14px; }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 16px; }
.cart-total strong { font-family: var(--serif); font-size: 24px; }

/* floating cart */
.fab-cart { position: fixed; bottom: 26px; right: 26px; z-index: 120; width: 60px; height: 60px; border-radius: 50%; border: none; background: var(--caramel); color: #fff; font-size: 24px; cursor: pointer; box-shadow: var(--shadow); transition: transform .25s, background .25s; display: grid; place-items: center; }
.fab-cart:hover { transform: scale(1.08); background: var(--caramel-2); }
.fab-cart span { position: absolute; top: -2px; right: -2px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; min-width: 22px; height: 22px; border-radius: 12px; display: grid; place-items: center; border: 2px solid var(--cream); }

.scrim { position: fixed; inset: 0; background: rgba(28,21,18,.5); backdrop-filter: blur(2px); opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s; z-index: 140; }
.scrim.show { opacity: 1; visibility: visible; }

.toast { position: fixed; bottom: 30px; left: 50%; transform: translate(-50%, 130%); background: var(--ink); color: var(--cream); padding: 14px 26px; border-radius: 40px; font-size: 14px; font-weight: 500; z-index: 200; box-shadow: var(--shadow); transition: transform .4s var(--ease); }
.toast.show { transform: translate(-50%, 0); }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: 1fr; }
  .menu-list { grid-template-columns: 1fr; gap: 0 40px; }
}
@media (max-width: 820px) {
  /* mobile slide-in menu — sits ABOVE the scrim so it's fully visible */
  .menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    height: 100vh; height: 100dvh;
    width: 280px; max-width: 82vw;
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 6px;
    background: var(--espresso-2); padding: 96px 30px 30px;
    overflow-y: auto;
    transform: translateX(100%); transition: transform .4s var(--ease);
    box-shadow: -20px 0 50px -24px rgba(0,0,0,.5); z-index: 170;
  }
  .menu.open { transform: translateX(0); }
  .menu-link { font-size: 18px; padding: 12px 0; width: 100%; border-bottom: 1px solid rgba(246,237,227,.08); }
  .menu-link::after { display: none; }
  .burger { display: flex; position: relative; z-index: 180; }
  .btn-order { display: none; }
  .nav { background: rgba(28,21,18,.86); backdrop-filter: blur(14px); }
  /* raise the whole bar above the scrim only while the menu is open */
  body.nav-open .nav { z-index: 160; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-lead { margin-inline: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  /* text first, image after */
  .hero-content { order: 1; }
  .hero-visual { order: 2; max-width: 320px; margin-inline: auto; justify-self: center; }

  .story-grid, .visit-grid { grid-template-columns: 1fr; }
  .story-text, .visit-text { order: 1; }
  .story-media, .visit-media { order: 2; margin-inline: auto; }
}
@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-media { aspect-ratio: 16 / 10; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px; }
  .news-form { flex-direction: column; border-radius: 20px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom .container { justify-content: center; text-align: center; }
  .marquee-track span { font-size: 18px; }
}
