/* ============================================================
   BLUE JAY VODKA — European Distribution Site
   Palette: deep navy / royal blue / sky blue / turquoise / ice
   ============================================================ */

:root {
  --ink:       #06121e;
  --navy:      #0a1c2e;
  --navy-2:    #0e2a44;
  --royal:     #1a4fa0;
  --royal-2:   #14418f;
  --sky:       #2b9df4;
  --sky-soft:  #6dc0f7;
  --turq:      #52cde4;
  --ice:       #eef5fb;
  --ice-2:     #e2eef8;
  --cream:     #f7f4ec;
  --text:      #223447;
  --muted:     #5b7186;
  --muted-l:   #a7bdd2;
  --line:      rgba(34, 82, 130, .14);
  --line-l:    rgba(255, 255, 255, .14);
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --shadow-lg: 0 30px 60px -20px rgba(6, 18, 30, .35);
  --radius: 18px;
  --ease: cubic-bezier(.22, .61, .21, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ice);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--royal); text-decoration: none; }
ul, ol { list-style: none; }

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

/* ---------- typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink); }

h1 { font-size: clamp(2.9rem, 6.2vw, 5.2rem); letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h2 em, h1 span { font-style: italic; color: var(--sky); }
h3 { font-size: 1.22rem; font-weight: 600; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .78rem; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--sky);
}
.eyebrow::before {
  content: ""; width: 34px; height: 1.5px; background: var(--sky); display: inline-block;
}

.section { padding: clamp(84px, 10vw, 132px) 0; position: relative; }
.section__head { max-width: 640px; margin: 0 auto clamp(44px, 6vw, 72px); text-align: center; }
.section__head--left { margin-inline: 0; text-align: left; }
.section__head h2 { margin: 14px 0 16px; }
.section__sub { color: var(--muted); font-size: 1.06rem; }

.section--dark { background: var(--ink); color: var(--muted-l); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .section__sub { color: var(--muted-l); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--sans); font-size: .95rem; font-weight: 700; letter-spacing: .02em;
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn--lg { padding: 17px 36px; font-size: 1rem; }
.btn--solid {
  background: linear-gradient(135deg, var(--sky) 0%, var(--royal) 100%);
  color: #fff; box-shadow: 0 14px 30px -12px rgba(43, 157, 244, .55);
}
.btn--solid:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -12px rgba(43, 157, 244, .7); }
.btn--ghost { border-color: currentColor; color: var(--cream); background: transparent; }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); transform: translateY(-3px); }
.about .btn--ghost, .taste .btn--ghost, .partnership .btn--ghost { color: var(--royal); }

/* ---------- scroll progress ---------- */
.progress { position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 1200; background: transparent; }
.progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--turq), var(--sky));
}

