/* ===== tokens ===== */
:root{
  --ink:#051A24;
  --ink-2:#0D212C;
  --surface:#ffffff;
  --surface-2:#F2F5F6;
  --border:#DFE6E8;
  --text:#051A24;
  --text-light:#F6FCFF;
  --text-light-2:#E0EBF0;
  --muted:#273C46;
  --accent:#4f7942;
  --accent-2:#554321;
  --radius:16px;
  --radius-sm:10px;
  --radius-lg:32px;
  --font:"Inter",system-ui,sans-serif;
  --font-serif:"Playfair Display",Georgia,serif;
  --font-mono:ui-monospace,"SF Mono","JetBrains Mono",Menlo,Consolas,monospace;
  --shadow-primary:0 1px 2px 0 rgba(5,26,36,.14),0 4px 4px 0 rgba(5,26,36,.1),0 9px 6px 0 rgba(5,26,36,.06),0 17px 7px 0 rgba(5,26,36,.02),0 26px 7px 0 rgba(5,26,36,0),inset 0 2px 8px 0 rgba(255,255,255,.16);
  --shadow-soft:0 0 0 .5px rgba(5,26,36,.06),0 4px 30px rgba(5,26,36,.08);
  --shadow-card:0 4px 16px rgba(5,26,36,.08);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){html{scroll-behavior:auto}}

body{
  background:var(--surface);
  color:var(--text);
  font-family:var(--font);
  font-size:16px;
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

.wrap{max-width:1240px;margin:0 auto;padding:0 24px}

a{color:inherit;text-decoration:none}
ul{list-style:none}
h1,h2,h3{font-family:var(--font);font-weight:600;line-height:1.1;letter-spacing:-0.01em;color:var(--ink-2)}

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

.eyebrow{
  display:inline-block;
  font-family:var(--font-mono);
  font-size:12.5px;
  font-weight:500;
  letter-spacing:.04em;
  color:var(--muted);
  margin-bottom:14px;
}

.lead{color:var(--muted);font-size:17px;max-width:52ch}

.accent-serif{font-family:var(--font-serif);font-weight:600;font-style:italic}

/* ===== buttons ===== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-family:var(--font);
  font-weight:600;
  font-size:14.5px;
  border:1px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--ink);color:var(--text-light);box-shadow:var(--shadow-primary)}
.btn-primary:hover{background:var(--ink-2)}
.btn-ghost{background:var(--surface);color:var(--ink);box-shadow:var(--shadow-soft)}
.btn-ghost:hover{box-shadow:0 0 0 .5px rgba(5,26,36,.1),0 6px 34px rgba(5,26,36,.14)}
.btn-lg{padding:17px 34px;font-size:15.5px}

/* ===== header ===== */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:76px;gap:24px}
.logo{display:flex;align-items:center;gap:10px}
.logo-ring{
  width:30px;height:30px;border-radius:50%;
  border:1.5px solid var(--accent);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.logo-dot{width:9px;height:9px;border-radius:50%;background:var(--accent);animation:pulse 2.4s infinite}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(79,121,66,.45)}
  70%{box-shadow:0 0 0 9px rgba(79,121,66,0)}
  100%{box-shadow:0 0 0 0 rgba(79,121,66,0)}
}
@media (prefers-reduced-motion:reduce){.logo-dot{animation:none}}
.logo-word{font-family:var(--font-serif);font-weight:600;font-size:19px;color:var(--ink-2)}
.nav{display:flex;gap:30px;font-size:14.5px;font-weight:500;color:var(--ink)}
.nav a:hover{opacity:.65}
@media (max-width:820px){.nav{display:none}}

