:root{
  --olive:#4d5622;
  --olive-dark:#2f331c;
  --gold:#a8832e;
  --gold-light:#d4b576;
  --white:#ffffff;
  --ink:#1e2118;
  --muted-text:#5e6354;
  --bg-muted:#f8f7f2;
  --border:#e8e5da;
  --radius:14px;
  --max:1200px;
  --shadow-sm:0 1px 2px rgba(30,33,24,.04);
  --shadow-md:0 8px 24px rgba(30,33,24,.08);
  --shadow-lg:0 18px 44px rgba(30,33,24,.12);
  --transition:.22s cubic-bezier(.4,0,.2,1);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Helvetica Neue",Helvetica,Arial,"Inter",system-ui,sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
h1,h2,h3{line-height:1.18;margin:0 0 .55em;color:var(--olive-dark);font-weight:700;letter-spacing:-.01em}
h1{font-size:clamp(2.1rem,4.6vw,3.4rem)}
h2{font-size:clamp(1.55rem,2.6vw,2.15rem)}
h3{font-size:1.08rem}
p{margin:0 0 1em}
.container{max-width:var(--max);margin:0 auto;padding:0 24px}
.skip{position:absolute;left:-9999px}
.skip:focus{left:16px;top:16px;background:var(--white);padding:8px 12px;border-radius:var(--radius);z-index:100}

/* Header */
.header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.88);border-bottom:1px solid var(--border);backdrop-filter:saturate(140%) blur(14px);-webkit-backdrop-filter:saturate(140%) blur(14px)}
.header__inner{display:flex;align-items:center;gap:24px;min-height:74px}
.logo img{height:44px;width:auto;object-fit:contain}
.nav{display:flex;gap:28px;margin-left:auto;font-size:.93rem;font-weight:500}
.nav a{padding:6px 0;border-bottom:2px solid transparent;transition:color var(--transition),border-color var(--transition),transform var(--transition)}
.nav a:hover{color:var(--gold);border-color:var(--gold);transform:translateY(-1px)}
.header__actions{display:flex;align-items:center;gap:12px}
.lang{display:flex;border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;background:var(--white);box-shadow:var(--shadow-sm)}
.lang__btn{border:0;background:transparent;padding:7px 12px;font:inherit;font-size:.8rem;font-weight:600;color:var(--muted-text);cursor:pointer;transition:background var(--transition),color var(--transition)}
.lang__btn:hover{color:var(--olive)}
.lang__btn.is-active{background:var(--olive);color:var(--white)}
.burger{display:none;flex-direction:column;justify-content:center;gap:5px;width:42px;height:42px;padding:0 10px;background:transparent;border:1px solid var(--border);border-radius:var(--radius);cursor:pointer}
.burger span{display:block;height:2px;background:var(--olive);border-radius:2px}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:14px 28px;border-radius:var(--radius);font-weight:600;font-size:.97rem;border:1px solid transparent;cursor:pointer;transition:background var(--transition),color var(--transition),border-color var(--transition),box-shadow var(--transition),transform var(--transition)}
.btn--sm{padding:9px 18px;font-size:.86rem}
.btn--primary{background:var(--gold);color:#fff;border-color:var(--gold);font-weight:700}
.btn--primary:hover{background:#c09a3c;border-color:#c09a3c;box-shadow:var(--shadow-md);transform:translateY(-2px)}
.btn:focus-visible{outline:2px solid var(--gold-light);outline-offset:3px}
.btn--ghost{border-color:var(--white);color:var(--white);background:rgba(255,255,255,.1)}
.btn--ghost:hover{background:var(--white);color:var(--olive-dark);border-color:var(--white)}

/* Hero */
.hero{
  background:linear-gradient(180deg,rgba(30,33,24,.78) 0%,rgba(30,33,24,.55) 60%,rgba(30,33,24,.68) 100%),url("assets/hero.jpg") center/cover no-repeat;
  color:var(--white);
}
.hero__inner{padding:120px 24px 130px;max-width:860px;margin:0 auto;text-align:center}
.hero h1{color:var(--white);max-width:760px;margin-left:auto;margin-right:auto}
.hero__eyebrow{color:var(--gold-light);font-weight:600;letter-spacing:.16em;text-transform:uppercase;font-size:.78rem;margin-bottom:16px}
.hero__text{font-size:1.12rem;max-width:640px;margin:0 auto 8px;color:rgba(255,255,255,.9)}
.hero__actions{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;margin-top:32px}

/* Sections */
.section{padding:96px 0}
.section--muted{background:var(--bg-muted)}
.eyebrow{color:var(--gold);font-weight:600;letter-spacing:.14em;text-transform:uppercase;font-size:.76rem;margin-bottom:12px}
.grid{display:grid;gap:48px}
.grid--2{grid-template-columns:1fr 1fr;align-items:start}
.grid--form{grid-template-columns:1fr 1.1fr;align-items:start}

.goals{list-style:none;margin:0;padding:0;display:grid;gap:18px}
.goals li{background:var(--bg-muted);border:1px solid var(--border);border-left:3px solid var(--gold);border-radius:var(--radius);padding:22px;transition:box-shadow var(--transition),transform var(--transition)}
.goals li:hover{box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.goals p{margin:0;color:var(--muted-text);font-size:.95rem}

.cards{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:32px}
.card{background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:26px;transition:border-color var(--transition),box-shadow var(--transition),transform var(--transition)}
.card:hover{border-color:var(--gold-light);box-shadow:var(--shadow-md);transform:translateY(-3px)}
.card p{margin:0;color:var(--muted-text);font-size:.93rem;line-height:1.55}
.card__num{display:inline-block;color:var(--gold);font-weight:700;font-size:.82rem;letter-spacing:.12em;margin-bottom:10px}

/* Product cards with hover image */
.card--product{position:relative;overflow:hidden;padding:0;min-height:220px;display:block}
.card--product .card__body{padding:26px;position:relative;z-index:2;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;transition:transform var(--transition)}
.card--product .card__body h3{min-height:calc(1.18em * 2);display:flex;align-items:flex-start;margin-bottom:.55em}
.card--product .card__body p{margin:0}
.card__media{position:absolute;inset:0;z-index:1;opacity:0;transition:opacity .35s ease,transform .35s ease;transform:scale(1.05)}
.card__media img{width:100%;height:100%;object-fit:cover}
.card__media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(30,33,24,.2),rgba(30,33,24,.72))}
.card--product:hover .card__media,.card--product:focus-within .card__media{opacity:1;transform:scale(1)}
.card--product:hover .card__body,.card--product:focus-within .card__body{transform:translateY(4px)}
.card--product:hover h3,.card--product:focus-within h3{color:var(--white);text-shadow:0 1px 3px rgba(0,0,0,.25)}
.card--product:hover p,.card--product:focus-within p{color:rgba(255,255,255,.93)}

/* Touch devices: no hover, so reveal product imagery by default */
@media (hover:none){
  .card--product .card__media{opacity:1;transform:scale(1)}
  .card--product .card__body h3{color:var(--white);text-shadow:0 1px 3px rgba(30,33,24,.35)}
  .card--product .card__body p{color:rgba(255,255,255,.93)}
}


.steps{list-style:none;margin:32px 0 0;padding:0;display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.steps li{position:relative;background:var(--white);border:1px solid var(--border);border-radius:var(--radius);padding:26px;transition:box-shadow var(--transition),transform var(--transition)}
.steps li:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.steps__num{display:inline-flex;align-items:center;justify-content:center;width:36px;height:36px;border-radius:50%;background:var(--olive);color:var(--white);font-weight:700;font-size:.9rem;margin-bottom:14px}
.steps p{margin:0;color:var(--muted-text);font-size:.93rem;line-height:1.55}

.contacts{list-style:none;margin:24px 0 0;padding:0;display:grid;gap:10px;font-weight:600}
.contacts a{border-bottom:1px solid var(--gold-light);transition:color var(--transition),border-color var(--transition)}
.contacts a:hover{color:var(--gold);border-color:var(--gold)}

/* Form */
.form{display:grid;grid-template-columns:1fr 1fr;gap:18px;background:var(--bg-muted);border:1px solid var(--border);border-radius:var(--radius);padding:32px}
.field{display:flex;flex-direction:column;gap:7px}
.field--full{grid-column:1/-1}
label{font-size:.84rem;font-weight:600;color:var(--muted-text)}
input,textarea{font:inherit;padding:13px 16px;border:1px solid var(--border);border-radius:var(--radius);background:var(--white);color:var(--ink);transition:border-color var(--transition),box-shadow var(--transition)}
input:focus,textarea:focus{outline:none;border-color:var(--gold);box-shadow:0 0 0 3px rgba(168,131,46,.12)}
textarea{resize:vertical;min-height:120px}
.error{display:none;color:#a3341f;font-size:.8rem}
.field.is-invalid .error{display:block}
.field.is-invalid input,.field.is-invalid textarea{border-color:#a3341f}
.form__ok{grid-column:1/-1;margin:0;color:var(--olive);font-weight:600}
.form__ok--error{color:#a8322e}

/* Footer */
.footer{background:var(--olive-dark);color:rgba(255,255,255,.84);padding:72px 0 28px;font-size:.93rem}
.footer__inner{display:grid;grid-template-columns:1.2fr 1.4fr 1fr;gap:48px}
.footer h3{color:var(--gold-light);font-size:.96rem;font-weight:700}
.footer ul{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.footer a{transition:color var(--transition)}
.footer a:hover{color:var(--gold-light)}
.footer__logo{background:var(--white);border-radius:var(--radius);padding:8px 12px;height:44px;width:auto;object-fit:contain;margin-bottom:16px}
.footer__bottom{margin-top:48px;padding-top:22px;border-top:1px solid rgba(255,255,255,.12);font-size:.85rem}
.footer__bottom p{margin:0}

/* Reveal on scroll (progressive enhancement) */
.reveal{opacity:0;transform:translateY(14px);transition:opacity .6s cubic-bezier(.4,0,.2,1),transform .6s cubic-bezier(.4,0,.2,1)}
.reveal.is-visible{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .reveal{opacity:1;transform:none;transition:none}
  html{scroll-behavior:auto}
}

/* Responsive */
@media (max-width:1024px){
  .cards,.steps{grid-template-columns:repeat(2,1fr)}
  .footer__inner{grid-template-columns:1fr 1fr}
}
@media (max-width:960px){
  .burger{display:flex;order:3}
  .header__inner{gap:12px;min-height:66px}
  .nav{
    position:absolute;left:0;right:0;top:100%;
    display:none;flex-direction:column;gap:0;
    background:var(--white);border-bottom:1px solid var(--border);
    padding:8px 24px 20px;
    box-shadow:var(--shadow-lg)
  }
  .nav.is-open{display:flex;animation:navIn .24s cubic-bezier(.4,0,.2,1)}
  @keyframes navIn{from{opacity:0;transform:translateY(-6px)}to{opacity:1;transform:none}}
  .nav a{padding:15px 2px;font-size:1rem;border-bottom:1px solid var(--border)}
  .nav a:last-child{border-bottom:0}
  .nav a:hover{transform:none}
  .header__actions{margin-left:auto;gap:10px}
  .grid--2,.grid--form{grid-template-columns:1fr}
  .hero__inner{padding:96px 24px 104px;text-align:left}
  .hero h1,.hero__text{margin-left:0;margin-right:0}
  .hero__actions{justify-content:flex-start}
  .section{padding:72px 0}
  .grid{gap:36px}
}
@media (max-width:720px){
  .container{padding:0 20px}
  .cards,.steps,.form{grid-template-columns:1fr}
  .footer__inner{grid-template-columns:1fr;gap:34px}
  .header__actions .btn{display:none}
  .logo img{height:36px}
  .header__inner{min-height:62px}
  .lang__btn{padding:8px 11px}
  .burger{width:46px;height:46px;border-color:rgba(77,86,34,.28);background:var(--white);box-shadow:var(--shadow-sm)}
  .burger span{width:100%}
  .hero__inner{padding:76px 20px 84px}
  .hero__text{font-size:1.04rem}
  .hero__actions{gap:12px}
  .hero__actions .btn{width:100%}
  .section{padding:60px 0}
  .form{padding:22px;gap:16px}
  .cards,.steps{gap:18px}

  /* Mobile product cards: show the full photo above the text */
  .card--product{min-height:0}
  .card--product .card__media{position:relative;inset:auto;opacity:1;transform:none;aspect-ratio:4/3;width:100%;border-radius:var(--radius) var(--radius) 0 0;overflow:hidden}
  .card--product .card__media::after{display:none}
  .card--product .card__media img{width:100%;height:100%;object-fit:cover}
  .card--product .card__body{padding:20px 22px 24px;transform:none}
  .card--product .card__body h3{min-height:0;color:var(--olive-dark);text-shadow:none}
  .card--product .card__body p{color:var(--muted-text)}
}
@media (max-width:420px){
  .hero__inner{padding:64px 20px 72px}
  .card,.steps li{padding:22px}
}


/* ============ Polish pass (2026 audit) ============ */

/* Focus visibility across all interactive elements */
a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible{outline:2px solid var(--gold);outline-offset:3px;border-radius:6px}

/* Header: elevate on scroll, tighter nav CTA */
.header{transition:box-shadow var(--transition),background var(--transition)}
.header.is-scrolled{box-shadow:0 4px 24px rgba(30,33,24,.07);background:rgba(255,255,255,.94)}
.nav__cta{display:none}
.nav a[aria-current="true"]{color:var(--olive);border-color:var(--gold)}

/* Facts strip */
.facts{background:var(--olive-dark);color:rgba(255,255,255,.9)}
.facts__inner{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding:34px 24px}
.fact{display:flex;flex-direction:column;gap:4px;position:relative;padding-left:20px}
.fact::before{content:"";position:absolute;left:0;top:4px;bottom:4px;width:2px;background:var(--gold)}
.fact__value{font-size:clamp(1.15rem,1.9vw,1.5rem);font-weight:700;color:var(--white);letter-spacing:-.01em;line-height:1.2}
.fact__label{font-size:.82rem;letter-spacing:.04em;color:rgba(255,255,255,.72)}

/* Form note */
.form__note{grid-column:1/-1;margin:0;font-size:.78rem;color:var(--muted-text);line-height:1.5}

/* Back to top */
.totop{position:fixed;right:20px;bottom:20px;z-index:60;width:48px;height:48px;display:grid;place-items:center;border:1px solid var(--border);border-radius:50%;background:rgba(255,255,255,.94);backdrop-filter:blur(8px);box-shadow:var(--shadow-md);cursor:pointer;transition:opacity var(--transition),transform var(--transition),background var(--transition)}
.totop svg{width:20px;height:20px;fill:var(--olive)}
.totop:hover{background:var(--olive);transform:translateY(-2px)}
.totop:hover svg{fill:var(--white)}
.totop[hidden]{display:none}

/* Selection + accessible text tweaks */
::selection{background:var(--gold-light);color:var(--olive-dark)}
.contacts a{word-break:break-word}
input,textarea{min-height:48px}

/* Tap targets */
.lang__btn{min-height:40px}
.nav a{min-height:24px}

@media (max-width:960px){
  .facts__inner{grid-template-columns:1fr 1fr;gap:20px;padding:28px 24px}
  .nav__cta{display:inline-flex;margin-top:14px;width:100%}
  .header__cta{display:none}
}
@media (max-width:720px){
  .totop{right:14px;bottom:14px;width:44px;height:44px}
  .facts__inner{padding:24px 20px}
}
@media print{
  .header,.totop,.hero__actions,.form,.lang,.burger{display:none !important}
  body{color:#000}
  .reveal{opacity:1;transform:none}
}

@media (max-width:720px){
  /* Full-bleed product photo on mobile cards */
  .card--product{padding:0 !important;overflow:hidden}
  .card--product .card__media{margin:0;width:100%;aspect-ratio:4/3;border-radius:0}
  .card--product .card__media img{display:block}
}

/* ============ v3: editorial / organic direction (2026) ============ */
:root{
  --display:"Helvetica Neue",Helvetica,Arial,system-ui,sans-serif;
  --arch:clamp(90px,14vw,190px);
  --cream:#f4f1e6;
}
h1,h2,h3,.fact__value,.hero__badge-value{font-family:var(--display)}
h1,h2{letter-spacing:-.03em;font-weight:600}
h1{font-size:clamp(2.3rem,5.2vw,4.1rem);line-height:1.05}
h2{font-size:clamp(1.7rem,3.2vw,2.7rem);line-height:1.1;max-width:20ch}
.eyebrow,.hero__eyebrow{display:inline-flex;align-items:center;gap:8px}
.eyebrow::before,.hero__eyebrow::before{content:"";width:22px;height:1px;background:currentColor;opacity:.6}

/* Hero: asymmetric split + arch visual */
.hero{position:relative;overflow:hidden;background:linear-gradient(150deg,rgba(30,33,24,.9) 0%,rgba(47,51,28,.7) 55%,rgba(30,33,24,.86) 100%),url("assets/hero.jpg") center/cover no-repeat}
.hero__inner{display:grid;grid-template-columns:1.08fr .92fr;gap:56px;align-items:center;max-width:var(--max);padding:112px 24px 116px;text-align:left}
.hero__copy{max-width:640px}
.hero h1,.hero__text{margin-left:0;margin-right:0;max-width:none}
.hero__actions{justify-content:flex-start}
.pills{list-style:none;display:flex;flex-wrap:wrap;gap:8px;margin:30px 0 0;padding:0}
.pills li{font-size:.76rem;letter-spacing:.08em;text-transform:uppercase;font-weight:600;color:rgba(255,255,255,.86);border:1px solid rgba(255,255,255,.3);border-radius:999px;padding:7px 14px;backdrop-filter:blur(4px)}
.hero__panel{position:relative}
.arch{position:relative;border-radius:var(--arch) var(--arch) 20px 20px;overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:4/5}
.arch::after{content:"";position:absolute;inset:0;border-radius:inherit;border:1px solid rgba(255,255,255,.28)}
.arch img{width:100%;height:100%;object-fit:cover;object-position:84% 55%}
.hero__badge{position:absolute;left:-18px;bottom:26px;background:var(--cream);color:var(--olive-dark);border-radius:999px 999px 999px 24px;padding:18px 26px;box-shadow:var(--shadow-lg);display:grid;gap:2px;max-width:200px}
.hero__badge-value{font-size:2.1rem;line-height:1;font-weight:700;color:var(--gold)}
.hero__badge-label{font-size:.78rem;letter-spacing:.04em;color:var(--muted-text)}

/* Marquee ticker */
.ticker{background:var(--gold);color:#20240f;overflow:hidden;border-block:1px solid rgba(0,0,0,.08)}
.ticker__track{display:flex;align-items:center;gap:22px;padding:13px 0;width:max-content;animation:tick 38s linear infinite;font-family:var(--display);font-weight:600;font-size:.95rem;letter-spacing:.06em;text-transform:uppercase}
.ticker i{width:6px;height:6px;border-radius:50%;background:currentColor;opacity:.5;flex:0 0 auto}
@keyframes tick{to{transform:translateX(-50%)}}
@media (prefers-reduced-motion:reduce){.ticker__track{animation:none}}

/* Sections: softer cream tone + organic corners */
.section--muted{background:var(--cream)}
.card{border-radius:20px}
.goals li{border-radius:20px 20px 20px 4px}
.card--product{border-radius:var(--radius)}
.card--product{border-radius:72px 72px 20px 20px}
.card--product .card__media,.card--product:nth-child(odd) .card__media{border-radius:inherit}
.card--feature{border-radius:24px 24px 24px 4px}
.card__num{font-family:var(--display);font-size:1.9rem;letter-spacing:-.02em;color:var(--gold-light);display:block;line-height:1;margin-bottom:14px}

/* Steps: zigzag rail with oversized numerals */
.steps{grid-template-columns:1fr;gap:0;position:relative}
.steps li{background:transparent;border:0;border-top:1px solid var(--border);border-radius:0;display:grid;grid-template-columns:96px minmax(0,1fr) minmax(0,1.15fr);gap:28px;align-items:center;padding:32px 8px;transition:background var(--transition)}
.steps li:last-child{border-bottom:1px solid var(--border)}
.steps li:hover{box-shadow:none;transform:none;background:rgba(255,255,255,.55)}
.steps__num{width:auto;height:auto;background:none;font-family:var(--display);font-size:clamp(2.6rem,4.6vw,3.9rem);font-weight:700;line-height:.85;margin:0;color:var(--gold);transition:color var(--transition)}
.steps li:hover .steps__num{color:var(--olive)}
.steps h3{margin:0;font-size:1.15rem}
.steps p{align-self:center}

/* Form + facts polish */
.form{border-radius:28px 28px 28px 6px}
input,textarea{border-radius:12px}
.facts__inner{padding:40px 24px}
.fact__value{font-weight:700}
.footer{border-radius:var(--arch) var(--arch) 0 0;margin-top:0}
.btn{border-radius:999px}
.lang{border-radius:999px}

@media (max-width:960px){
  .hero__inner{grid-template-columns:1fr;gap:40px;padding:88px 24px 96px}
  .hero__panel{max-width:420px}
  .arch{aspect-ratio:4/3}
  .hero__badge{left:auto;right:-6px;bottom:-14px}
  .steps li{grid-template-columns:64px minmax(0,1fr);gap:10px 18px;align-items:start;padding:26px 8px}
  .steps p{grid-column:2}
  .steps li:nth-child(even){padding-left:8px}
}
@media (max-width:720px){
  .hero__inner{padding:68px 20px 84px}
  h2{max-width:none}
  .pills li{font-size:.7rem;padding:6px 12px}
  .card--product{border-radius:44px 44px 22px 22px}
  .footer{border-radius:56px 56px 0 0}
}

/* Product cards: always-visible arched photo (desktop + mobile) */
.card--product{min-height:0;padding:0;overflow:hidden;background:var(--white)}
.card--product .card__media{position:relative;inset:auto;opacity:1;transform:none;width:100%;aspect-ratio:4/3;overflow:hidden;border-radius:inherit;border-bottom-left-radius:0;border-bottom-right-radius:0}
.card--product .card__media::after{display:none}
.card--product .card__media img{width:100%;height:100%;object-fit:cover;transition:transform .5s cubic-bezier(.4,0,.2,1)}
.card--product:hover .card__media img,.card--product:focus-within .card__media img{transform:scale(1.06)}
.card--product .card__body{padding:22px 24px 26px;transform:none}
.card--product .card__body h3,.card--product:hover .card__body h3{min-height:calc(1.18em * 2);color:var(--olive-dark);text-shadow:none}
.card--product .card__body p,.card--product:hover .card__body p{color:var(--muted-text)}
.card--product:hover,.card--product:focus-within{transform:translateY(-4px);box-shadow:var(--shadow-md);border-color:var(--gold-light)}
@media (hover:none){.card--product .card__body h3{color:var(--olive-dark);text-shadow:none}.card--product .card__body p{color:var(--muted-text)}}
