/* ============================================================
   Specialty Coffee Club — Homepage
   מודרני · מינימליסטי · גווני אדמה חמים
   ============================================================ */

:root {
  /* Palette — earth tones */
  --espresso: #2e2116;        /* חום כהה ראשי */
  --cocoa: #43301f;           /* חום ביניים */
  --mocha: #6b4f36;           /* חום בהיר */
  --copper: #b87333;          /* נחושת */
  --copper-soft: #cf9664;     /* נחושת בהירה */
  --copper-deep: #99592a;     /* נחושת כהה */
  --cream: #f6f0e6;           /* שמנת */
  --cream-mid: #ece2d0;
  --cream-deep: #ded0b9;
  --ink: #2b2118;             /* טקסט כהה */
  --ink-soft: #5d4c3a;        /* טקסט משני */
  --line: rgba(67, 48, 31, 0.14);

  /* Type */
  --font-body: "Assistant", "Heebo", "Segoe UI", system-ui, sans-serif;
  --font-display: "Heebo", "Assistant", system-ui, sans-serif;

  /* Elevation & radius */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 26px;
  --shadow-soft: 0 18px 45px -18px rgba(46, 33, 22, 0.28);
  --shadow-card: 0 8px 30px -12px rgba(46, 33, 22, 0.18);

  /* Motion */
  --ease: cubic-bezier(0.22, 0.68, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; margin: 0; color: var(--ink); }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }
svg { display: block; }
::selection { background: var(--copper); color: #fff; }

.container { width: min(1200px, 92%); margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn svg { width: 20px; height: 20px; }

.btn--copper {
  background: linear-gradient(135deg, var(--copper-soft), var(--copper-deep));
  color: #fff;
  box-shadow: 0 14px 28px -12px rgba(185, 115, 51, 0.55);
}
.btn--copper:hover { transform: translateY(-2px); box-shadow: 0 20px 34px -12px rgba(185, 115, 51, 0.65); }

.btn--cream {
  background: var(--cream);
  color: var(--espresso);
  box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.35);
}
.btn--cream:hover { transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--mocha);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--copper); color: var(--copper-deep); }

.btn--lg { padding: 18px 38px; font-size: 17.5px; }
.btn:disabled { opacity: 0.45; pointer-events: none; }

