/* ═══════════════════════════════════════════════════════════════════
   JOHIT BAKES — Premium Home Bakery
   Warm specialty-coffee/bakery aesthetic · original design
   ═══════════════════════════════════════════════════════════════════ */

:root {
  --bg:          #160D09;
  --bg-2:        #1F1209;
  --choc:        #2B1A11;
  --choc-soft:   rgba(43, 26, 17, 0.62);
  --line:        rgba(247, 237, 222, 0.12);
  --line-soft:   rgba(247, 237, 222, 0.08);
  --cream:       #F7EDDE;
  --muted:       rgba(247, 237, 222, 0.72);
  --faint:       rgba(247, 237, 222, 0.5);
  --caramel:     #E0A458;
  --gold:        #F0C982;
  --gold-deep:   #B9732F;
  --teal:        #3BC6B5;
  --teal-deep:   #27A294;
  --ink-on-teal: #06201C;
  --radius:      26px;
  --radius-sm:   16px;
  --shadow:      0 24px 60px -24px rgba(0, 0, 0, 0.65);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --font-head:   "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:   "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif:  "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(59, 198, 181, 0.35); color: var(--cream); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, figure, blockquote { margin: 0; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: 6px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 2000;
  background: var(--teal); color: var(--ink-on-teal);
  padding: 10px 18px; border-radius: 999px; font-weight: 700;
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 16px; }

.container {
  width: min(1200px, 100% - 48px);
  margin-inline: auto;
}

/* ── Cinematic grain ─────────────────────────────────────────────── */
.grain {
  position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: 0.055; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

/* ── Announcement ────────────────────────────────────────────────── */
.announce {
  background: linear-gradient(90deg, #E0A458, #F0C982 45%, #D98A4E);
  color: #241006;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  overflow: hidden;
  padding: 9px 0;
}
.announce__track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.announce__item {
  display: inline-flex; align-items: center; gap: 9px;
  white-space: nowrap; padding-right: 52px;
}
.announce__item .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #241006; opacity: 0.55;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Header ──────────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(22, 13, 9, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header.is-scrolled {
  background: rgba(19, 11, 7, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 14px 40px -18px rgba(0, 0, 0, 0.7);
}
.header__inner {
  display: flex; align-items: center; gap: 28px;
  padding-block: 14px;
}

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; flex: none; filter: drop-shadow(0 6px 14px rgba(176, 106, 45, 0.4)); }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; letter-spacing: -0.01em; }
.brand__text em { font-style: normal; font-size: 0.68rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; }

