/* Vinolito — elegante, statische Markenwebsite */
:root {
  --ink: #0b0b0a;
  --ink-soft: #151513;
  --cream: #f1ecdf;
  --paper: #f8f5ed;
  --white: #fffefa;
  --gold: #c7a76a;
  --gold-soft: #dac8a4;
  --rose: #c98980;
  --sage: #7f8d7b;
  --muted: #6d6b64;
  --line-light: rgba(255, 255, 255, .18);
  --line-dark: rgba(11, 11, 10, .16);
  --serif: "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --script: "Segoe Script", "Bradley Hand", cursive;
  --container: 1240px;
  --radius: 2px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--ink); background: var(--gold-soft); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(92px, 11vw, 164px) 0; }
.skip-link {
  position: fixed; z-index: 1000; top: 10px; left: 10px; transform: translateY(-150%);
  padding: 10px 16px; color: var(--ink); background: var(--white); text-decoration: none;
}
.skip-link:focus { transform: none; }
.eyebrow {
  margin: 0 0 24px; color: var(--gold-soft); font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow--dark { color: #7d6842; }
.eyebrow span { display: inline-block; width: 28px; height: 1px; margin: 0 10px 3px 0; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .96; }
h1 { margin-bottom: 28px; font-size: clamp(3.2rem, 6.6vw, 6.6rem); letter-spacing: -.055em; }
h2 { margin-bottom: 32px; font-size: clamp(3rem, 5.3vw, 5.4rem); letter-spacing: -.045em; }
h1 em, h2 em { font-family: var(--script); font-size: .72em; font-weight: 400; letter-spacing: -.06em; }
.lead { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.42; }

/* Navigation */
.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto; color: var(--white);
}
.site-header::before {
  content: ""; position: absolute; z-index: 0; inset: 0; pointer-events: none;
  border-bottom: 1px solid transparent; background: rgba(11, 11, 10, .92);
  opacity: 0; backdrop-filter: blur(14px); transition: opacity .35s ease, border-color .35s ease;
}
.site-header.is-scrolled::before { border-color: var(--line-light); opacity: 1; }
.nav { position: relative; z-index: 1; height: 82px; display: flex; align-items: center; justify-content: space-between; }
.nav__brand { position: relative; z-index: 3; display: inline-flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.45rem; text-decoration: none; }
.nav__brand-mark {
  width: 34px; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid currentColor;
  border-radius: 50%; font-family: var(--serif); font-size: 1rem;
}
.nav__menu { display: flex; align-items: center; gap: clamp(20px, 3vw, 42px); }
.nav__menu a { position: relative; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.nav__menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: currentColor; transition: right .3s var(--ease); }
.nav__menu a:hover::after, .nav__menu a:focus-visible::after { right: 0; }
.nav__toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; color: inherit; background: none; }
.nav__toggle span { display: block; width: 24px; height: 1px; margin: 7px auto; background: currentColor; transition: transform .3s ease; }