/* ---------- header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  padding: 22px 0;
  transition: padding .4s var(--ease), background .4s, box-shadow .4s;
}
.header.is-scrolled {
  padding: 12px 0;
  background: rgba(6, 18, 30, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6);
}
.header__inner { display: flex; align-items: center; gap: 28px; }

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__bird { width: 30px; height: 30px; color: var(--turq); flex: none; transform: scaleX(-1); }
.logo__text {
  font-family: var(--serif); font-weight: 700; font-size: 1.28rem; letter-spacing: .04em;
  color: var(--cream); text-transform: uppercase; line-height: 1;
}
.logo__text em { font-style: normal; font-size: .62em; letter-spacing: .42em; display: block; color: var(--sky-soft); margin-top: 4px; }

.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a {
  color: rgba(247, 244, 236, .82); font-size: .92rem; font-weight: 600; letter-spacing: .03em;
  position: relative; padding: 4px 0;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--turq); transition: width .35s var(--ease);
}
.nav a:hover { color: #fff; }
.nav a:hover::after { width: 100%; }
.header__cta { flex: none; }

.burger { display: none; background: none; border: 0; width: 42px; height: 38px; cursor: pointer; flex-direction: column; justify-content: center; gap: 6px; align-items: center; }
.burger span { width: 24px; height: 2px; background: var(--cream); transition: transform .3s var(--ease), opacity .3s; }
.burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- age gate ---------- */
.age-gate {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(60% 80% at 70% 20%, rgba(26, 79, 160, .35), transparent 60%),
    linear-gradient(160deg, #06121e 0%, #0a1c2e 100%);
  padding: 24px;
  transition: opacity .6s var(--ease), visibility .6s;
}
.age-gate.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.age-gate__inner {
  max-width: 480px; text-align: center; color: var(--muted-l);
  animation: gateIn .8s var(--ease) both;
}
@keyframes gateIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.age-gate__bird { width: 46px; height: 46px; color: var(--turq); margin-bottom: 14px; transform: scaleX(-1); }
.age-gate__brand {
  font-family: var(--serif); text-transform: uppercase; letter-spacing: .1em;
  color: var(--cream); font-size: 1.5rem; font-weight: 700; margin-bottom: 26px;
}
.age-gate__brand span { display: block; font-size: .58em; letter-spacing: .5em; color: var(--sky-soft); margin-top: 5px; }
.age-gate h2 { color: var(--cream); font-size: 1.7rem; margin-bottom: 12px; }
.age-gate__note { font-size: .95rem; margin-bottom: 28px; }
.age-gate__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.age-gate__legal { font-size: .8rem; opacity: .65; }
.age-gate__legal a { color: var(--turq); text-decoration: underline; }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--ink); color: var(--muted-l);
  overflow: hidden; padding: 140px 0 90px;
}
.hero__bg {
  position: absolute; inset: -12% 0;
  background: url("../images/bg-fluid-dark.jpg") center / cover no-repeat;
  opacity: .8; will-change: transform;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6, 18, 30, .92) 8%, rgba(6, 18, 30, .55) 52%, rgba(6, 18, 30, .25) 100%);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 40px; align-items: center;
}
.hero__copy h1 { color: var(--cream); margin: 22px 0 24px; }
.hero__lead { max-width: 520px; font-size: 1.13rem; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 34px 0 46px; }
.hero__stats { display: flex; gap: clamp(24px, 4vw, 48px); flex-wrap: wrap; }
.hero__stats li { display: flex; flex-direction: column; gap: 2px; }
.hero__stats strong { font-family: var(--serif); font-size: 1.45rem; color: var(--turq); font-weight: 700; }
.hero__stats span { font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; opacity: .7; }

.hero__bottle { position: relative; display: flex; justify-content: center; will-change: transform; }
.hero__bottle img {
  width: min(340px, 60vw); height: auto;
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .5));
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 44px; border: 1.5px solid rgba(247, 244, 236, .4); border-radius: 14px;
}
.hero__scroll span {
  position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 4px; background: var(--turq);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(16px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- marquee ---------- */
.marquee {
  background: linear-gradient(90deg, var(--royal-2), var(--sky));
  color: #fff; overflow: hidden; padding: 16px 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--serif); font-style: italic; font-size: 1.05rem; letter-spacing: .06em; white-space: nowrap;
}
.marquee__track i { font-style: normal; opacity: .7; font-size: .8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about { background: var(--ice); }
.about__grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(28px, 4vw, 56px); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about__media figcaption {
  margin-top: 14px; font-size: .88rem; color: var(--muted); font-style: italic; text-align: center;
}
.about__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.card, .channel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.card:hover, .channel:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -20px rgba(20, 65, 143, .28);
  border-color: rgba(43, 157, 244, .35);
}
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(43, 157, 244, .14), rgba(82, 205, 228, .18));
  color: var(--royal);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .94rem; color: var(--muted); }

/* ---------- production ---------- */
.production, .markets, .contact { overflow: hidden; }
.production__bg, .markets__bg, .contact__bg {
  position: absolute; inset: -14% 0;
  background: url("../images/bg-fluid-dark.jpg") center / cover no-repeat;
  opacity: .35; will-change: transform;
}
.production__bg::after, .markets__bg::after, .contact__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,18,30,.75), rgba(6,18,30,.55) 50%, rgba(6,18,30,.8));
}
.production .container, .markets .container, .contact .container { position: relative; }