/* ---------- Section headings ---------- */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-head__eyebrow,
.newsletter__eyebrow {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--copper-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-head__title { font-size: clamp(30px, 4vw, 44px); font-weight: 800; letter-spacing: -0.015em; }
.section-head__sub { margin-top: 14px; color: var(--ink-soft); font-size: 18px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: background-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  background: transparent;
}
.header.is-scrolled {
  background: rgba(246, 240, 230, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.header__inner { display: flex; align-items: center; gap: 28px; height: 82px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { width: 34px; height: 34px; color: var(--copper); flex: none; }
.header:not(.is-scrolled) .logo { color: #fff; }
.header:not(.is-scrolled) .logo__text { color: #fff; }
.header:not(.is-scrolled) .logo__text em,
.header:not(.is-scrolled) .logo__text .logo__dot { color: var(--copper-soft); }
.logo__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--espresso);
  white-space: nowrap;
}
.logo__text em { font-style: normal; font-weight: 400; color: var(--copper-deep); }
.logo__dot { color: var(--copper); }

/* Nav */
.nav { margin-inline-start: auto; display: flex; gap: 6px; }
.nav__link {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.header:not(.is-scrolled) .nav__link { color: rgba(255, 255, 255, 0.92); }
.nav__link:hover { color: var(--copper-deep); }
.header:not(.is-scrolled) .nav__link:hover { color: #fff; background: rgba(255,255,255,0.12); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.icon-btn {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: rgba(46, 33, 22, 0.06);
  color: var(--espresso);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, transform 0.2s;
}
.header:not(.is-scrolled) .icon-btn { background: rgba(255,255,255,0.14); color: #fff; }
.icon-btn:hover { background: rgba(185, 115, 51, 0.16); }
.icon-btn svg { width: 22px; height: 22px; }

.cart-badge {
  position: absolute;
  top: 4px;
  inset-inline-end: 2px;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  border-radius: 999px;
  background: var(--copper);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 0;
  background: rgba(46,33,22,0.06);
  border-radius: 50%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.header:not(.is-scrolled) .nav-toggle { background: rgba(255,255,255,0.14); }
.nav-toggle span { width: 20px; height: 2px; background: var(--espresso); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.25s; }
.header:not(.is-scrolled) .nav-toggle span { background: #fff; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--espresso);
  color: #fff;
}

.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-tint {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(46, 33, 22, 0.92), rgba(46, 33, 22, 0.35) 48%, rgba(46, 33, 22, 0.55)),
    radial-gradient(120% 90% at 78% 20%, rgba(185, 115, 51, 0.28), transparent 55%);
}
.hero__grain {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-block: 130px 90px;
  max-width: 720px;
  margin-inline: max(4%, calc((100vw - 1200px) / 2));
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--copper-soft);
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: rise 0.8s var(--ease) both;
}
.hero__title {
  color: #fff;
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 22px;
  animation: rise 0.8s var(--ease) 0.12s both;
}
.hero__title .accent-underline {
  position: relative;
  color: var(--copper-soft);
  white-space: nowrap;
}
.hero__subtitle {
  font-size: clamp(17px, 2.2vw, 20.5px);
  color: rgba(246, 240, 230, 0.9);
  font-weight: 400;
  margin-bottom: 36px;
  animation: rise 0.8s var(--ease) 0.24s both;
}
.hero__subtitle strong { color: #fff; font-weight: 700; }

.hero__cta { margin-bottom: 42px; animation: rise 0.8s var(--ease) 0.36s both; }

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  animation: rise 0.8s var(--ease) 0.48s both;
}
.hero__points li {
  position: relative;
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(246, 240, 230, 0.85);
  padding-inline-start: 24px;
}
.hero__points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  translate: 0 -50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 4px rgba(185, 115, 51, 0.25);
}

.hero__scrollhint {
  position: absolute;
  bottom: 26px;
  inset-inline-start: 50%;
  translate: -50% 0;
  z-index: 2;
}
.hero__scrollhint span {
  display: block;
  width: 1.5px; height: 44px;
  background: linear-gradient(to bottom, var(--copper-soft), transparent);
  animation: drip 1.8s var(--ease) infinite;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes drip {
  0%   { transform: scaleY(0.3); transform-origin: top; }
  55%  { transform: scaleY(1);   transform-origin: top; }
  56%  { transform-origin: bottom; }
  100% { transform: scaleY(0.2); transform-origin: bottom; }
}

/* ============================================================
   BUILDER / WIZARD
   ============================================================ */
.builder {
  position: relative;
  padding-block: 110px 120px;
  background:
    radial-gradient(60% 40% at 15% 0%, rgba(185, 115, 51, 0.08), transparent 60%),
    var(--cream);
}
.builder::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
  opacity: 0.35;
}

.wizard {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

/* Progress rail */
.wizard__rail {
  position: relative;
  padding: 22px 34px 16px;
  background: linear-gradient(180deg, rgba(67,48,31,0.05), transparent);
  border-bottom: 1px solid var(--line);
}
.wizard__progress {
  position: absolute;
  top: 0; inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--copper), var(--copper-soft));
  width: 25%;
  transition: width 0.5s var(--ease);
}
.wizard__steps { display: flex; justify-content: space-between; gap: 8px; }
.wizard__step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--mocha);
  opacity: 0.45;
  transition: opacity 0.3s var(--ease);
}
.wizard__step.is-active { opacity: 1; }
.wizard__step.is-done { opacity: 0.75; }
.wizard__step-num {
  width: 34px; height: 34px;
  flex: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14.5px;
  background: var(--cream-mid);
  color: var(--mocha);
  transition: background-color 0.3s, color 0.3s;
}
.wizard__step.is-active .wizard__step-num {
  background: var(--copper);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(185, 115, 51, 0.18);
}
.wizard__step.is-done .wizard__step-num {
  background: var(--espresso);
  color: var(--cream);
}
.wizard__step-label { font-weight: 700; font-size: 14.5px; }

/* Panels */
.wizard__panel { display: none; padding: 46px 40px 40px; }
.wizard__panel.is-active { display: block; animation: rise 0.5s var(--ease) both; }

.wizard__q { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 6px; }
.wizard__hint { color: var(--ink-soft); font-size: 16px; margin-bottom: 30px; }

/* Choice cards */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 26px 18px 22px;
  min-height: 172px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-md);
  color: var(--ink);
  font-family: inherit;
  text-align: center;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s, background-color 0.25s;
}
.choice:hover {
  transform: translateY(-4px);
  border-color: var(--copper);
  box-shadow: var(--shadow-card);
}
.choice.is-selected {
  background: linear-gradient(160deg, #fffdf8, #f3e7d2);
  border-color: var(--copper);
  box-shadow: 0 0 0 3px rgba(185, 115, 51, 0.18), var(--shadow-card);
}
.choice__icon {
  width: 64px; height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(185, 115, 51, 0.12);
  color: var(--copper-deep);
  margin-bottom: 4px;
}
.choice__icon svg { width: 40px; height: 40px; }
.choice__title { font-weight: 800; font-size: 17px; line-height: 1.3; }
.choice__desc { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }
.choice__price { font-weight: 800; font-size: 21px; color: var(--copper-deep); font-family: var(--font-display); }
.choice__price small { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); margin-inline-start: 3px; }

