/* ============================================================
   OG ORIGINALS — Simple Ingredients. Original Taste.
   Street-style fast food brand site
   ============================================================ */

:root {
  /* Brand palette */
  --green: #064126;
  --green-soft: #0a5a35;
  --mustard: #f6a800;
  --orange: #e85a19;
  --cream: #fff4de;
  --cream-deep: #ffeccb;
  --dark: #1c1c1c;
  --white: #ffffff;
  --paper: #fffaf0;

  /* Type */
  --font-display: "Lilita One", "Arial Black", sans-serif;
  --font-body: "Bricolage Grotesque", "Trebuchet MS", sans-serif;

  /* Shape & shadow */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 30px rgba(6, 65, 38, 0.10);
  --shadow-pop: 0 16px 40px rgba(6, 65, 38, 0.16);
  --shadow-btn: 0 6px 0 rgba(0, 0, 0, 0.18);

  --header-h: 84px;
}

/* ---------- Reset & base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-weight: 450;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font: inherit; }

.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}

::selection { background: var(--mustard); color: var(--green); }

/* ---------- Typography helpers ---------- */
.kicker {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
}
.kicker-light { color: var(--mustard); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.06;
  color: var(--green);
  letter-spacing: 0.01em;
}
.title-light { color: var(--cream); }

.section-sub {
  margin-top: 0.9rem;
  color: rgba(28, 28, 28, 0.72);
  max-width: 46ch;
}

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head-light .section-sub { color: rgba(255, 244, 222, 0.75); }

.hl-orange { color: var(--orange); }
.hl-mustard { color: var(--mustard); }

.section { padding: clamp(4rem, 8vw, 6.5rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.7rem;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  box-shadow: var(--shadow-btn);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); filter: brightness(1.06); }
.btn:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(0,0,0,0.18); }
.btn svg { width: 1.2em; height: 1.2em; }

.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }
.btn-block { width: 100%; }

.btn-orange { background: var(--orange); color: var(--white); }
.btn-green { background: var(--green); color: var(--cream); }
.btn-mustard { background: var(--mustard); color: var(--green); }
.btn-wa { background: #22c15e; color: var(--white); }
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2.5px rgba(255, 244, 222, 0.85);
}
.btn-outline-light:hover { background: rgba(255, 244, 222, 0.1); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--cream);
  transition: box-shadow 0.25s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(6, 65, 38, 0.12);
}
.site-header::after {
  content: "";
  display: block;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0 48px,
    var(--mustard) 48px 96px,
    var(--orange) 96px 144px
  );
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand lockup */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; }
.brand-mark {
  width: 56px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.brand:hover .brand-mark { transform: rotate(-4deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--green);
  letter-spacing: 0.02em;
}
.brand-sub {
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  color: var(--orange);
  margin-top: 2px;
}

/* Nav */
.site-nav { display: flex; align-items: center; gap: 1.9rem; }
.nav-link {
  position: relative;
  font-weight: 650;
  font-size: 0.98rem;
  color: var(--dark);
  padding: 0.3rem 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  transition: right 0.22s ease;
}
.nav-link:hover::after { right: 0; }
.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.6rem;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  width: 26px; height: 3px;
  border-radius: 2px;
  background: var(--green);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.bun-arc {
  position: absolute;
  border: 3px dashed rgba(6, 65, 38, 0.14);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  border-bottom: none;
}
.arc-1 { width: 520px; height: 260px; top: -60px; right: -140px; transform: rotate(12deg); }
.arc-2 { width: 380px; height: 190px; bottom: 40px; left: -160px; transform: rotate(-8deg); border-color: rgba(232, 90, 25, 0.16); }
.dot { position: absolute; border-radius: 50%; }
.dot-1 { width: 16px; height: 16px; background: var(--mustard); top: 18%; left: 46%; opacity: 0.7; }
.dot-2 { width: 10px; height: 10px; background: var(--orange); top: 68%; left: 4%; opacity: 0.55; }
.dot-3 { width: 22px; height: 22px; border: 4px solid var(--green); top: 12%; left: 6%; opacity: 0.18; }

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 3rem;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--white);
  border: 2px solid rgba(6, 65, 38, 0.12);
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}
.eyebrow-egg {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 40%, var(--mustard) 0 46%, var(--white) 48% 100%);
  box-shadow: 0 0 0 2px rgba(6,65,38,.12);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 0.98;
  color: var(--green);
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: 2%; right: 2%;
  bottom: 0.04em;
  height: 0.16em;
  background: var(--mustard);
  border-radius: 999px;
  z-index: -1;
  opacity: 0.55;
}