/* Hero */
.hero { position: relative; min-height: 100svh; overflow: hidden; color: var(--white); background: var(--ink); }
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 80px 100%; opacity: .3; }
.hero__content { min-height: 100svh; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(30px, 5vw, 80px); padding-top: 112px; padding-bottom: 74px; }
.hero__copy { position: relative; z-index: 2; }
.hero__text { max-width: 650px; margin-bottom: 36px; color: rgba(255,255,255,.72); font-size: clamp(1rem, 1.45vw, 1.22rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 54px; display: inline-flex; align-items: center; justify-content: center; gap: 20px;
  padding: 14px 24px; border: 1px solid transparent; border-radius: var(--radius); font-size: .72rem;
  font-weight: 700; letter-spacing: .11em; text-decoration: none; text-transform: uppercase; cursor: pointer;
  transition: color .3s ease, background .3s ease, border-color .3s ease, transform .3s var(--ease);
}
.button:hover { transform: translateY(-2px); }
.button--light { color: var(--ink); background: var(--cream); }
.button--light:hover { background: var(--white); }
.button--ghost { color: var(--white); border-color: var(--line-light); }
.button--ghost:hover { border-color: var(--white); }
.button--dark { color: var(--white); background: var(--ink); }
.button--dark:hover { background: #292825; }
.button--wide { width: 100%; }
.hero__note { margin: 38px 0 0; color: rgba(255,255,255,.45); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; }
.hero__note span { margin-right: 8px; color: var(--gold); }
.hero__visual { position: relative; z-index: 1; width: min(43vw, 570px); justify-self: end; }
.hero__logo-wrap { position: relative; overflow: hidden; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; box-shadow: 0 35px 100px rgba(0,0,0,.5); }
.hero__logo-wrap::after { content: ""; position: absolute; inset: 0; border: 10px solid rgba(255,255,255,.035); border-radius: inherit; pointer-events: none; }
.hero__logo-wrap img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.06); }
.hero__orbit { position: absolute; inset: -28px; border: 1px solid rgba(199,167,106,.28); border-radius: 50%; }
.hero__orbit::after { content: "✦"; position: absolute; top: 9%; right: 7%; width: 32px; height: 32px; display: grid; place-items: center; color: var(--gold); background: var(--ink); }
.hero__badge { position: absolute; right: -18px; bottom: 7%; width: 116px; aspect-ratio: 1; display: grid; place-content: center; text-align: center; color: var(--ink); background: var(--gold-soft); border-radius: 50%; transform: rotate(8deg); box-shadow: 0 18px 45px rgba(0,0,0,.35); }
.hero__badge span { font-family: var(--serif); font-size: 2rem; line-height: 1; }
.hero__badge small { margin-top: 4px; font-size: .54rem; font-weight: 700; line-height: 1.35; letter-spacing: .12em; text-transform: uppercase; }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .26; }
.hero__glow--one { width: 44vw; height: 44vw; right: 3vw; top: 9vh; background: radial-gradient(circle, #987c49 0, rgba(11,11,10,0) 68%); }
.hero__glow--two { width: 18vw; height: 18vw; left: -8vw; bottom: -4vw; background: radial-gradient(circle, #6d4e47 0, rgba(11,11,10,0) 70%); }
.hero__scroll { position: absolute; z-index: 3; bottom: 28px; left: 50%; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.46); font-size: .58rem; letter-spacing: .18em; text-decoration: none; text-transform: uppercase; transform: translateX(-50%); }
.hero__scroll span { width: 32px; height: 1px; background: currentColor; }

/* Intro */
.intro { background: var(--cream); }
.intro__grid { display: grid; grid-template-columns: .22fr 1.05fr .85fr; gap: clamp(30px, 6vw, 94px); align-items: start; }
.section-number { padding-top: 8px; color: #8b7b5a; font-family: var(--serif); font-size: .9rem; }
.intro__copy { padding-top: 58px; }
.intro__copy > p:not(.lead):not(.signature) { color: var(--muted); }
.signature { margin-top: 34px; font-family: var(--script); font-size: 1.05rem; transform: rotate(-2deg); }

/* Principles */
.principles { color: var(--white); background: var(--ink-soft); }
.section-head { display: grid; grid-template-columns: 1fr .65fr; align-items: end; gap: 60px; margin-bottom: 72px; }
.section-head h2 { margin-bottom: 0; }
.section-head > p { max-width: 470px; margin-bottom: 8px; color: rgba(255,255,255,.56); }
.section-head--dark > p { color: var(--muted); }
.principles__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-light); border-left: 1px solid var(--line-light); }
.principle-card { position: relative; min-height: 340px; padding: 34px 28px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); transition: background .4s ease, transform .4s var(--ease); }
.principle-card:hover { z-index: 1; background: #20201d; transform: translateY(-8px); }
.principle-card__number { position: absolute; top: 34px; right: 28px; color: rgba(255,255,255,.34); font-size: .68rem; }
.principle-card__icon { display: block; min-height: 110px; color: var(--gold-soft); font-family: var(--serif); font-size: 3rem; }
.principle-card h3 { margin: 20px 0 16px; font-size: 2rem; }
.principle-card p { margin: 0; color: rgba(255,255,255,.54); font-size: .9rem; }

/* Selection */
.selection { background: var(--paper); }
.selection__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.wine-card { min-height: 390px; display: grid; grid-template-columns: 1fr 1.1fr; overflow: hidden; border: 1px solid var(--line-dark); background: var(--white); }
.wine-card__art { position: relative; min-height: 390px; overflow: hidden; background: #d9d0bb; }
.wine-card--rose .wine-card__art { background: #c99991; }
.wine-card--sparkling .wine-card__art { background: #a6a08d; }
.wine-card--special .wine-card__art { background: #393a35; }
.wine-card__art::before { content: ""; position: absolute; width: 290px; height: 290px; left: -100px; top: 45px; border: 1px solid rgba(255,255,255,.42); border-radius: 50%; }
.bottle { position: absolute; left: 29%; bottom: -30px; width: 72px; height: 310px; border-radius: 22px 22px 10px 10px; background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.38) 44%, rgba(20,20,18,.23)); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), 20px 20px 45px rgba(0,0,0,.18); transform: rotate(-7deg); }
.bottle::before { content: ""; position: absolute; width: 30px; height: 70px; left: 21px; top: -54px; border-radius: 6px 6px 0 0; background: inherit; }
.bottle::after { content: "VINOLITO"; position: absolute; top: 125px; left: 8px; width: 56px; padding: 20px 0; color: rgba(0,0,0,.58); background: rgba(255,250,238,.78); font-size: .48rem; font-weight: 700; letter-spacing: .15em; text-align: center; writing-mode: vertical-rl; }
.glass { position: absolute; right: 17%; bottom: 25px; width: 69px; height: 138px; border: 2px solid rgba(255,255,255,.56); border-radius: 12% 12% 46% 46% / 6% 6% 38% 38%; transform: rotate(7deg); }
.glass::before { content: ""; position: absolute; left: 31px; bottom: -70px; width: 2px; height: 70px; background: rgba(255,255,255,.56); }
.glass::after { content: ""; position: absolute; left: 3px; bottom: -73px; width: 62px; height: 2px; background: rgba(255,255,255,.56); }
.glass--flute { width: 46px; height: 160px; border-radius: 9px 9px 23px 23px; }
.glass--flute::before { left: 20px; }.glass--flute::after { left: -7px; }
.spark { position: absolute; top: 20%; right: 16%; color: var(--gold-soft); font-size: 2.6rem; }
.wine-card__body { position: relative; display: flex; flex-direction: column; justify-content: flex-end; padding: 38px; }
.status { position: absolute; top: 28px; left: 32px; padding: 5px 10px; border: 1px solid var(--line-dark); font-size: .56rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.wine-card__index { position: absolute; top: 28px; right: 32px; color: var(--muted); font-family: var(--serif); font-size: .8rem; }
.wine-card h3 { margin-bottom: 16px; font-size: clamp(2.1rem, 3vw, 3rem); }
.wine-card__body > p:not(.wine-card__index) { color: var(--muted); font-size: .88rem; }
.wine-card__link { margin-top: 18px; font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.wine-card__link span { margin-left: 10px; }

/* Manifesto */
.manifesto { overflow: hidden; padding: 0 0 130px; color: var(--white); background: var(--ink); }
.manifesto__headline {
  width: min(calc(100% - 40px), 1380px); margin-inline: auto; display: grid;
  grid-template-columns: minmax(32px, 1fr) auto minmax(32px, 1fr); align-items: center; gap: clamp(18px, 3vw, 44px);
  padding: 46px 0 86px; color: var(--gold-soft); text-align: center;
}
.manifesto__headline span { font-family: var(--serif); font-size: clamp(3rem, 7vw, 7rem); line-height: .96; letter-spacing: -.045em; }
.manifesto__headline em { font-family: var(--script); font-size: .72em; font-weight: 400; white-space: nowrap; }
.manifesto__headline i { display: flex; align-items: center; gap: 16px; font-family: var(--sans); font-size: .8rem; font-style: normal; }
.manifesto__headline i::before, .manifesto__headline i::after { content: ""; flex: 1; height: 1px; background: rgba(218,200,164,.28); }
.manifesto__headline i:first-child::before, .manifesto__headline i:last-child::after { display: none; }
.manifesto__grid { display: grid; grid-template-columns: .8fr 1fr 1fr; }
.manifesto__aside { grid-row: span 2; padding-right: 70px; border-right: 1px solid var(--line-light); }
.manifesto__aside > p:last-child { color: rgba(255,255,255,.5); }
.manifesto__stat, .manifesto__statement { min-height: 190px; display: flex; flex-direction: column; justify-content: center; padding: 25px clamp(28px, 4vw, 60px); border-bottom: 1px solid var(--line-light); }
.manifesto__stat:nth-child(3), .manifesto__statement:nth-child(5) { border-left: 1px solid var(--line-light); }
.manifesto__stat strong { font-family: var(--serif); font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 400; line-height: 1; }
.manifesto__stat span, .manifesto__statement span { color: rgba(255,255,255,.42); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; }
.manifesto__statement strong { margin-top: 6px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 400; }

/* Project */
.project { background: var(--cream); }
.project__grid { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(60px, 10vw, 140px); align-items: center; }
.project__visual { position: relative; max-width: 510px; }
.project__frame { position: relative; min-height: 640px; display: flex; align-items: flex-end; overflow: hidden; padding: 44px; color: var(--white); background: radial-gradient(circle at 68% 24%, #77634b, transparent 28%), linear-gradient(145deg, #25241f, #080808); box-shadow: 24px 26px 0 #d5cbb7; }
.project__frame::before { content: ""; position: absolute; inset: 26px; border: 1px solid rgba(255,255,255,.18); }
.project__frame p { position: relative; z-index: 2; margin: 0; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.08; }
.project__frame em { color: var(--gold-soft); }
.project__glass { position: absolute; top: 80px; right: 70px; width: 130px; height: 240px; border: 2px solid rgba(255,255,255,.38); border-radius: 8% 8% 45% 45%; transform: rotate(8deg); }
.project__glass::before { content: ""; position: absolute; left: 63px; bottom: -130px; width: 2px; height: 130px; background: rgba(255,255,255,.38); }
.project__glass::after { content: ""; position: absolute; left: 8px; bottom: -132px; width: 112px; height: 2px; background: rgba(255,255,255,.38); }
.project__stamp { position: absolute; right: -40px; top: 38%; width: 116px; aspect-ratio: 1; display: grid; place-items: center; padding: 16px; color: var(--ink); background: var(--gold-soft); border-radius: 50%; font-size: .55rem; font-weight: 700; letter-spacing: .11em; text-align: center; text-transform: uppercase; transform: rotate(8deg); }
.project__copy > p:not(.eyebrow):not(.lead) { color: var(--muted); }
.text-link { display: inline-flex; gap: 18px; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }

/* Feedback */
.feedback { color: var(--white); background: #171715; }
.feedback__grid { display: grid; grid-template-columns: .8fr 1fr; gap: clamp(60px, 10vw, 140px); align-items: start; }
.feedback__copy > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.58); }
.feedback blockquote { margin: 56px 0 0; padding: 22px 0 0 28px; border-top: 1px solid var(--line-light); border-left: 1px solid var(--gold); color: var(--gold-soft); font-family: var(--serif); font-size: 1.18rem; font-style: italic; }
.feedback-form { padding: clamp(28px, 4vw, 52px); border: 1px solid var(--line-light); background: rgba(255,255,255,.025); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.feedback-form label { display: block; margin-bottom: 24px; }
.feedback-form label > span:first-child { display: block; margin-bottom: 8px; font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.feedback-form label small { color: rgba(255,255,255,.35); font-weight: 400; }
.feedback-form input, .feedback-form textarea { width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.25); border-radius: 0; outline: 0; color: var(--white); background: transparent; resize: vertical; transition: border-color .2s ease; }
.feedback-form input:focus, .feedback-form textarea:focus { border-color: var(--gold-soft); }
.feedback-form input::placeholder, .feedback-form textarea::placeholder { color: rgba(255,255,255,.28); }
.feedback-form .checkbox { display: flex; gap: 12px; align-items: flex-start; margin: 28px 0; cursor: pointer; }
.feedback-form .checkbox input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--gold); }
.feedback-form .checkbox span { margin: 0; font-size: .78rem; font-weight: 400; letter-spacing: 0; line-height: 1.4; text-transform: none; }
.netlify-honeypot { position: absolute; overflow: hidden; clip: rect(0 0 0 0); width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; white-space: nowrap; }
.form-privacy { margin: -10px 0 24px; color: rgba(255,255,255,.42); font-size: .7rem; line-height: 1.55; }
.form-privacy a { color: rgba(255,255,255,.72); text-underline-offset: 3px; }
.feedback-form button:disabled { opacity: .58; cursor: wait; transform: none; }
.form-status { min-height: 24px; margin: 14px 0 0; color: var(--gold-soft); font-size: .8rem; text-align: center; }
.form-status.is-error { color: #e6a49c; }

/* Partners and footer */
.partners { background: var(--paper); }
.partners__inner { position: relative; display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; padding: clamp(38px, 6vw, 76px); border: 1px solid var(--line-dark); }
.partners h2 { margin-bottom: 0; }
.partners__copy p { margin-bottom: 28px; color: var(--muted); }
.partners__cat { position: absolute; right: 3%; top: -39px; width: 78px; height: 78px; display: grid; place-items: center; color: var(--cream); background: var(--ink); border-radius: 50%; font-size: 2rem; transform: rotate(10deg); }
.footer { padding: 74px 0 22px; color: var(--white); background: var(--ink); }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 72px; }
.footer__brand { display: flex; gap: 14px; align-items: center; }
.footer__brand strong { display: block; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; line-height: 1; }
.footer__brand small { display: block; margin-top: 8px; color: rgba(255,255,255,.42); font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; }
.footer__top > p { margin: 0; font-family: var(--serif); font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: .95; text-align: right; }
.footer__top em { color: var(--gold-soft); font-family: var(--script); font-size: .75em; font-weight: 400; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line-light); color: rgba(255,255,255,.42); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }
.footer__bottom div { display: flex; gap: 28px; }
.footer__bottom a { text-decoration: none; transition: color .2s ease; }
.footer__bottom a:hover { color: var(--white); }

/* Legal pages */
.legal-page { color: var(--ink); background: var(--cream); }
.legal-page .site-header { color: var(--white); background: var(--ink); }
.legal-main { min-height: 80vh; padding: 150px 0 110px; }
.legal-main__inner { max-width: 820px; }
.legal-main h1 { margin-bottom: 45px; }
.legal-main h2 { margin: 52px 0 18px; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -.02em; }
.legal-main h3 { margin: 34px 0 10px; font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .12em; line-height: 1.4; text-transform: uppercase; }
.legal-main p, .legal-main li { color: #55534d; }
.legal-main a { text-underline-offset: 3px; }
.legal-back { display: inline-block; margin-bottom: 30px; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero__content { grid-template-columns: 1fr; padding-top: 145px; padding-bottom: 100px; }
  .hero__visual { width: min(80vw, 540px); justify-self: center; }
  .hero__copy { max-width: 780px; }
  .intro__grid { grid-template-columns: 50px 1fr; }
  .intro__copy { grid-column: 2; padding-top: 0; max-width: 650px; }
  .principles__grid { grid-template-columns: repeat(2, 1fr); }
  .wine-card { grid-template-columns: 1fr; }
  .wine-card__art { min-height: 320px; }
  .manifesto__grid { grid-template-columns: 1fr 1fr; }
  .manifesto__aside { grid-column: 1 / -1; grid-row: auto; padding: 0 0 40px; border-right: 0; }
  .project__grid, .feedback__grid { gap: 60px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 86px 0; }
  .nav { height: 70px; }
  .nav__toggle { position: relative; z-index: 3; display: block; }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .nav__menu { position: fixed; z-index: 2; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 30px; visibility: hidden; opacity: 0; background: rgba(11,11,10,.98); transition: opacity .3s ease, visibility .3s ease; }
  .nav__menu.is-open { visibility: visible; opacity: 1; }
  .nav__menu a { font-family: var(--serif); font-size: 2.2rem; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .hero__content { gap: 42px; padding-top: 104px; }
  .hero__copy { grid-row: 2; }
  .hero__text { font-size: .98rem; }
  .hero__actions { align-items: stretch; flex-direction: column; }
  .hero__visual { grid-row: 1; width: min(76vw, 350px); margin: 0 auto; }
  .hero__badge { right: -3px; width: 88px; }
  .hero__scroll { display: none; }
  .intro__grid { grid-template-columns: 1fr; gap: 12px; }
  .section-number { display: none; }
  .intro__copy { grid-column: auto; }
  .section-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 48px; }
  .principles__grid, .selection__grid { grid-template-columns: 1fr; }
  .principle-card { min-height: 270px; }
  .wine-card { grid-template-columns: 1fr 1fr; min-height: 350px; }
  .wine-card__art { min-height: 350px; }
  .wine-card__body { padding: 28px; }
  .manifesto { padding-bottom: 84px; }
  .manifesto__headline { width: calc(100% - 32px); grid-template-columns: 1fr; gap: 14px; padding: 44px 0 64px; }
  .manifesto__headline i { width: 100%; }
  .manifesto__headline i:last-child { display: none; }
  .manifesto__headline i:first-child::before { display: block; }
  .manifesto__stat, .manifesto__statement { min-height: 150px; padding: 20px; }
  .project__grid, .feedback__grid, .partners__inner { grid-template-columns: 1fr; }
  .project__visual { width: calc(100% - 22px); }
  .project__frame { min-height: 530px; padding: 30px; box-shadow: 16px 18px 0 #d5cbb7; }
  .project__stamp { right: -30px; }
  .feedback__grid { gap: 52px; }
  .partners__inner { gap: 22px; }
  .footer__top { flex-direction: column; gap: 54px; }
  .footer__top > p { text-align: left; }
  .footer__bottom { align-items: flex-start; flex-direction: column; }
  .footer__bottom div { flex-wrap: wrap; gap: 15px 24px; }
}

@media (max-width: 540px) {
  h1 { font-size: clamp(2.8rem, 14vw, 4.3rem); }
  h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .hero__visual { width: min(78vw, 330px); margin: 0 auto; }
  .hero__badge { bottom: 1%; }
  .principle-card { padding: 28px 24px; }
  .wine-card { grid-template-columns: 1fr; }
  .wine-card__art { min-height: 280px; }
  .wine-card__body { min-height: 300px; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .manifesto__headline span { font-size: clamp(2.8rem, 13vw, 4rem); }
  .manifesto__headline em { display: block; margin-top: 8px; }
  .manifesto__stat:nth-child(3), .manifesto__statement:nth-child(5) { border-left: 0; }
  .manifesto__stat, .manifesto__statement { border-bottom: 1px solid var(--line-light); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .feedback-form { padding: 25px 20px; }
}

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

@media print {
  .site-header, .hero__scroll, .footer { display: none; }
  .legal-main { padding-top: 20px; }
}