.choice__check {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--copper);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.25s, transform 0.25s var(--ease);
}
.choice.is-selected .choice__check { opacity: 1; transform: scale(1); }

/* Roast indicator */
.choice__roast {
  width: 84px; height: 84px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  border: 8px solid transparent;
  background-clip: padding-box;
}
.choice__roast i { width: 34px; height: 34px; border-radius: 50%; box-shadow: inset 0 -6px 10px rgba(0,0,0,0.22); }
.choice__roast--light { border-color: #e9d9b8; background: #f6ecd7; }
.choice__roast--light i { background: #a9774a; }
.choice__roast--medium { border-color: #d7bd93; background: #e7d3ac; }
.choice__roast--medium i { background: #6d4730; }
.choice__roast--dark { border-color: #b9a288; background: #cfc0a8; }
.choice__roast--dark i { background: #2e2116; }

/* Result panel */
.result {
  position: relative;
  text-align: center;
  padding: 34px 26px;
  border-radius: var(--r-md);
  background:
    radial-gradient(90% 120% at 50% 0%, rgba(185, 115, 51, 0.12), transparent 60%),
    linear-gradient(180deg, #fffdf9, var(--cream-mid));
  border: 1px solid rgba(185, 115, 51, 0.3);
  overflow: hidden;
}
.result__glow {
  position: absolute;
  inset-inline: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}
.result__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--copper-deep);
  background: rgba(185, 115, 51, 0.12);
  border: 1px solid rgba(185, 115, 51, 0.28);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.result__title { font-size: clamp(22px, 3vw, 28px); font-weight: 800; margin-bottom: 22px; }

.result__summary {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}
.result__summary > div {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14.5px;
}
.result__summary dt { color: var(--ink-soft); font-weight: 600; }
.result__summary dd { margin: 0; font-weight: 800; color: var(--ink); }

.result__price-line { display: flex; align-items: baseline; justify-content: center; gap: 8px; margin-bottom: 4px; }
.result__price { font-family: var(--font-display); font-size: 52px; font-weight: 800; color: var(--copper-deep); letter-spacing: -0.02em; }
.result__per { font-size: 17px; font-weight: 700; color: var(--ink-soft); }
.result__meta { font-size: 14px; color: var(--ink-soft); margin-bottom: 26px; }

.result__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 340px);
  padding: 16px 30px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper-soft), var(--copper-deep));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  box-shadow: 0 16px 32px -12px rgba(185, 115, 51, 0.55);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.result__btn:hover { transform: translateY(-2px); box-shadow: 0 22px 38px -12px rgba(185, 115, 51, 0.65); }
.result__btn svg { width: 20px; height: 20px; }
.result__fine { margin-top: 16px; font-size: 13px; color: var(--ink-soft); }

/* Wizard controls */
.wizard__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 40px;
  border-top: 1px solid var(--line);
  background: rgba(67,48,31,0.03);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  position: relative;
  background: var(--espresso);
  color: var(--cream);
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 90% at 85% 10%, rgba(185, 115, 51, 0.22), transparent 60%),
    radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 4px 4px;
  pointer-events: none;
}
.newsletter::after {
  content: "";
  position: absolute;
  inset-inline: 0; bottom: -1px;
  height: 26px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scale(1.6);
}

.newsletter__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  padding-block: 110px;
}