.hero-sub {
  margin-top: 1.3rem;
  max-width: 46ch;
  font-size: 1.08rem;
  color: rgba(28, 28, 28, 0.75);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.6rem;
  padding-top: 1.6rem;
  border-top: 2px dashed rgba(6, 65, 38, 0.16);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--orange);
}
.hero-stats span {
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.6);
}

/* Hero visual */
.hero-visual { position: relative; }
.burger-stage {
  position: relative;
  background: radial-gradient(ellipse at 50% 65%, var(--cream-deep) 0 55%, transparent 72%);
  padding: 1rem 0 0;
}
.burger-svg { width: 100%; height: auto; }
.burger-svg .steam path {
  stroke-dasharray: 60;
  animation: steam 3.2s ease-in-out infinite;
}
.burger-svg .steam path:nth-child(2) { animation-delay: 0.7s; }
.burger-svg .steam path:nth-child(3) { animation-delay: 1.3s; }
@keyframes steam {
  0%   { stroke-dashoffset: 60; opacity: 0; }
  35%  { opacity: 0.5; }
  100% { stroke-dashoffset: -60; opacity: 0; }
}
.flag-text {
  font-family: var(--font-display);
  font-size: 20px;
  fill: var(--cream);
}
.flag-pick { transform-origin: 360px 84px; animation: flagWiggle 5s ease-in-out infinite; }
@keyframes flagWiggle {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2.5deg); }
}

.stage-badge {
  position: absolute;
  font-family: var(--font-display);
  line-height: 1.15;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
  padding: 0.7rem 1rem;
  animation: floaty 4.5s ease-in-out infinite;
}
.badge-fresh {
  top: 8%;
  left: -2%;
  background: var(--green);
  color: var(--cream);
  font-size: 0.95rem;
  transform: rotate(-6deg);
}
.badge-price {
  bottom: 6%;
  right: 0;
  background: var(--mustard);
  color: var(--green);
  font-size: 1.25rem;
  transform: rotate(4deg);
  animation-delay: 1.2s;
}
.badge-price small {
  display: block;
  font-size: 0.62em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.75;
}
@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -9px; }
}

/* Ticker */
.ticker {
  background: var(--green);
  color: var(--cream);
  overflow: hidden;
  padding: 0.85rem 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ticker-track i { color: var(--mustard); font-style: normal; font-size: 0.7rem; }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories { background: var(--cream); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-pop);
  border-color: var(--mustard);
}
.cat-visual {
  height: 96px;
  display: grid;
  place-items: center;
  background: var(--cream);
  border-radius: var(--radius-md);
  margin-bottom: 1.3rem;
  overflow: hidden;
}
.cat-visual svg { width: 120px; height: 76px; transition: transform 0.25s ease; }
.cat-card:hover .cat-visual svg { transform: scale(1.12) rotate(-2deg); }

.cat-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--green);
  margin-bottom: 0.45rem;
}
.cat-card p {
  font-size: 0.94rem;
  color: rgba(28, 28, 28, 0.68);
  flex-grow: 1;
}
.cat-link {
  margin-top: 1.1rem;
  font-weight: 750;
  font-size: 0.9rem;
  color: var(--orange);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
}
.cat-link span { transition: transform 0.2s ease; }
.cat-link:hover span { transform: translateX(4px); }