.hamburger{
  width:36px;height:36px;border-radius:50%;
  background:var(--ink);border:none;cursor:pointer;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:4px;
  flex-shrink:0;
}
.hamburger span{width:16px;height:2px;background:#fff;display:block;border-radius:1px}
.hamburger-close{font-size:18px;color:#fff;line-height:1}

/* ===== fullscreen menu overlay ===== */
.menu-overlay{
  position:fixed;inset:0;z-index:200;
  background:#fff;
  display:flex;flex-direction:column;
}
.menu-overlay[hidden]{display:none}
.menu-top{display:flex;align-items:center;justify-content:space-between;padding-top:20px;width:100%}
.menu-links{
  display:flex;flex-direction:column;gap:20px;
  margin-top:56px;padding-left:24px;
}
.menu-links a{
  font-family:var(--font-serif);
  font-size:clamp(30px,9vw,52px);
  font-weight:600;
  color:var(--ink-2);
}
.menu-links a:hover{opacity:.65}
.menu-cta{
  margin:auto 24px 24px;
  align-self:flex-start;
}

/* ===== hero ===== */
.hero-v2{padding:44px 0 64px}
.hero-top{display:flex;flex-direction:column;align-items:center;gap:22px;padding-bottom:56px}
.stats-row{display:flex;gap:clamp(24px,4vw,56px);flex-wrap:wrap;justify-content:center}
.stat{text-align:center}
.stat-num{
  display:block;
  font-size:clamp(1.5rem,5vw,3.5rem);
  font-weight:600;color:var(--ink-2);line-height:1;
}
.stat-num .accent{color:var(--accent);font-size:.5em;vertical-align:top}
.stat-label{
  display:block;margin-top:6px;
  font-family:var(--font-mono);
  font-size:clamp(10px,1.2vw,13px);
  font-weight:500;letter-spacing:.02em;
  color:var(--muted);white-space:pre-line;line-height:1.25;
}
.hero-cta-link{
  font-size:clamp(16px,2.4vw,24px);font-weight:600;color:var(--ink-2);
  display:inline-flex;align-items:center;gap:8px;white-space:nowrap;
}
.hero-cta-link:hover{opacity:.65}

.hero-bottom{display:flex;align-items:stretch;justify-content:space-between;gap:16px;flex-wrap:wrap}
.hero-side{
  display:flex;flex-direction:column;justify-content:space-between;gap:24px;
  width:min(280px,40vw);flex-shrink:0;
}
.hero-tagline{
  font-size:clamp(13px,1.3vw,15px);font-weight:400;
  text-align:right;color:var(--muted);line-height:1.5;
}
.hero-desc{
  font-size:clamp(13px,1.3vw,15px);font-weight:400;
  text-align:right;color:var(--muted);line-height:1.5;
}
.hero-heading{text-align:right;flex:1;min-width:260px}
.word-wrap{display:block;overflow:hidden;padding-top:.06em}
.hero-heading .word{
  display:block;
  font-family:var(--font-serif);
  font-size:clamp(2.4rem,9vw,7rem);
  line-height:1.05;font-weight:600;font-style:italic;color:var(--ink-2);
}
@media (max-width:640px){
  .hero-bottom{flex-direction:column;align-items:flex-end}
  .hero-side{width:100%;max-width:320px;flex-direction:column;gap:16px}
  .hero-desc{width:100%;max-width:320px;text-align:right}
}

/* ===== load-in animations ===== */
.fade-down{opacity:0;animation:fadeDown .5s cubic-bezier(.22,1,.36,1) forwards;animation-delay:calc(var(--i, 0) * .1s)}
@keyframes fadeDown{from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}
.fade-up{opacity:0;animation:fadeUp .6s cubic-bezier(.22,1,.36,1) forwards;animation-delay:calc(var(--i, 0) * .12s)}
@keyframes fadeUp{from{opacity:0;transform:translateY(32px)}to{opacity:1;transform:translateY(0)}}
.hero-heading .word{
  transform:translateY(110%);
  animation:wordUp .7s cubic-bezier(.22,1,.36,1) forwards;
  animation-delay:calc(.4s + var(--wi, 0) * .14s);
}
@keyframes wordUp{to{transform:translateY(0)}}

/* scroll-triggered reveal (IntersectionObserver adds .in-view once) */
.reveal{opacity:0;transform:translateY(30px)}
.reveal.in-view{animation:fadeInUp .8s ease-out forwards}
@keyframes fadeInUp{0%{opacity:0;transform:translateY(30px)}100%{opacity:1;transform:translateY(0)}}

@media (prefers-reduced-motion:reduce){
  .fade-down,.fade-up{animation:none;opacity:1}
  .reveal,.reveal.in-view{animation:none;opacity:1;transform:none}
  .hero-heading .word{animation:none;transform:translateY(0)}
}

/* ===== section head ===== */
.section-head{max-width:640px;margin-bottom:44px}
.section-head h2{font-family:var(--font-serif);font-size:clamp(28px,3.4vw,42px);font-weight:600;font-style:italic;margin-bottom:14px}

section{padding:88px 0}
section + section{border-top:1px solid var(--border)}

/* ===== catalog ===== */
.cat-group{margin-bottom:52px}
.cat-group:last-child{margin-bottom:0}
.cat-head{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px 16px;
  margin-bottom:24px;
  padding:14px 22px;
  background:var(--surface-2);
  border-radius:999px;
}
.cat-name{font-weight:600;font-size:clamp(16px,2vw,19px);color:var(--ink-2)}
.cat-count{
  font-family:var(--font-mono);
  font-size:12.5px;
  color:var(--muted);
}
.cat-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.cat-grid > .product-card:last-child:nth-child(odd){grid-column:span 2}
@media (max-width:760px){
  .cat-grid{grid-template-columns:1fr}
  .cat-grid > .product-card:last-child:nth-child(odd){grid-column:span 1}
}

.product-card{
  background:var(--surface);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-card);
  padding:32px;
  display:flex;
  flex-direction:column;
  position:relative;
}
.card-head{display:flex;align-items:flex-start;gap:10px;margin-bottom:14px}
.card-badge{
  display:inline-block;
  font-size:11.5px;
  font-weight:600;
  color:var(--accent);
  background:var(--surface-2);
  padding:4px 10px;
  border-radius:999px;
}
.card-badge-new{color:var(--accent-2)}
.card-price{
  margin-left:auto;
  font-size:22px;
  font-weight:700;
  color:var(--ink-2);
  white-space:nowrap;
}
.product-card h3{font-size:20px;margin-bottom:10px;color:var(--ink-2)}
.product-desc{color:var(--muted);font-size:14.5px;margin-bottom:20px}

.feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px 14px;
  margin-bottom:24px;
}
.feature-grid li{
  font-size:13.5px;
  color:var(--text);
  position:relative;
  padding-left:16px;
  line-height:1.4;
}
.feature-grid li::before{
  content:"";
  position:absolute;left:0;top:7px;
  width:5px;height:5px;
  border-radius:50%;
  background:var(--accent);
}
@media (max-width:520px){.feature-grid{grid-template-columns:1fr}}