.newsletter__eyebrow { color: var(--copper-soft); }
.newsletter__title { color: #fff; font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.015em; margin-bottom: 18px; }
.newsletter__text { font-size: 18px; color: rgba(246, 240, 230, 0.85); max-width: 520px; margin-bottom: 32px; }

.newsletter__form { display: flex; gap: 12px; max-width: 520px; flex-wrap: wrap; }
.newsletter__input {
  flex: 1 1 260px;
  padding: 16px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(246, 240, 230, 0.22);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color 0.25s, background-color 0.25s;
}
.newsletter__input::placeholder { color: rgba(246, 240, 230, 0.55); }
.newsletter__input:focus {
  border-color: var(--copper-soft);
  background: rgba(255,255,255,0.14);
}
.newsletter__input.is-invalid { border-color: #d97b6c; }

.newsletter__note { margin-top: 16px; font-size: 14px; color: rgba(246, 240, 230, 0.6); }
.newsletter__note.is-success { color: var(--copper-soft); font-weight: 700; }

.newsletter__art { position: relative; }
.newsletter__art::before {
  content: "";
  position: absolute;
  inset: -18px 30px 30px -18px;
  border: 1.5px solid rgba(185, 115, 51, 0.5);
  border-radius: var(--r-lg);
  pointer-events: none;
}
.newsletter__art img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { padding-block: 110px 120px; background: var(--cream); }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 30px;
  background: #fffdf9;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); }
.review-card::after {
  content: "❝";
  position: absolute;
  top: 18px;
  inset-inline-end: 22px;
  font-size: 54px;
  line-height: 1;
  color: rgba(185, 115, 51, 0.16);
  font-family: serif;
}
.review-card__stars { display: flex; gap: 3px; color: var(--copper); font-size: 17px; letter-spacing: 2px; }
.review-card blockquote { margin: 0; font-size: 16.5px; line-height: 1.75; color: var(--ink); font-style: italic; }
.review-card__who { display: flex; align-items: center; gap: 14px; margin-top: auto; border-top: 1px solid var(--line); padding-top: 18px; }
.review-card__avatar {
  width: 46px; height: 46px;
  flex: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cocoa), var(--espresso));
  color: var(--cream);
  font-weight: 800;
  font-size: 18px;
}
.review-card__who strong { display: block; font-size: 15.5px; }
.review-card__meta { font-size: 13px; color: var(--ink-soft); }
.badge-verified { color: var(--copper-deep); font-weight: 700; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #241a10;
  color: rgba(246, 240, 230, 0.8);
  padding-top: 90px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 70px;
}
.footer__brand .logo { margin-bottom: 18px; }
.footer__brand .logo__text { color: var(--cream); }
.footer__brand > p { font-size: 15px; line-height: 1.8; max-width: 300px; }
.footer__socials { display: flex; gap: 10px; margin-top: 22px; }
.footer__socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 240, 230, 0.18);
  color: var(--cream);
  transition: background-color 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}
.footer__socials a:hover { background: var(--copper); border-color: var(--copper); transform: translateY(-3px); }
.footer__socials svg { width: 19px; height: 19px; }

.footer__col h4 { color: #fff; font-size: 15px; font-weight: 800; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer__col a {
  display: block;
  padding-block: 6px;
  font-size: 15px;
  color: rgba(246, 240, 230, 0.72);
  transition: color 0.2s, transform 0.2s var(--ease);
}
.footer__col a:hover { color: var(--copper-soft); transform: translateX(-4px); }

.footer__bottom { border-top: 1px solid rgba(246, 240, 230, 0.1); }
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-block: 22px;
  font-size: 14px;
  color: rgba(246, 240, 230, 0.55);
}
.footer__credit { display: flex; align-items: center; gap: 6px; }
.footer__credit-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--copper-soft);
  transition: color 0.2s;
}
.footer__credit-link:hover { color: #fff; }
.footer__credit-link svg { width: 15px; height: 15px; color: var(--copper); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  inset-inline-start: 50%;
  translate: -50% 24px;
  z-index: 200;
  max-width: min(92vw, 420px);
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--copper-soft), var(--copper-deep));
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  box-shadow: 0 18px 40px -14px rgba(46, 33, 22, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), translate 0.3s var(--ease);
}
.toast.is-visible { opacity: 1; translate: -50% 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .newsletter__inner { grid-template-columns: 1fr; gap: 70px; }
  .newsletter__art img { height: 320px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }

  .nav {
    position: fixed;
    top: 82px;
    inset-inline: 0;
    flex-direction: column;
    gap: 4px;
    padding: 18px 5vw 26px;
    background: rgba(246, 240, 230, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px -20px rgba(46, 33, 22, 0.28);
    border-bottom: 1px solid var(--line);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }
  .nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav__link { padding: 13px 18px; font-size: 17px; color: var(--ink); }
  .header:not(.is-scrolled) .nav__link { color: var(--ink); }
  .header.is-scrolled { background: rgba(246, 240, 230, 0.98); }

  .wizard__steps { justify-content: center; }
  .wizard__step-label { display: none; }
  .wizard__panel { padding: 36px 22px 28px; }
  .wizard__controls { padding: 18px 22px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .logo__text { font-size: 18px; }
  .icon-btn { width: 42px; height: 42px; }
  .hero__inner { padding-top: 118px; }
  .hero__cta .btn { width: 100%; }
  .hero__points { flex-direction: column; gap: 10px; }

  .choice-grid { grid-template-columns: 1fr 1fr; }
  .choice__desc { font-size: 12.5px; }

  .reviews__grid { grid-template-columns: 1fr; }
  .newsletter__form .btn { width: 100%; }
  .newsletter__art img { height: 240px; }
  .result__summary > div { width: 100%; justify-content: center; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}