/* ============================================================
   MENU
   ============================================================ */
.menu {
  background:
    radial-gradient(circle at 8% 12%, rgba(246, 168, 0, 0.08) 0 180px, transparent 180px),
    radial-gradient(circle at 94% 78%, rgba(232, 90, 25, 0.07) 0 220px, transparent 220px),
    var(--cream);
}

.menu-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: start;
}
.menu-col { display: grid; gap: 1.6rem; }

.menu-group {
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.menu-group-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green);
  color: var(--cream);
  padding: 0.95rem 1.5rem;
}
.menu-group-head svg { width: 24px; height: 24px; color: var(--mustard); }
.menu-group-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-list { padding: 0.7rem 1.5rem 1.1rem; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.62rem 0;
}
.menu-list li + li { border-top: 1.5px dashed rgba(6, 65, 38, 0.12); }

.mi-name { font-weight: 650; font-size: 0.99rem; }
.mi-tag {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--mustard);
  color: var(--green);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  margin-left: 0.4rem;
  vertical-align: 2px;
  white-space: nowrap;
}
.mi-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(6, 65, 38, 0.22);
  transform: translateY(-4px);
  min-width: 20px;
}
.mi-price {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--orange);
  white-space: nowrap;
}
.mi-price small {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(28, 28, 28, 0.55);
}
.mi-price b { color: rgba(28, 28, 28, 0.3); font-weight: 400; }
.mi-ask {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--green-soft);
  background: rgba(6, 65, 38, 0.07);
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
}

.menu-note {
  background: var(--mustard);
  color: var(--green);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   SIGNATURE
   ============================================================ */
.signature {
  background:
    radial-gradient(circle at 85% 10%, rgba(246, 168, 0, 0.12) 0 240px, transparent 240px),
    var(--green);
  color: var(--cream);
}

.signature-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.signature-visual { position: relative; }
.signature-plate {
  background: rgba(255, 244, 222, 0.07);
  border: 2px dashed rgba(255, 244, 222, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1rem;
}
.signature-plate svg { width: 100%; height: auto; }

.signature-stamp {
  position: absolute;
  width: 118px;
  top: -34px;
  right: -14px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.3));
  animation: spinSlow 22s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.stamp-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  fill: var(--cream);
}
.stamp-og {
  font-family: var(--font-display);
  font-size: 34px;
  fill: var(--mustard);
}

.signature-desc {
  margin-top: 1.1rem;
  font-size: 1.06rem;
  color: rgba(255, 244, 222, 0.82);
  max-width: 52ch;
}

.signature-points { margin: 1.8rem 0 2.2rem; display: grid; gap: 1.1rem; }
.signature-points li { display: flex; gap: 1rem; align-items: flex-start; }
.point-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: rgba(246, 168, 0, 0.15);
  border: 2px solid var(--mustard);
  border-radius: 14px;
  color: var(--mustard);
}
.point-icon svg { width: 22px; height: 22px; }
.signature-points strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
}
.signature-points small {
  color: rgba(255, 244, 222, 0.65);
  font-size: 0.88rem;
}

/* ============================================================
   PACKAGING
   ============================================================ */
.packaging { background: var(--cream); }

.pack-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.3rem;
}

.pack-card { text-align: center; }
.pack-mock {
  position: relative;
  height: 200px;
  border-radius: var(--radius-md);
  background: var(--cream-deep);
  overflow: hidden;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.pack-card:hover .pack-mock {
  transform: translateY(-6px) rotate(-1.2deg);
  box-shadow: var(--shadow-pop);
}
.pack-card figcaption { margin-top: 0.9rem; display: flex; flex-direction: column; gap: 0.15rem; }
.pack-card figcaption strong {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--green);
  font-size: 1.02rem;
}
.pack-card figcaption span { font-size: 0.8rem; color: rgba(28, 28, 28, 0.6); }

