:root {
  --navy: #3A2416;
  --orange: #F47D31;
  --orange-soft: #FDE6D4;
  --cyan: #2CA8C1;
  --cyan-soft: #D5F0F5;
  --bg: #fffaf5;
  --card: #fff;
  --text: #3A2416;
  --muted: #7A6458;
  --line: #EDE3DA;
  --ok: #1f7a4d;
  --bad: #b42318;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
button, a { font: inherit; }
button { color: inherit; }

.app { min-height: 100vh; display: flex; flex-direction: column; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  min-height: 84px;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.nav-left, .nav-right { display: flex; align-items: center; gap: 4px; }
.nav-right { justify-content: flex-end; }
.logo-btn { background: none; border: 0; padding: 0; cursor: pointer; }
.logo-btn img { height: 52px; display: block; }
.nav-link, .nav-cta {
  isolation: isolate;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  background: none; border: 0;
  padding: 8px 14px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  color: var(--navy);
  text-decoration: none;
}
.nav-link::before, .nav-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--orange);
  z-index: -1;
  transform: scale(.5);
  opacity: 0;
  transition: transform .3s cubic-bezier(.58,.3,.005,1), opacity .3s;
}
.nav-link:hover, .nav-cta:hover { color: #fff; }
.nav-link:hover::before, .nav-cta:hover::before { transform: scale(1); opacity: 1; }
.lang-switch { display: flex; gap: 4px; margin-right: 8px; }
.lang-switch button {
  border: 1px solid var(--line); background: #fff;
  border-radius: 999px; padding: 6px 10px;
  font-weight: 800; font-size: 12px; cursor: pointer;
}
.lang-switch button.on { background: var(--cyan); border-color: var(--cyan); color: #fff; }
.cart-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 0; border-radius: 999px; background: var(--orange); color: #fff;
  padding: 10px 16px; font-weight: 800; cursor: pointer;
}
.cart-count {
  background: #fff; color: var(--orange);
  min-width: 22px; height: 22px; border-radius: 999px;
  display: grid; place-items: center; font-size: 12px;
}
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; }

.hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 468px;
  background: #fff;
}
.hero-collage {
  position: absolute;
  inset: 0 0 0 32%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 0;
}
.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-collage img:nth-child(1) { object-position: 55% 40%; }
.hero-collage img:nth-child(2) { object-position: 50% 35%; }
.hero-collage img:nth-child(3) { object-position: 60% 40%; }
.hero-collage img:nth-child(4) { object-position: 50% 45%; }
.hero-collage img:nth-child(5) { object-position: 50% 40%; }
.hero-collage img:nth-child(6) { object-position: 50% 45%; }
.hero-fade {
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  background: linear-gradient(90deg, #fff 0%, #fff 48%, rgba(255,255,255,.88) 68%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}
.hero-brand {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  min-height: 468px;
  padding: 36px 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}
.hero-wordmark {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.hero-script {
  margin: 0;
  font-family: "Great Vibes", Pacifico, "Segoe Script", cursive;
  font-size: clamp(84px, 11vw, 132px);
  line-height: .82;
  color: var(--orange);
  font-weight: 400;
  text-shadow: 0 2px 0 #fff, 2px 5px 0 rgba(58,36,22,.14);
}
.hero-mascot {
  width: 88px;
  height: auto;
  margin-top: 6px;
  filter: drop-shadow(1px 3px 0 rgba(58,36,22,.08));
}
.hero-pill {
  margin: 0;
  display: inline-flex;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  padding: 7px 16px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  text-decoration: none;
  color: var(--orange);
}
.hero-phone-ico {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.hero-phone-ico svg { width: 26px; height: 26px; fill: currentColor; }
.hero-phone small {
  display: block;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero-phone strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.hero-intro {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 28px 12px;
}
.eyebrow {
  margin: 0 0 8px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--orange); font-size: 13px;
}
.hero-intro .lede { color: var(--muted); font-size: 18px; line-height: 1.55; max-width: 720px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

.facts {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 28px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fact {
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px;
}
.fact strong { display: block; color: var(--cyan); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; }
.fact p { margin: 0; color: var(--muted); line-height: 1.45; }

.section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 28px 64px;
}
.section h2 {
  margin: 0 0 8px;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900; line-height: 1.05;
}
.section .intro { color: var(--muted); max-width: 640px; line-height: 1.55; }

.cats { display: flex; gap: 8px; flex-wrap: wrap; margin: 24px 0; }
.cats button {
  border: 2px solid var(--line); background: #fff; border-radius: 999px;
  padding: 10px 16px; font-weight: 800; cursor: pointer;
}
.cats button.on { border-color: var(--orange); background: var(--orange-soft); color: var(--navy); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
}
.product-media { background: var(--orange-soft); }
.product-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.product-body { padding: 18px; display: grid; gap: 10px; }
.product-name { margin: 0; font-size: 20px; font-weight: 900; }
.product-body p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.price-tag {
  display: inline-flex; justify-content: center;
  background: var(--cyan); color: #fff;
  border-radius: 10px; padding: 6px 14px; font-weight: 800; width: fit-content;
}
.opt { display: grid; gap: 4px; }
.opt label { font-size: 12px; font-weight: 700; color: var(--muted); }
.opt select {
  border: 1px solid var(--line); border-radius: 10px; padding: 8px 10px; background: #fff;
}
.qty-row { display: flex; align-items: center; gap: 10px; }
.qty-row button {
  width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--line); background: #fff; font-weight: 800; cursor: pointer;
}
.add-btn {
  border: 0; border-radius: 12px; background: var(--orange); color: #fff;
  padding: 12px 14px; font-weight: 800; cursor: pointer;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px; padding: 14px 22px;
  font-weight: 800; cursor: pointer; text-decoration: none;
}
.btn-primary { background: var(--orange); color: #fff; }
.btn-ghost { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.btn-cyan { background: var(--cyan); color: #fff; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start;
}
.map {
  width: 100%; height: 360px; border: 0; border-radius: 18px;
}
.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.drawer-back {
  position: fixed; inset: 0; background: rgba(58,36,22,.35); z-index: 50;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(440px, 100%);
  background: #fff; z-index: 60; display: flex; flex-direction: column;
  box-shadow: -16px 0 40px rgba(58,36,22,.12);
}
.drawer header, .drawer footer { padding: 20px 22px; border-bottom: 1px solid var(--line); }
.drawer footer { border-bottom: 0; border-top: 1px solid var(--line); }
.drawer h3 { margin: 0; }
.drawer-close { background: none; border: 0; font-size: 22px; cursor: pointer; }
.drawer header { display: flex; justify-content: space-between; align-items: center; }
.cart-list { padding: 16px 22px; overflow: auto; flex: 1; display: grid; gap: 14px; align-content: start; }
.cart-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center; }
.cart-item img { width: 72px; height: 72px; object-fit: cover; border-radius: 12px; }
.cart-item strong { display: block; }
.cart-item span, .cart-item small { color: var(--muted); font-size: 13px; }
.empty { color: var(--muted); text-align: center; padding: 40px 0; }
.totals { display: grid; gap: 6px; margin-bottom: 12px; font-size: 14px; }
.totals b { display: flex; justify-content: space-between; font-size: 18px; }

.checkout {
  max-width: 820px; margin: 0 auto; padding: 40px 28px 80px;
}
.checkout h1 { margin: 0 0 8px; font-size: 42px; font-weight: 900; }
.form-grid { display: grid; gap: 12px; margin: 24px 0; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
input, textarea, select {
  width: 100%; border: 1px solid var(--line); border-radius: 12px;
  padding: 14px; font: inherit; background: #fff;
}
.types { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.types button {
  border: 2px solid var(--line); background: #fff; border-radius: 14px;
  padding: 14px; font-weight: 800; cursor: pointer; text-align: left;
}
.types button.on { border-color: var(--orange); background: var(--orange-soft); }
.err { color: var(--bad); min-height: 20px; }
.thanks { text-align: center; padding: 80px 28px; }
.thanks h1 { font-size: 48px; }

@media (max-width: 980px) {
  .site-header-inner { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .burger { display: inline-flex; }
  .hero-banner {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }
  .hero-collage {
    position: relative;
    inset: auto;
    order: 2;
    min-height: 210px;
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-fade { display: none; }
  .hero-brand {
    order: 1;
    min-height: 0;
    padding: 28px 22px 22px;
  }
  .hero-script { font-size: 78px; }
  .hero-mascot { width: 64px; }
  .hero-phone { margin-top: 8px; }
  .facts, .product-grid, .contact-grid, .row, .types { grid-template-columns: 1fr; }
  .mobile-nav {
    display: grid; gap: 8px; padding: 12px 20px 20px;
    border-top: 1px solid var(--line); background: #fff;
  }
}