.check-list{display:flex;flex-direction:column;gap:0;margin-bottom:22px}
.check-list li{
  font-size:14px;
  padding:9px 0;
  border-bottom:1px solid var(--border);
  color:var(--text);
  position:relative;
  padding-left:22px;
}
.check-list li:last-child{border-bottom:none}
.check-list li::before{
  content:"✓";
  position:absolute;left:0;top:9px;
  color:var(--accent);
  font-size:13px;
}
.check-list-lg li{font-size:15px;padding-top:12px;padding-bottom:12px}
.check-list-lg li::before{top:12px}

.btn-buy-full{
  margin-top:auto;
  width:100%;
  border-radius:999px;
  background:var(--ink);
  border:1px solid var(--ink);
  color:var(--text-light);
  font-size:14px;
  padding:14px 20px;
}
.btn-buy-full:hover{background:var(--ink-2);border-color:var(--ink-2)}

/* ===== process ===== */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
@media (max-width:900px){.steps{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.steps{grid-template-columns:1fr}}
.step{border-top:2px solid var(--border);padding-top:18px}
.step-top{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.step-num{font-family:var(--font-mono);color:var(--muted);font-size:14px;font-weight:500}
.checks-sent{color:var(--muted)}
.checks-delivered{color:var(--muted)}
.checks-read{color:var(--accent)}
.step .checks-read{color:var(--accent-2)}
.step h3{font-size:17px;margin-bottom:8px}
.step p{color:var(--muted);font-size:14.5px}

/* ===== pricing ===== */
.pricing-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
@media (max-width:820px){.pricing-grid{grid-template-columns:1fr}}
.pricing-card{
  border-radius:var(--radius-lg);
  padding:40px 40px 34px;
  display:flex;flex-direction:column;justify-content:space-between;gap:32px;
}
.pricing-card h3{font-size:clamp(22px,2.6vw,28px);margin:6px 0 14px}
.pricing-desc{font-size:15px;line-height:1.6}
.pricing-card-dark{
  background:var(--ink);
  color:var(--text-light-2);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06),var(--shadow-card);
}
.pricing-card-dark h3{color:var(--text-light)}
.pricing-card-dark .eyebrow{color:var(--text-light-2);opacity:.8}
.pricing-card-dark .check-list li{color:var(--text-light-2);border-bottom-color:rgba(255,255,255,.14)}
.pricing-card-light{background:var(--surface);box-shadow:var(--shadow-card)}
.pricing-bottom{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap}
.pricing-price{display:block;font-size:22px;font-weight:700}
.pricing-card-dark .pricing-price{color:var(--text-light)}
.pricing-card-light .pricing-price{color:var(--ink-2)}
.pricing-price-note{display:block;font-size:13px;margin-top:4px;opacity:.75;max-width:22ch}
.btn-on-dark{background:var(--surface);color:var(--ink);box-shadow:var(--shadow-soft)}
.btn-on-dark:hover{box-shadow:0 0 0 .5px rgba(255,255,255,.1),0 6px 34px rgba(0,0,0,.3)}

/* ===== team ===== */
.team-content{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:28px;
  align-items:start;
}
@media (max-width:900px){
  .team-content{grid-template-columns:1fr 1fr}
  .team-video-wrap{grid-column:1 / -1}
}
@media (max-width:600px){
  .team-content{grid-template-columns:1fr}
  .team-video-wrap{grid-column:auto}
}
.team-video-wrap{
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:16/11;
  background:var(--ink);
  box-shadow:var(--shadow-card);
}
.team-video{width:100%;height:100%;object-fit:cover;display:block}
.team-card{
  background:var(--surface);
  box-shadow:var(--shadow-card);
  border-radius:var(--radius-lg);
  padding:26px 28px;
}
.team-role{
  display:inline-block;
  font-family:var(--font-mono);
  font-size:12.5px;font-weight:500;
  color:var(--accent);
  margin-bottom:10px;
}
.team-card h3{font-family:var(--font-serif);font-size:26px;font-style:italic;margin-bottom:14px}
.team-card-alt .team-role{color:var(--accent-2)}
.team-card-alt .check-list li::before{color:var(--accent-2)}

/* ===== faq ===== */
.faq-list{display:flex;flex-direction:column;gap:14px;max-width:720px}
.faq-q{
  background:none;border:none;padding:0;width:100%;text-align:left;cursor:pointer;
}
.faq-a{margin-top:10px}
.faq-a .bubble-out{max-width:100%}
.faq-q .bubble-in{max-width:100%}
.faq-item{border-bottom:1px solid var(--border);padding-bottom:14px}
.faq-item:last-child{border-bottom:none}

.bubble{
  display:inline-block;
  max-width:82%;
  padding:12px 18px;
  border-radius:20px;
  font-size:14.5px;
  line-height:1.45;
}
.bubble-in{
  background:var(--surface-2);
  color:var(--text);
}
.bubble-out{
  background:var(--ink);
  color:var(--text-light);
}
.checks{font-size:12px;margin-left:6px}

/* ===== contact ===== */
.contact-form{display:flex;flex-direction:column;gap:16px;max-width:440px}
.contact-form label{display:flex;flex-direction:column;gap:6px;font-size:12.5px;font-weight:500;color:var(--muted)}
.contact-form input,.contact-form textarea{
  background:var(--surface-2);border:1px solid transparent;border-radius:var(--radius-sm);
  padding:12px 16px;color:var(--text);font-family:var(--font);font-size:14.5px;font-weight:400;resize:vertical;
}
.contact-form input:focus,.contact-form textarea:focus{border-color:var(--accent);outline:none}
.contact-form button{align-self:flex-start}
.form-note{font-size:13px;color:var(--muted)}

/* ===== order modal ===== */
.modal-overlay{
  position:fixed;inset:0;z-index:100;
  background:rgba(5,26,36,.6);
  display:flex;align-items:center;justify-content:center;
  padding:24px;
}
.modal-overlay[hidden]{display:none}
.modal{
  position:relative;
  width:100%;max-width:440px;
  background:var(--surface);
  border-radius:var(--radius-lg);
  padding:36px;
  box-shadow:0 30px 60px -20px rgba(5,26,36,.4);
  animation:modal-in .18s ease;
}
@keyframes modal-in{from{opacity:0;transform:translateY(8px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}
@media (prefers-reduced-motion:reduce){.modal{animation:none}}
.modal-close{
  position:absolute;top:16px;right:16px;
  width:32px;height:32px;
  display:flex;align-items:center;justify-content:center;
  background:none;border:none;cursor:pointer;
  font-size:22px;line-height:1;color:var(--muted);
  border-radius:50%;
}
.modal-close:hover{background:var(--surface-2);color:var(--text)}
.modal h3{font-family:var(--font-serif);font-size:24px;font-style:italic;margin-bottom:8px}
.modal-note{color:var(--muted);font-size:14px;margin-bottom:22px;font-weight:400}
#order-form button{align-self:stretch;justify-content:center}

/* ===== footer ===== */
.site-footer{border-top:1px solid var(--border);padding:36px 0}
.footer-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px;flex-direction:column}
@media (min-width:640px){.footer-inner{flex-direction:row}}
.footer-links{display:flex;gap:20px;flex-wrap:wrap}
.footer-links a{color:var(--muted);font-size:13.5px}
.footer-links a:hover{opacity:.7}
.muted{color:var(--muted);font-size:13.5px}

/* ===== consent checkbox ===== */
.consent{
  display:flex;flex-direction:row;align-items:flex-start;gap:10px;
  font-size:12.5px;font-weight:400;
  color:var(--muted);line-height:1.5;
}
.consent input[type="checkbox"]{
  flex-shrink:0;margin-top:2px;
  width:16px;height:16px;accent-color:var(--accent);cursor:pointer;
}
.consent a{color:var(--text);text-decoration:underline;text-underline-offset:2px}
.consent a:hover{color:var(--accent)}

/* ===== cookie banner ===== */
.cookie-banner{
  position:fixed;left:16px;right:16px;bottom:16px;z-index:150;
  max-width:520px;margin:0 auto;
  background:var(--ink);color:var(--text-light);
  border-radius:var(--radius);
  padding:18px 20px;
  display:flex;align-items:center;gap:16px;flex-wrap:wrap;
  box-shadow:0 20px 40px -16px rgba(5,26,36,.5);
}
.cookie-banner[hidden]{display:none}
.cookie-banner p{font-size:13px;line-height:1.5;flex:1;min-width:200px}
.cookie-banner a{color:var(--text-light);text-decoration:underline;text-underline-offset:2px}
.cookie-banner a:hover{opacity:.7}
.cookie-banner button{
  flex-shrink:0;background:var(--accent);color:#fff;border:none;
  padding:10px 20px;border-radius:999px;
  font-family:var(--font);font-weight:600;font-size:13px;
  cursor:pointer;
}
.cookie-banner button:hover{background:var(--accent-2)}

/* ===== legal pages ===== */
.legal-page{padding:64px 0 96px}
.legal{max-width:760px}
.legal h1{font-family:var(--font-serif);font-size:clamp(30px,4vw,44px);font-style:italic;margin-bottom:8px}
.legal-service{color:var(--muted);margin-bottom:36px}
.legal h2{font-size:17px;font-weight:600;margin:36px 0 12px;color:var(--ink-2)}
.legal p{margin-bottom:14px;color:var(--text);font-size:15px;line-height:1.65}
.legal ul{margin:0 0 14px 0;padding-left:20px;list-style:disc}
.legal li{margin-bottom:6px;font-size:15px;line-height:1.6}
.legal a{color:var(--accent);text-decoration:underline;text-underline-offset:2px}
.legal hr{border:none;border-top:1px solid var(--border);margin:32px 0}
.legal-back{margin-top:40px}
.legal-back a{font-weight:600;font-size:13.5px}

/* ===== marquee ===== */
.marquee-wrap{overflow:hidden;margin:0 0 16px}
.marquee-track{
  display:flex;width:max-content;
  animation:marquee 34s linear infinite;
}
@media (max-width:640px){.marquee-track{animation-duration:16s}}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.marquee-tile{
  flex-shrink:0;
  width:220px;height:150px;
  margin:0 10px;
  border-radius:var(--radius-lg);
  display:flex;flex-direction:column;justify-content:flex-end;gap:6px;
  padding:20px;
  color:var(--text-light);
  box-shadow:var(--shadow-card);
}
.marquee-tile-label{font-size:14.5px;font-weight:600;line-height:1.3}
@media (prefers-reduced-motion:reduce){.marquee-track{animation:none}}

/* ===== partner CTA ===== */
.partner{padding:64px 0}
.partner-box{
  position:relative;
  overflow:hidden;
  max-width:1240px;margin:0 auto;
  background:var(--surface-2);
  box-shadow:var(--shadow-card);
  border-radius:var(--radius-lg);
  padding:96px 24px;
  display:flex;flex-direction:column;align-items:center;gap:32px;
  text-align:center;
  cursor:pointer;
}
.partner-heading{
  font-family:var(--font-serif);
  font-style:italic;
  font-size:clamp(34px,7vw,68px);
  line-height:1.05;
  color:var(--ink-2);
  max-width:16ch;
}
.partner-cta{display:inline-flex;align-items:center;gap:12px;padding-left:8px}
.partner-cta-avatar{width:36px;height:36px;border-radius:50%;object-fit:cover;flex-shrink:0}
.partner-trail-item{
  position:fixed;top:0;left:0;z-index:5;
  pointer-events:none;
  width:110px;height:78px;
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  color:var(--text-light);
  font-size:12.5px;font-weight:600;text-align:center;
  padding:8px;
  box-shadow:var(--shadow-card);
  opacity:0;
  transition:opacity 1s ease,transform 1s ease;
}