.pack-img { width: 66px; height: auto; }
.pack-img-sm { width: 48px; }

/* Butter paper — repeat logo pattern */
.pack-paper { background: var(--paper); }
.paper-pattern {
  position: absolute;
  inset: -30px;
  background-image: url("assets/logo.png");
  background-size: 44px auto;
  background-position: 0 0;
  opacity: 0.14;
  transform: rotate(-8deg);
}
.paper-badge {
  position: relative;
  display: grid;
  place-items: center;
  background: var(--paper);
  padding: 0.55rem 0.8rem;
  border: 2.5px solid var(--green);
  border-radius: 14px;
  transform: rotate(-8deg);
  box-shadow: 0 6px 14px rgba(6, 65, 38, 0.14);
}
.paper-badge img { width: 52px; height: auto; }

/* Long burger box */
.pack-box { background: var(--cream-deep); }
.box-lid {
  position: absolute;
  top: 34px; left: 18px; right: 18px;
  height: 20px;
  background: var(--green-soft);
  border-radius: 8px 8px 0 0;
}
.box-face {
  position: absolute;
  top: 54px; left: 18px; right: 18px; bottom: 38px;
  background: var(--green);
  border-radius: 0 0 10px 10px;
  display: grid;
  place-content: center;
}
.box-face .pack-img { width: 58px; }
.pack-stripe {
  position: absolute;
  left: 18px; right: 18px; bottom: 52px;
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--mustard) 0 14px, var(--orange) 14px 28px);
}

/* Fries pocket */
.fries-pocket {
  position: relative;
  width: 108px; height: 130px;
  background: var(--paper);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: inset 0 -10px 0 var(--mustard);
}
.pack-tagline {
  font-weight: 750;
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  color: var(--orange);
  text-align: center;
  line-height: 1.5;
}

/* Roll wrap */
.wrap-roll {
  position: relative;
  width: 150px; height: 74px;
  background: var(--paper);
  border-radius: 40px;
  transform: rotate(-14deg);
  box-shadow: inset 0 -8px 0 rgba(6, 65, 38, 0.08);
  overflow: hidden;
}
.wrap-roll::before,
.wrap-roll::after {
  content: "";
  position: absolute;
  top: 8px; bottom: 8px;
  width: 16px;
  background: repeating-linear-gradient(180deg, transparent 0 5px, rgba(6,65,38,0.12) 5px 8px);
}
.wrap-roll::before { left: 4px; border-radius: 10px; }
.wrap-roll::after { right: 4px; border-radius: 10px; }
.wrap-band {
  position: absolute;
  inset: 22px 0;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
}
.wrap-band i {
  font-style: normal;
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* Takeaway bag */
.bag-body {
  position: relative;
  width: 118px; height: 142px;
  background: var(--paper);
  border-radius: 6px 6px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  box-shadow: inset 0 8px 0 rgba(6, 65, 38, 0.06);
}
.bag-handle {
  position: absolute;
  top: -18px;
  width: 56px; height: 34px;
  border: 5px solid var(--green);
  border-bottom: none;
  border-radius: 30px 30px 0 0;
}
.bag-tagline {
  margin-top: 0.4rem;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(28, 28, 28, 0.55);
  text-align: center;
  padding: 0 0.5rem;
}

/* ============================================================
   DEALS
   ============================================================ */
.deals {
  background:
    radial-gradient(circle at 12% 88%, rgba(246, 168, 0, 0.12) 0 200px, transparent 200px),
    var(--orange);
}
.deals .kicker-light { color: var(--cream); }

.deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: stretch;
}

.deal-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.8rem 1.8rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease;
}
.deal-card:hover { transform: translateY(-8px); }
.deal-card-feature {
  background: var(--green);
  color: var(--cream);
}
.deal-card-feature h3 { color: var(--mustard) !important; }
.deal-card-feature .deal-items li { border-color: rgba(255, 244, 222, 0.16); }
.deal-card-feature .deal-items li::before { background: var(--mustard); }