.production__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.production__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.steps { display: flex; flex-direction: column; gap: 8px; }
.steps__item, .pstep {
  display: flex; gap: 22px; padding: 20px 22px; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .35s, border-color .35s, transform .45s var(--ease);
}
.steps__item:hover { background: rgba(255, 255, 255, .05); border-color: var(--line-l); transform: translateX(6px); }
.steps__num {
  font-family: var(--serif); font-style: italic; font-size: 1.5rem; font-weight: 500;
  color: var(--turq); flex: none; line-height: 1.3; min-width: 44px;
}
.steps__item h3, .pstep h3 { margin-bottom: 5px; }
.steps__item p, .pstep p { font-size: .94rem; }

.counters {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: clamp(48px, 6vw, 76px); padding-top: 44px;
  border-top: 1px solid var(--line-l); text-align: center;
}
.counters strong {
  display: block; font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--cream); font-weight: 600; line-height: 1;
}
.counters strong span { color: var(--turq); }
.counters li > span { font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; opacity: .65; margin-top: 8px; display: block; }

/* ---------- taste ---------- */
.taste { background: linear-gradient(180deg, #fff 0%, var(--ice) 100%); }
.taste__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }

.checklist { display: flex; flex-direction: column; gap: 20px; margin: 34px 0 38px; }
.checklist li { position: relative; padding-left: 44px; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--turq));
  -webkit-mask: none; mask: none;
}
.checklist li::after {
  content: ""; position: absolute; left: 7px; top: 12px; width: 10px; height: 5px;
  border-left: 2.2px solid #fff; border-bottom: 2.2px solid #fff; transform: rotate(-45deg);
}
.checklist h3 { font-size: 1.08rem; margin-bottom: 3px; }
.checklist p { font-size: .93rem; color: var(--muted); }

.taste__formats { display: flex; gap: 14px; flex-wrap: wrap; }
.format {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 22px;
  display: flex; flex-direction: column; min-width: 130px;
  box-shadow: 0 12px 26px -18px rgba(20, 65, 143, .35);
}
.format strong { font-family: var(--serif); font-size: 1.3rem; color: var(--royal); }
.format span { font-size: .78rem; color: var(--muted); letter-spacing: .04em; }

.taste__media { position: relative; }
.taste__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.taste__media figcaption {
  position: absolute; left: 22px; bottom: 22px; right: 22px;
  background: rgba(6, 18, 30, .72); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  color: var(--cream); padding: 14px 20px; border-radius: 12px; font-size: .92rem; text-align: center;
}
.taste__media figcaption em { color: var(--turq); }

/* ---------- markets ---------- */
.markets__channels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: clamp(40px, 5vw, 60px); }
.channel { background: rgba(255, 255, 255, .045); border-color: var(--line-l); }
.channel:hover { box-shadow: 0 24px 44px -20px rgba(0, 0, 0, .5); border-color: rgba(82, 205, 228, .4); }
.channel .card__icon { background: rgba(82, 205, 228, .12); color: var(--turq); }
.channel p { font-size: .94rem; color: var(--muted-l); }