.nav { margin-inline: auto; }
.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__link {
  position: relative;
  display: inline-block; padding: 9px 14px;
  color: var(--muted); font-weight: 500; font-size: 0.92rem;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav__link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 5px;
  height: 2px; border-radius: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__link:hover { color: var(--cream); background: rgba(247, 237, 222, 0.06); }
.nav__link:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  background: rgba(247, 237, 222, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.icon-btn svg { width: 20px; height: 20px; }
.icon-btn:hover { transform: translateY(-2px) scale(1.05); background: rgba(59, 198, 181, 0.16); color: var(--teal); }
.cart-badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 19px; height: 19px; padding: 0 5px;
  display: grid; place-items: center;
  background: var(--teal); color: var(--ink-on-teal);
  font-size: 0.68rem; font-weight: 800;
  border-radius: 999px;
  border: 2px solid var(--bg);
}
.cart-badge.bump { animation: bump 0.4s var(--ease); }
.cart-badge[hidden] { display: none; }
@keyframes bump { 30% { transform: scale(1.6); } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px;
  border: 1px solid transparent; border-radius: 999px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  line-height: 1; letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease), filter 0.25s var(--ease);
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(0, 0, 0, 0.6); filter: brightness(1.08); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--teal {
  background: linear-gradient(180deg, #4CD0C0, var(--teal));
  color: var(--ink-on-teal);
  box-shadow: 0 14px 30px -16px rgba(59, 198, 181, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn--ghost {
  background: rgba(247, 237, 222, 0.04);
  border-color: var(--line);
  color: var(--cream);
}
.btn--ghost:hover { border-color: rgba(240, 201, 130, 0.6); color: var(--gold); }
.btn--sm { padding: 11px 20px; font-size: 0.85rem; }
.btn--block { width: 100%; }
.btn--dark { background: #1F1209; color: var(--cream); border-color: var(--line); }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  background: rgba(247, 237, 222, 0.06);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 0; place-items: center;
  flex-direction: column; gap: 5px;
}
.hamburger span {
  width: 20px; height: 2px; border-radius: 2px;
  background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 84px;
  overflow: hidden;
  background:
    radial-gradient(720px 520px at 82% 22%, rgba(59, 198, 181, 0.07), transparent 62%),
    radial-gradient(900px 640px at 12% 88%, rgba(224, 164, 88, 0.1), transparent 60%),
    radial-gradient(1200px 800px at 50% -10%, rgba(185, 115, 47, 0.22), transparent 55%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ""; display: inline-block; vertical-align: middle;
  width: 28px; height: 2px; border-radius: 2px;
  background: var(--teal); margin-right: 12px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.1vw, 4.05rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.grad-gold {
  background: linear-gradient(92deg, #F0C982, #E0A458 55%, #C9833C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.accent-dot { color: var(--teal); }

.hero__lead {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
  max-width: 52ch;
  margin-bottom: 32px;
}

.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; margin-bottom: 40px; }

.hero__notes {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.note-num {
  background: rgba(43, 26, 17, 0.6);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex; flex-direction: column; gap: 2px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.note-num strong {
  font-family: var(--font-head);
  font-size: 1.18rem; font-weight: 800;
  color: var(--gold);
}
.note-num span { font-size: 0.76rem; color: var(--faint); }

.hero__art { position: relative; }
.hero__svg {
  width: 100%; height: auto;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, 0.45));
}
.float-pill {
  position: absolute;
  padding: 9px 16px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--cream);
  background: rgba(43, 26, 17, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px -18px rgba(0, 0, 0, 0.6);
  animation: floatY 6s ease-in-out infinite;
  z-index: 2;
}
.float-pill--1 { top: 12%; left: -2%; }
.float-pill--2 { bottom: 24%; right: 0; animation-delay: -2s; }
.float-pill--3 { top: 42%; right: 6%; animation-delay: -4s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.bean, .crumb {
  position: absolute;
  width: 18px; height: 12px; border-radius: 50%;
  background: linear-gradient(135deg, #6B3A20, #3A1F13);
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.6);
  animation: floatY 5s ease-in-out infinite;
  opacity: 0.85;
}
.bean::after {
  content: ""; position: absolute; inset: 3px 2px;
  border-radius: 50%;
  background: rgba(224, 164, 88, 0.5);
}
.bean--small { width: 12px; height: 8px; }
.crumb {
  width: 10px; height: 10px; border-radius: 3px;
  background: var(--gold); opacity: 0.5;
  animation: floatY 4.4s ease-in-out infinite;
}
.crumb--b { background: var(--teal); opacity: 0.45; }

/* ── Marquee strip ───────────────────────────────────────────────── */
.marquee {
  border-block: 1px solid var(--line-soft);
  background: var(--bg-2);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex; width: max-content;
  align-items: center; gap: 42px;
  animation: marquee 30s linear infinite;
}
.marquee__track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.marquee__track i { color: var(--gold); font-style: normal; font-size: 0.8rem; }

/* ── Sections ────────────────────────────────────────────────────── */
.section { padding-block: clamp(64px, 9vw, 104px); position: relative; }

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section__title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section__sub { color: var(--muted); max-width: 46ch; }
.section__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.section__cta--center { justify-content: center; }

/* ── Featured products ───────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  --c: #2B1A11;
  background: linear-gradient(180deg, rgba(46, 27, 17, 0.8), rgba(26, 15, 9, 0.75));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 16px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(240, 201, 130, 0.18);
  border-color: rgba(240, 201, 130, 0.28);
}
.product-card__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(120px 90px at 70% 20%, rgba(240, 201, 130, 0.14), transparent 70%),
    linear-gradient(180deg, rgba(59, 198, 181, 0.06), rgba(22, 13, 9, 0) 55%),
    #20120A;
}
.product-card__media svg { width: 100%; height: auto; }
.chip {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.chip--gold { background: rgba(240, 201, 130, 0.16); color: var(--gold); border: 1px solid rgba(240, 201, 130, 0.35); }
.chip--teal { background: rgba(59, 198, 181, 0.16); color: var(--teal); border: 1px solid rgba(59, 198, 181, 0.35); }

.product-card__body { padding: 18px 6px 8px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-card__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-card__head h3 { font-family: var(--font-head); font-size: 1.06rem; font-weight: 700; line-height: 1.3; }
.product-card__body > p { color: var(--muted); font-size: 0.88rem; line-height: 1.6; flex: 1; }
.product-card__foot {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 12px;
  padding-top: 12px; border-top: 1px solid var(--line-soft);
}
.stars { color: var(--gold); letter-spacing: 2px; font-size: 0.82rem; }
.rating { color: var(--faint); font-size: 0.74rem; }
.price { margin-left: auto; font-family: var(--font-head); font-size: 1.18rem; font-weight: 800; color: var(--gold); }

.add-btn {
  flex: none;
  width: 38px; height: 38px;
  border: none; border-radius: 50%;
  background: linear-gradient(180deg, #4CD0C0, var(--teal));
  color: var(--ink-on-teal);
  font-size: 1.3rem; font-weight: 700; line-height: 1;
  box-shadow: 0 10px 22px -12px rgba(59, 198, 181, 0.7);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.add-btn:hover { transform: rotate(90deg) scale(1.12); box-shadow: 0 14px 28px -12px rgba(59, 198, 181, 0.9); }
.add-btn.flash { animation: bump 0.45s var(--ease); }

/* ── About ───────────────────────────────────────────────────────── */
.about { background: var(--bg-2); overflow: hidden; }
.about::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(700px 520px at 18% 12%, rgba(202, 124, 48, 0.08), transparent 60%);
}
.about__num {
  position: absolute; top: -30px; right: -24px;
  font-family: var(--font-head);
  font-size: clamp(12rem, 26vw, 22rem);
  font-weight: 800; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(240, 201, 130, 0.1);
  user-select: none; pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  position: relative;
}
.about__visual { position: relative; }
.about__visual svg { width: 100%; height: auto; }
.about__badge {
  position: absolute; right: -8px; bottom: 4%;
  width: 132px; height: 132px;
  display: grid; place-items: center; text-align: center;
  border-radius: 50%;
  padding: 14px;
  background: linear-gradient(160deg, #F0C982, #CF8A3E);
  color: #241006;
  font-family: var(--font-serif); font-style: italic; font-size: 0.86rem;
  box-shadow: 0 24px 50px -18px rgba(207, 138, 62, 0.6);
  animation: floatY 7s ease-in-out infinite;
  z-index: 2;
}
.about__badge strong { display: block; font-family: var(--font-body); font-style: normal; font-weight: 800; letter-spacing: 0.02em; }

.about__content .section__title { margin-bottom: 18px; }
.about__content > p { color: var(--muted); line-height: 1.78; max-width: 56ch; }
.about__content strong { color: var(--cream); }

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 26px;
  margin-top: 36px;
}
.feature {
  display: flex; gap: 16px;
  padding: 18px;
  background: rgba(43, 26, 17, 0.5);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.feature:hover { transform: translateY(-4px); border-color: rgba(240, 201, 130, 0.3); background: rgba(43, 26, 17, 0.75); }
.feature__num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.35rem; color: var(--gold);
  line-height: 1;
}
.feature h3 { font-family: var(--font-head); font-size: 0.98rem; font-weight: 700; margin-bottom: 5px; }
.feature p { font-size: 0.84rem; color: var(--muted); line-height: 1.55; }

/* ── Quiz banner ─────────────────────────────────────────────────── */
.quiz-banner__card {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  padding: clamp(44px, 6vw, 72px);
  background:
    linear-gradient(115deg, rgba(43, 26, 17, 0.92), rgba(31, 17, 9, 0.88)),
    var(--bg-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.quiz-banner__bg { position: absolute; inset: 0; opacity: 0.7; }
.quiz-banner__bg svg { width: 100%; height: 100%; filter: blur(6px); }
.quiz-banner__content { position: relative; z-index: 1; max-width: 600px; }
.quiz-banner__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 800; line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.quiz-banner__content > p { color: var(--muted); max-width: 48ch; line-height: 1.75; }

/* ── Menu ────────────────────────────────────────────────────────── */
.tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.tab {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(43, 26, 17, 0.35);
  color: var(--muted);
  font-weight: 600; font-size: 0.86rem;
  transition: all 0.28s var(--ease);
}
.tab:hover { color: var(--cream); border-color: rgba(240, 201, 130, 0.4); transform: translateY(-2px); }
.tab.is-active {
  background: linear-gradient(180deg, #4CD0C0, var(--teal));
  color: var(--ink-on-teal);
  border-color: transparent;
  box-shadow: 0 12px 26px -12px rgba(59, 198, 181, 0.6);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.menu-item {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px;
  background: rgba(43, 26, 17, 0.5);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.menu-item:hover { transform: translateY(-4px); border-color: rgba(59, 198, 181, 0.35); background: rgba(43, 26, 17, 0.75); }
.menu-item__top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.menu-item__top h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; }
.menu-item__top .price { margin-left: 0; font-size: 1rem; }
.menu-item p { color: var(--muted); font-size: 0.84rem; line-height: 1.55; }
.menu-item .tag { color: var(--teal); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.menu-item__add {
  margin-top: 6px;
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(59, 198, 181, 0.4);
  border-radius: 999px;
  background: rgba(59, 198, 181, 0.08);
  color: var(--teal);
  font-weight: 700; font-size: 0.82rem;
  transition: all 0.25s var(--ease);
}
.menu-item__add:hover { background: var(--teal); color: var(--ink-on-teal); }
.menu-item.is-hidden { display: none; }

.menu__note {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 42px;
  color: var(--muted); font-size: 0.92rem; text-align: center;
}
.menu__note svg { width: 22px; height: 22px; color: var(--teal); flex: none; }
.menu__note strong { color: var(--gold); }

/* ── Reviews ─────────────────────────────────────────────────────── */
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  display: flex; flex-direction: column; gap: 14px;
  padding: 26px;
  background: linear-gradient(180deg, rgba(43, 26, 17, 0.72), rgba(26, 15, 9, 0.6));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.review__stars { color: var(--gold); letter-spacing: 3px; font-size: 0.92rem; }
.review blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.02rem; line-height: 1.65;
  color: var(--cream);
  flex: 1;
}
.review figcaption { display: flex; align-items: center; gap: 12px; padding-top: 6px; }
.avatar {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  font-weight: 800; font-size: 0.95rem;
  background: linear-gradient(150deg, #C98B55, #8A4F2E);
  color: var(--cream);
  letter-spacing: 0.05em;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.12);
}
.avatar--teal { background: linear-gradient(150deg, #4CD0C0, #1E7A70); color: #06201C; }
.avatar--gold { background: linear-gradient(150deg, #F0C982, #B9732F); color: #241006; }
.review figcaption strong { display: block; font-size: 0.95rem; }
.review figcaption small { color: var(--faint); font-size: 0.76rem; }

/* ── Gallery ─────────────────────────────────────────────────────── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery__item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  aspect-ratio: 21 / 16;
}
.gallery__item svg { width: 100%; height: 100%; transition: transform 0.6s var(--ease); }
.gallery__item:hover svg { transform: scale(1.06); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 8, 5, 0.78));
  pointer-events: none;
}
.gallery__item figcaption {
  position: absolute; left: 20px; bottom: 16px; z-index: 2;
  display: flex; flex-direction: column; gap: 2px;
}
.gallery__item figcaption span { color: var(--faint); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; }
.gallery__item figcaption b { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--gold); }

/* ── Contact ─────────────────────────────────────────────────────── */
.contact { background: var(--bg-2); overflow: hidden; }
.contact__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.contact__info .section__title { margin-bottom: 16px; }
.contact__info > p { color: var(--muted); line-height: 1.75; max-width: 54ch; }
.contact__info strong { color: var(--gold); }

.contact__list { margin-top: 30px; display: grid; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__icon {
  width: 48px; height: 48px; flex: none;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(59, 198, 181, 0.1);
  border: 1px solid rgba(59, 198, 181, 0.3);
  color: var(--teal);
}
.contact__icon svg { width: 22px; height: 22px; }
.contact__list strong { display: block; font-size: 0.96rem; }
.contact__list span { color: var(--faint); font-size: 0.86rem; }

.contact__offer {
  margin-top: 30px;
  padding: 18px 20px;
  border: 1.5px dashed rgba(240, 201, 130, 0.45);
  border-radius: 18px;
  background: rgba(240, 201, 130, 0.06);
  display: flex; flex-direction: column; gap: 5px;
}
.contact__offer strong { color: var(--gold); font-family: var(--font-head); }
.contact__offer span { color: var(--muted); font-size: 0.9rem; }
.contact__offer b { color: var(--cream); }

.contact__form {
  background: linear-gradient(180deg, rgba(46, 27, 17, 0.85), rgba(28, 16, 9, 0.85));
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--shadow);
}
.contact__form h3 {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 800;
  margin-bottom: 22px;
}
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--faint);
  margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(22, 13, 9, 0.6);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--cream);
  font-family: inherit; font-size: 0.94rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(247, 237, 222, 0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: rgba(22, 13, 9, 0.85);
  box-shadow: 0 0 0 4px rgba(59, 198, 181, 0.14);
}
.field textarea { resize: vertical; min-height: 84px; }
.form__hint { margin-top: 14px; color: var(--faint); font-size: 0.8rem; text-align: center; }
.form__success { color: var(--teal); font-weight: 600; font-size: 0.92rem; text-align: center; margin-top: 12px; }

.color-scheme-dark { color-scheme: dark; }

/* ── Footer ──────────────────────────────────────────────────────── */
.footer { background: #120A06; border-top: 1px solid var(--line-soft); padding-top: 72px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.15fr 1.5fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__brand p {
  color: var(--muted); font-size: 0.9rem; line-height: 1.7;
  max-width: 34ch; margin: 18px 0 22px;
}
.footer__col h3, .footer__news h3 {
  font-family: var(--font-head);
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  color: var(--muted); font-size: 0.9rem;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}
.footer__col a:hover { color: var(--cream); padding-left: 4px; }
.footer__contact li span { color: var(--faint); font-size: 0.9rem; }
.footer__hours { margin-top: 18px; }
.footer__hours li { display: flex; justify-content: space-between; gap: 14px; font-size: 0.88rem; margin-bottom: 8px; }
.footer__hours span { color: var(--faint); }
.footer__hours b { color: var(--cream); font-weight: 600; }
.footer__tip { margin-top: 16px; font-size: 0.84rem; color: var(--faint); line-height: 1.7; }
.footer__tip b { color: var(--gold); }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: rgba(247, 237, 222, 0.04);
  color: var(--muted);
  transition: all 0.25s var(--ease);
}
.footer__social a svg { width: 19px; height: 19px; }
.footer__social a:hover { transform: translateY(-3px); color: var(--teal); border-color: rgba(59, 198, 181, 0.4); }

.footer__news p { color: var(--muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.news-form__row { display: flex; gap: 10px; }
.news-form__row input {
  flex: 1; min-width: 0;
  padding: 13px 16px;
  background: rgba(22, 13, 9, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream); font-family: inherit; font-size: 0.9rem;
}
.news-form__row input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(59, 198, 181, 0.14); }
.footer__offer {
  margin-top: 18px;
  font-size: 0.84rem; color: var(--faint);
  border: 1px dashed rgba(240, 201, 130, 0.4);
  border-radius: 14px;
  padding: 12px 16px;
}
.footer__offer b { color: var(--gold); }

.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 8px 20px;
  justify-content: space-between;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  color: var(--faint); font-size: 0.82rem;
}

/* ── Cart drawer ─────────────────────────────────────────────────── */
.drawer { position: fixed; inset: 0; z-index: 900; }
.drawer[hidden] { display: none; }
.drawer__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 5, 3, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s var(--ease);
}
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%;
  width: min(440px, 100%);
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, #24150C, #1A0E08);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 60px -20px rgba(0, 0, 0, 0.7);
  animation: slideIn 0.4s var(--ease);
}
@keyframes slideIn { from { transform: translateX(100%); } }
@keyframes fadeIn { from { opacity: 0; } }
.drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line-soft);
}
.drawer__head h2 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 800; }
.drawer__close, .modal__close {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(247, 237, 222, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream); font-size: 1rem;
  transition: all 0.25s var(--ease);
}
.drawer__close:hover, .modal__close:hover { background: rgba(240, 201, 130, 0.2); color: var(--gold); transform: rotate(90deg); }
.drawer__items { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 14px; }
.drawer__empty { color: var(--faint); text-align: center; padding: 40px 20px; line-height: 1.7; }
.cart-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center; gap: 14px;
  padding: 14px;
  background: rgba(43, 26, 17, 0.55);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
}
.cart-row__thumb {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: radial-gradient(60px 60px at 50% 30%, rgba(240, 201, 130, 0.25), transparent 70%), #20120A;
  color: var(--gold);
  font-family: var(--font-serif); font-style: italic; font-size: 1rem;
}
.cart-row__info { min-width: 0; }
.cart-row__info b { display: block; font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-row__info span { color: var(--faint); font-size: 0.78rem; }
.cart-row__right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-row__qty { display: flex; align-items: center; gap: 10px; }
.cart-row__qty button {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  background: rgba(247, 237, 222, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cream); font-size: 1rem; font-weight: 700;
  transition: all 0.2s var(--ease);
}
.cart-row__qty button:hover { background: var(--teal); color: var(--ink-on-teal); }
.cart-row__price { font-weight: 800; color: var(--gold); font-size: 0.9rem; }

.drawer__foot { padding: 20px 24px 24px; border-top: 1px solid var(--line-soft); background: rgba(18, 10, 6, 0.6); }
.drawer__offer {
  display: flex; justify-content: space-between;
  padding: 12px 14px; margin-bottom: 12px;
  border: 1px dashed rgba(240, 201, 130, 0.45);
  border-radius: 14px;
  background: rgba(240, 201, 130, 0.07);
  color: var(--gold); font-size: 0.88rem; font-weight: 600;
}
.drawer__subtotal { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.drawer__subtotal span { font-weight: 600; }
.drawer__subtotal strong { font-family: var(--font-head); font-size: 1.4rem; color: var(--gold); }
.drawer__note { margin-top: 10px; font-size: 0.78rem; color: var(--faint); text-align: center; }

/* ── Quiz modal ──────────────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 950; display: grid; place-items: center; }
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 5, 3, 0.75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s var(--ease);
}
.modal__card {
  position: relative;
  width: min(560px, calc(100% - 40px));
  max-height: min(640px, calc(100vh - 40px));
  overflow-y: auto;
  background: linear-gradient(170deg, #2B1A11, #1A0E08);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
  animation: popIn 0.4s var(--ease);
}
@keyframes popIn { from { opacity: 0; transform: translateY(24px) scale(0.97); } }
.modal__close { position: absolute; top: 18px; right: 18px; }

.quiz__badge {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  font-size: 1.7rem;
  background: rgba(240, 201, 130, 0.12);
  border: 1px solid rgba(240, 201, 130, 0.35);
  border-radius: 20px;
  margin-bottom: 22px;
}
.quiz h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 800; line-height: 1.2; margin-bottom: 12px; }
.quiz p { color: var(--muted); line-height: 1.7; }
.quiz__intro { text-align: center; }
.quiz__intro .quiz__badge { margin-inline: auto; }
.quiz__intro p { margin-bottom: 26px; }

.quiz__step { }
.quiz__step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.quiz__step-head small { color: var(--teal); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; }
.quiz__step-head span { color: var(--faint); font-size: 0.8rem; }
.quiz__step h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; }
.quiz__opts { display: grid; gap: 10px; }
.quiz__opt {
  text-align: left;
  padding: 14px 18px;
  background: rgba(22, 13, 9, 0.55);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--cream);
  font-size: 0.95rem; font-weight: 600;
  transition: all 0.25s var(--ease);
  display: flex; align-items: center; gap: 12px;
}
.quiz__opt .q-num {
  flex: none;
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border: 1.5px solid var(--line);
  border-radius: 9px;
  font-size: 0.78rem; font-weight: 800;
  color: var(--gold);
  background: rgba(240, 201, 130, 0.08);
  transition: all 0.25s var(--ease);
}
.quiz__opt.is-selected .q-num { border-color: var(--teal); color: var(--ink-on-teal); background: var(--teal); }
.quiz__opt .q-emoji { font-size: 1.1rem; }
.quiz__opt:hover { border-color: rgba(240, 201, 130, 0.4); transform: translateX(6px); }
.quiz__opt.is-selected {
  border-color: var(--teal);
  background: rgba(59, 198, 181, 0.14);
  box-shadow: 0 0 0 3px rgba(59, 198, 181, 0.18);
}
.quiz__opt .check { margin-left: auto; width: 20px; height: 20px; display: grid; place-items: center; border: 1.5px solid var(--line); border-radius: 50%; font-size: 0.7rem; color: transparent; }
.quiz__opt.is-selected .check { background: var(--teal); border-color: var(--teal); color: var(--ink-on-teal); }

.quiz__result { text-align: center; }
.quiz__result .emoji { font-size: 3rem; display: block; margin-bottom: 14px; }
.quiz__result h2 { margin-bottom: 10px; }
.quiz__result .result-card {
  margin: 22px 0;
  padding: 22px;
  background: rgba(240, 201, 130, 0.08);
  border: 1px solid rgba(240, 201, 130, 0.35);
  border-radius: 18px;
}
.quiz__result .result-card b { font-family: var(--font-head); font-size: 1.25rem; color: var(--gold); display: block; margin-bottom: 8px; }
.quiz__result .result-card p { font-size: 0.94rem; }

/* ── To top ──────────────────────────────────────────────────────── */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: rgba(43, 26, 17, 0.85);
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--gold);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 36px -16px rgba(0, 0, 0, 0.7);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.to-top svg { width: 20px; height: 20px; }
.to-top:hover { transform: translateY(-4px); background: rgba(59, 198, 181, 0.2); color: var(--teal); }
.to-top[hidden] { display: none; }

/* ── Reveal animations ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

.spark { transform-origin: center; animation: sparkle 3.6s ease-in-out infinite; }
@keyframes sparkle {
  0%, 100% { transform: scale(0.7); opacity: 0.65; }
  50% { transform: scale(1.12); opacity: 1; }
}
.float-slow { animation: floatY 6.5s ease-in-out infinite; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1120px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__news { grid-column: 1 / -1; max-width: 420px; }
}

@media (max-width: 920px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__art { order: -1; max-width: 560px; margin-inline: auto; }
  .about__grid { grid-template-columns: 1fr; }
  .about__visual { max-width: 480px; margin-inline: auto; }
  .contact__wrap { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .section__head { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed; inset: 78px 16px auto; z-index: 99;
    background: rgba(22, 13, 9, 0.96);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 14px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
    opacity: 0; transform: translateY(-14px) scale(0.98);
    pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav__link { display: block; padding: 13px 16px; font-size: 1rem; }
  .nav__link::after { display: none; }
  .hamburger { display: inline-flex; }
  .header .btn--sm { display: none; }
  .features { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .cards, .menu-grid, .gallery__grid { grid-template-columns: 1fr; }
  .hero__notes { flex-direction: column; align-items: stretch; }
  .brand__text em { font-size: 0.6rem; }
  .about__badge { width: 104px; height: 104px; font-size: 0.74rem; }
  .float-pill { font-size: 0.66rem; padding: 7px 12px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .contact__wrap { gap: 40px; }
  .modal__card { padding: 30px 22px; }
  .gallery__item { aspect-ratio: 16 / 12; }
  .hero__cta .btn { width: 100%; }
}

/* ── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}