.deal-flag {
  position: absolute;
  top: -14px;
  left: 1.8rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--green);
  color: var(--cream);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  box-shadow: var(--shadow-btn);
}
.flag-orange { background: var(--mustard); color: var(--green); }

.deal-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--green);
  margin-bottom: 0.9rem;
}

.deal-items { flex-grow: 1; margin-bottom: 1.4rem; }
.deal-items li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.98rem;
}
.deal-items li + li { border-top: 1.5px dashed rgba(6, 65, 38, 0.15); }
.deal-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
}

.deal-price {
  margin-bottom: 1.2rem;
  text-align: center;
}
.deal-price span {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  border: 2.5px dashed var(--orange);
  border-radius: 999px;
  padding: 0.45rem 1.4rem;
  transform: rotate(-2deg);
}

/* ============================================================
   STORY
   ============================================================ */
.story { background: var(--cream); }

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.story-visual { position: relative; }

/* Photo placeholder component */
.photo-ph {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, var(--cream-deep), #ffe3b3);
  border: 3px dashed rgba(6, 65, 38, 0.3);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.photo-story { aspect-ratio: 4 / 3; }
.photo-sketch { width: 74%; opacity: 0.9; }
.photo-label {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(255, 250, 240, 0.92);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  text-align: center;
}

.story-chip {
  position: absolute;
  bottom: -24px;
  right: -10px;
  background: var(--green);
  color: var(--cream);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  max-width: 230px;
  box-shadow: var(--shadow-pop);
  transform: rotate(2deg);
}
.story-chip strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--mustard);
  font-size: 1.1rem;
}
.story-chip span { font-size: 0.8rem; opacity: 0.85; }

.story-copy p { margin-top: 1.1rem; color: rgba(28, 28, 28, 0.75); max-width: 54ch; }
.story-punch {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--green) !important;
  line-height: 1.3;
}
.story-copy .btn { margin-top: 1.8rem; }

/* ============================================================
   WHY CHOOSE OG
   ============================================================ */
.why {
  background:
    repeating-linear-gradient(-45deg, transparent 0 34px, rgba(6, 65, 38, 0.025) 34px 68px),
    var(--cream-deep);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border-bottom: 5px solid transparent;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.why-card:hover {
  transform: translateY(-7px);
  border-bottom-color: var(--orange);
  box-shadow: var(--shadow-pop);
}
.why-icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 18px;
  background: var(--cream);
  color: var(--orange);
  margin-bottom: 1.2rem;
}
.why-card:nth-child(even) .why-icon { color: var(--green); }
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.why-card p { font-size: 0.92rem; color: rgba(28, 28, 28, 0.66); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background:
    radial-gradient(circle at 90% 15%, rgba(246, 168, 0, 0.14) 0 260px, transparent 260px),
    var(--green);
  color: var(--cream);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

.contact-sub {
  margin-top: 1rem;
  color: rgba(255, 244, 222, 0.78);
  max-width: 46ch;
}

.contact-info { margin-top: 2.2rem; display: grid; gap: 1.3rem; }
.contact-info li { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(246, 168, 0, 0.15);
  border: 2px solid var(--mustard);
  color: var(--mustard);
}
.info-icon svg { width: 22px; height: 22px; }
.contact-info strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.contact-info span { font-size: 0.9rem; color: rgba(255, 244, 222, 0.7); }
.contact-info em { font-style: normal; opacity: 0.55; }

.socials { display: flex; gap: 0.8rem; margin-top: 2.2rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--cream);
  border: 2px solid rgba(255, 244, 222, 0.35);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.social-btn:hover {
  border-color: var(--mustard);
  background: rgba(246, 168, 0, 0.12);
  transform: translateY(-2px);
}
.social-btn svg { width: 18px; height: 18px; }

/* Order form card */
.order-card {
  background: var(--cream);
  color: var(--dark);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}
.order-card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  color: var(--green);
}
.order-hint { font-size: 0.88rem; color: rgba(28, 28, 28, 0.6); margin: 0.3rem 0 1.5rem; }