.markets__regions {
  border: 1px solid var(--line-l); border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px); background: rgba(255, 255, 255, .03);
}
.markets__regions-title { font-family: var(--serif); font-style: italic; color: var(--cream); font-size: 1.12rem; margin-bottom: 20px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chips li {
  padding: 9px 18px; border-radius: 999px; font-size: .88rem; font-weight: 600;
  color: var(--cream); border: 1px solid rgba(109, 192, 247, .35);
  background: rgba(43, 157, 244, .08);
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.chips li:hover { background: rgba(43, 157, 244, .22); border-color: var(--sky); transform: translateY(-2px); }

/* ---------- partnership ---------- */
.partnership { background: var(--ice); }
.partnership__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.partnership__steps { display: flex; flex-direction: column; gap: 10px; }
.pstep { background: #fff; border-color: var(--line); }
.pstep:hover { transform: translateX(6px); box-shadow: 0 18px 36px -22px rgba(20, 65, 143, .3); }
.pstep p { color: var(--muted); }
.partnership__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.pricing {
  margin-top: 18px; border-radius: var(--radius); padding: 30px 30px 26px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal-2) 100%);
  color: var(--muted-l); box-shadow: var(--shadow-lg);
}
.pricing__label { font-size: .98rem; margin-bottom: 18px; }
.pricing__label strong { color: var(--cream); }
.pricing__rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pricing__row { display: flex; align-items: baseline; gap: 14px; }
.pricing__row span { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); min-width: 52px; }
.pricing__row i { flex: 1; border-bottom: 1px dashed rgba(255, 255, 255, .3); }
.pricing__row strong { font-family: var(--serif); font-size: 1.5rem; color: var(--turq); }
.pricing__link { color: var(--sky-soft); font-weight: 700; font-size: .93rem; }
.pricing__link:hover { color: #fff; }

/* ---------- contact ---------- */
.contact__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.contact__copy h2 { margin: 14px 0 16px; }
.contact__points { display: flex; flex-direction: column; gap: 12px; margin: 30px 0 34px; }
.contact__points li { display: flex; align-items: center; gap: 12px; font-size: .97rem; }
.contact__points svg { width: 22px; height: 22px; color: var(--turq); flex: none; }
.contact__mail {
  font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-style: italic;
  color: var(--turq); border-bottom: 1px solid rgba(82, 205, 228, .4); padding-bottom: 3px;
}
.contact__mail:hover { color: #fff; border-color: #fff; }

.form {
  background: rgba(255, 255, 255, .05); border: 1px solid var(--line-l);
  border-radius: var(--radius); padding: clamp(26px, 4vw, 40px);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sky-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; font: inherit; font-size: .97rem;
  color: var(--cream); background: rgba(6, 18, 30, .55);
  border: 1px solid rgba(255, 255, 255, .16);
  transition: border-color .3s, box-shadow .3s; resize: vertical;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(167, 189, 210, .45); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(43, 157, 244, .22);
}
.field select option { color: var(--ink); background: #fff; }
.field input.is-invalid, .field textarea.is-invalid { border-color: #e4707c; box-shadow: 0 0 0 3px rgba(228, 112, 124, .18); }
.form__submit { width: 100%; margin-top: 6px; }
.form__note { font-size: .8rem; opacity: .65; margin-top: 14px; text-align: center; }
.form__note a { color: var(--turq); text-decoration: underline; }
.form__note.is-success { opacity: 1; color: var(--turq); }

/* ---------- footer ---------- */
.footer { background: #04101b; color: var(--muted-l); padding: clamp(56px, 7vw, 84px) 0 0; }
.footer__inner {
  display: grid; grid-template-columns: 1.4fr .7fr .9fr 1fr; gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer__brand p { font-size: .92rem; margin-top: 18px; max-width: 320px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav p {
  font-size: .78rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--sky-soft); margin-bottom: 6px;
}
.footer__nav a { color: var(--muted-l); font-size: .94rem; }
.footer__nav a:hover { color: #fff; }
.footer__age { display: flex; gap: 16px; align-items: flex-start; }
.footer__badge {
  flex: none; width: 52px; height: 52px; border-radius: 50%;
  border: 2px solid var(--turq); color: var(--turq);
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
}
.footer__age p { font-size: .82rem; opacity: .75; }
.footer__bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px 0 28px; font-size: .84rem; opacity: .6;
}

/* ---------- privacy / legal page ---------- */
.legal-hero {
  background: var(--ink); color: var(--muted-l);
  padding: 170px 0 80px; position: relative; overflow: hidden;
}
.legal-hero__bg { position: absolute; inset: 0; background: url("../images/bg-fluid-dark.jpg") center / cover no-repeat; opacity: .5; }
.legal-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,18,30,.7), rgba(6,18,30,.92)); }
.legal-hero .container { position: relative; }
.legal-hero h1 { color: var(--cream); font-size: clamp(2.3rem, 5vw, 3.6rem); margin: 16px 0 14px; }
.legal-hero p { max-width: 620px; }

.legal { padding: clamp(60px, 8vw, 100px) 0; background: var(--ice); }
.legal__layout { display: grid; grid-template-columns: 260px 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.legal__toc {
  position: sticky; top: 110px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px;
}
.legal__toc p { font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--royal); margin-bottom: 14px; }
.legal__toc a { display: block; padding: 7px 0; font-size: .92rem; color: var(--muted); border-bottom: 1px solid var(--line); }
.legal__toc a:last-child { border-bottom: 0; }
.legal__toc a:hover { color: var(--royal); }

.legal__body { max-width: 760px; }
.legal__body section { margin-bottom: clamp(40px, 5vw, 56px); scroll-margin-top: 110px; }
.legal__body h2 { font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: 16px; }
.legal__body h3 { font-size: 1.1rem; margin: 26px 0 8px; color: var(--navy-2); }
.legal__body p { margin-bottom: 12px; font-size: .98rem; color: var(--text); }
.legal__body ul { list-style: none; margin: 10px 0 16px; }
.legal__body ul li { position: relative; padding-left: 24px; margin-bottom: 8px; font-size: .97rem; }
.legal__body ul li::before {
  content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px;
  border-radius: 2px; background: var(--sky); transform: rotate(45deg);
}
.legal__updated { font-size: .85rem; color: var(--muted); font-style: italic; }

.import-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal-2) 115%);
  border-radius: var(--radius); padding: clamp(28px, 4vw, 48px);
  color: var(--muted-l); box-shadow: var(--shadow-lg);
}
.import-block h2 { color: var(--cream); }
.import-block h3 { color: var(--sky-soft); }
.import-block p, .import-block ul li { color: var(--muted-l); }
.import-block ul li::before { background: var(--turq); }
.import-steps { counter-reset: istep; margin: 24px 0 8px; }
.import-steps > li {
  counter-increment: istep; position: relative;
  padding: 0 0 26px 58px; margin: 0 !important;
}
.import-steps > li::before {
  content: "0" counter(istep); position: absolute; left: 0; top: -2px;
  width: auto; height: auto; background: none !important; transform: none;
  font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--turq);
}
.import-steps > li::after {
  content: ""; position: absolute; left: 14px; top: 32px; bottom: 6px;
  width: 1px; background: rgba(255, 255, 255, .18);
}
.import-steps > li:last-child::after { display: none; }
.import-steps h3 { margin: 0 0 6px !important; }
.import-note {
  margin-top: 18px; padding: 16px 20px; border-radius: 12px;
  background: rgba(6, 18, 30, .45); border: 1px solid rgba(255, 255, 255, .12);
  font-size: .9rem !important;
}

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.d-1 { transition-delay: .1s; } .d-2 { transition-delay: .2s; }
.d-3 { transition-delay: .3s; } .d-4 { transition-delay: .4s; } .d-5 { transition-delay: .5s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bottle img, .marquee__track, .hero__scroll span { animation: none; }
  [data-parallax] { transform: none !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  .header__cta { display: none; }
  .hero__inner { grid-template-columns: 1fr .7fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  .nav {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; align-items: center; justify-content: center; gap: 30px;
    background: rgba(6, 18, 30, .97); backdrop-filter: blur(16px);
    opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s;
  }
  .nav a { font-size: 1.25rem; }
  .nav.is-open { opacity: 1; visibility: visible; z-index: 999; }
  .burger { display: flex; margin-left: auto; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy h1 { margin-inline: auto; }
  .hero__lead, .hero__stats, .hero__actions { margin-inline: auto; justify-content: center; }
  .hero__bottle { order: -1; margin-bottom: -20px; }
  .hero__bottle img { width: min(240px, 52vw); }
  .hero { padding-top: 120px; }
  .about__grid, .production__grid, .taste__grid, .partnership__grid, .contact__inner { grid-template-columns: 1fr; }
  .taste__media { order: -1; }
  .markets__channels { grid-template-columns: 1fr; }
  .counters { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .legal__layout { grid-template-columns: 1fr; }
  .legal__toc { position: static; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { width: calc(100% - 36px); }
  .about__cards, .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__stats { gap: 20px; }
  .btn--lg { padding: 15px 28px; }
  .steps__item, .pstep { padding: 16px 14px; gap: 14px; }
}