.field { display: block; margin-bottom: 1.1rem; }
.field span {
  display: block;
  font-weight: 750;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.4rem;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--white);
  border: 2px solid rgba(6, 65, 38, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--dark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--mustard);
  box-shadow: 0 0 0 4px rgba(246, 168, 0, 0.2);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(28, 28, 28, 0.35); }

.order-actions { display: grid; gap: 0.8rem; margin-top: 1.4rem; }
.order-card .btn-outline-light {
  color: var(--green);
  box-shadow: inset 0 0 0 2.5px var(--green);
}
.order-card .btn-outline-light:hover { background: rgba(6, 65, 38, 0.07); }
.order-note {
  margin-top: 0.9rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--orange);
  text-align: center;
  min-height: 1.2em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: rgba(255, 244, 222, 0.8);
}
.site-footer::before {
  content: "";
  display: block;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--mustard) 0 48px,
    var(--orange) 48px 96px,
    var(--green-soft) 96px 144px
  );
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding: 3.5rem 0 2.5rem;
}

.brand-footer .brand-name { color: var(--cream); }
.footer-tagline {
  margin-top: 1rem;
  font-family: var(--font-display);
  color: var(--mustard);
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  max-width: 24ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.92rem;
  padding: 0.28rem 0;
  color: rgba(255, 244, 222, 0.65);
  transition: color 0.18s ease, transform 0.18s ease;
}
.footer-col a:hover { color: var(--mustard); transform: translateX(3px); }
.footer-col em { font-style: normal; opacity: 0.5; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 244, 222, 0.12);
  padding: 1.4rem 0 1.8rem;
  font-size: 0.85rem;
}
.footer-mini {
  font-family: var(--font-display);
  color: rgba(246, 168, 0, 0.75);
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track,
  .stage-badge,
  .flag-pick,
  .signature-stamp,
  .burger-svg .steam path { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-visual { max-width: 560px; }
  .badge-fresh { left: 0; }
  .menu-board { grid-template-columns: 1fr; }
  .signature-inner,
  .story-inner,
  .contact-inner { grid-template-columns: 1fr; }
  .signature-stamp { right: 6px; }
  .story-chip { right: 6px; }
  .deal-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }

  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: calc(var(--header-h) + 5px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    padding: 0.6rem 1.25rem 1.4rem;
    box-shadow: 0 18px 30px rgba(6, 65, 38, 0.15);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s;
  }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav-link {
    padding: 0.9rem 0.3rem;
    font-size: 1.05rem;
    border-bottom: 1.5px dashed rgba(6, 65, 38, 0.14);
  }
  .nav-link::after { display: none; }
  .nav-cta { margin: 1.1rem 0 0; justify-content: center; }

  .hero-stats { gap: 1.4rem; flex-wrap: wrap; }
  .brand-mark { width: 48px; }
  .brand-name { font-size: 1.45rem; }
}

@media (max-width: 620px) {
  .cat-grid { grid-template-columns: 1fr; }
  .pack-grid { grid-template-columns: repeat(2, 1fr); }
  .pack-card:last-child { grid-column: 1 / -1; justify-self: center; width: min(100%, 260px); }
  .why-grid { grid-template-columns: 1fr; }
  .menu-list { padding-inline: 1.1rem; }
  .menu-list li { flex-wrap: wrap; }
  .mi-dots { display: none; }
  .mi-price { margin-left: auto; }
  .order-card { padding: 1.7rem 1.3rem; }
  .stage-badge { padding: 0.55rem 0.8rem; }
  .badge-price { font-size: 1.05rem; }
  .badge-fresh { font-size: 0.82rem; }
}
