/* ============================================================
   Champag — homepage styles
   Palette: cream canvas, espresso ink, forest-green accent
   ============================================================ */

:root {
  --cream:      #f7f2ea;
  --cream-2:    #f2ebdf;
  --ink:        #211d18;
  --ink-soft:   #5b5347;
  --green:      #3f5e45;
  --green-dark: #34503a;
  --green-lt:   #9bb59f;
  /* hero photo silhouette ("river stone" — the shape chosen in design) */
  --hero-radius: 48% 52% 38% 62% / 55% 42% 58% 45%;
  --maxw: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Hanken Grotesk', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--green); color: var(--cream); }
a { color: inherit; }
img { display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; }

.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow .rule { width: 26px; height: 1.5px; background: var(--green); display: block; }
.eyebrow .label {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--green);
}

/* ============================================================
   Keyframes
   ============================================================ */
@keyframes champFade   { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes champFloat  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes champFloatSlow { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-12px) rotate(4deg); } }
@keyframes champSpin   { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes champDrift  { 0%,100% { transform: translate(0,0); } 50% { transform: translate(10px,-8px); } }
@keyframes champOverlay { from { opacity: 0; } to { opacity: 1; } }
@keyframes champPop    { from { opacity: 0; transform: translateY(18px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes champSpinner { to { transform: rotate(360deg); } }

/* scroll reveal (IntersectionObserver toggles .is-visible) */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s cubic-bezier(.22,.68,.16,1), transform .85s cubic-bezier(.22,.68,.16,1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   Decorations
   ============================================================ */
.deco { position: absolute; z-index: 0; pointer-events: none; }
.deco-ring { border: 1.5px solid rgba(63,94,69,0.2); border-radius: 50%; }
.deco-dots { background: radial-gradient(rgba(63,94,69,0.2) 1.4px, transparent 1.6px) 0 0 / 14px 14px; }

/* ============================================================
   Nav
   ============================================================ */
.nav-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,242,234,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(33,29,24,0.10);
}
.nav { max-width: var(--maxw); margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-mark { width: 30px; height: 30px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex: none; }
.brand-mark > span { width: 13px; height: 9px; background: var(--cream); border-radius: 13px 13px 4px 4px; display: block; }
.brand-name { font-family: 'Newsreader', serif; font-size: 24px; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.nav-right { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { text-decoration: none; font-size: 15px; font-weight: 500; color: #3a342c; transition: color 0.18s; }
.nav-link:hover { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { display: flex; align-items: center; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; border: 1px solid rgba(33,29,24,0.18); border-radius: 40px; overflow: hidden; }
.lang-tab { display: inline-flex; align-items: center; background: transparent; color: var(--ink-soft); border: none; padding: 7px 13px; cursor: pointer; text-decoration: none; font-family: 'Hanken Grotesk', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; transition: color .18s, background .18s; }
.lang-tab:hover { color: var(--green); }
.lang-tab.is-active { background: var(--green); color: var(--cream); }
.lang-tab.is-active:hover { color: var(--cream); }

.btn { text-decoration: none; cursor: pointer; border: none; display: inline-block; text-align: center; }
.btn-primary { font-size: 14px; font-weight: 600; color: var(--cream); background: var(--green); padding: 11px 22px; border-radius: 40px; transition: background 0.2s; }
.btn-primary:hover { background: var(--green-dark); }
.nav-cta { min-width: 176px; }

/* ============================================================
   Hero
   ============================================================ */
.hero { max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,7vw,96px) 32px clamp(40px,5vw,64px); display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px,4vw,56px); align-items: center; }
.hero-copy { animation: champFade 0.7s ease both; }
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 { font-family: 'Newsreader', serif; font-weight: 500; font-size: clamp(42px,5.4vw,72px); line-height: 1.02; letter-spacing: -0.02em; margin: 0 0 26px; color: var(--ink); text-wrap: balance; }
.hero-sub { font-size: clamp(17px,1.4vw,19px); line-height: 1.6; color: var(--ink-soft); max-width: 30em; margin: 0 0 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-cta1 { font-size: 15px; font-weight: 600; color: var(--cream); background: var(--green); padding: 15px 28px; border-radius: 44px; transition: background .2s, transform .2s; }
.hero-cta1:hover { background: var(--green-dark); transform: translateY(-2px); }
.hero-cta2 { font-size: 15px; font-weight: 600; color: var(--ink); padding: 15px 26px; border-radius: 44px; border: 1px solid rgba(33,29,24,0.22); transition: border-color .2s, background .2s; }
.hero-cta2:hover { border-color: var(--green); background: rgba(63,94,69,0.06); }

.hero-media { position: relative; animation: champFade 0.9s ease both; padding: 10px; }
.hero-glow { position: absolute; inset: -12% -10% -8% -10%; background: radial-gradient(58% 52% at 55% 42%, rgba(63,94,69,0.18), rgba(63,94,69,0) 70%); z-index: 0; pointer-events: none; }
.hero-dots-a { left: -18px; top: 18px; width: 96px; height: 96px; background: radial-gradient(rgba(63,94,69,0.28) 1.4px, transparent 1.6px) 0 0 / 13px 13px; animation: champDrift 9s ease-in-out infinite; }
.hero-dots-b { right: -12px; bottom: 2px; width: 88px; height: 88px; background: radial-gradient(rgba(63,94,69,0.24) 1.4px, transparent 1.6px) 0 0 / 13px 13px; animation: champDrift 12s ease-in-out infinite reverse; }
.hero-ring-sm { left: 36px; top: -16px; width: 50px; height: 50px; border: 1.5px solid rgba(63,94,69,0.4); border-radius: 50%; animation: champFloat 6s ease-in-out infinite; }
.hero-ring-lg { right: -30px; top: 34px; width: 158px; height: 158px; border: 1.5px solid rgba(63,94,69,0.15); border-radius: 50%; animation: champFloatSlow 13s ease-in-out infinite; }
.hero-echo { left: 26px; top: 18px; right: -16px; bottom: 8px; border: 1.5px solid rgba(63,94,69,0.38); border-radius: var(--hero-radius); }
.hero-photo { position: relative; z-index: 1; aspect-ratio: 1.2/1; border-radius: var(--hero-radius); overflow: hidden; box-shadow: 0 38px 72px -34px rgba(33,29,24,0.55); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.spore { position: absolute; border-radius: 50%; z-index: 2; }
.spore-a { left: -6px; bottom: 70px; width: 15px; height: 15px; background: var(--green); animation: champFloat 5s ease-in-out infinite; }
.spore-b { right: 66px; top: -8px; width: 9px; height: 9px; background: rgba(63,94,69,0.5); animation: champFloat 6.5s ease-in-out infinite; }
.spore-c { right: -4px; top: 120px; width: 11px; height: 11px; background: rgba(63,94,69,0.4); animation: champFloat 7.5s ease-in-out infinite; }
.bio-seal { position: absolute; right: 2px; top: -6px; z-index: 3; width: 74px; height: 74px; border-radius: 50%; background: var(--green); box-shadow: 0 16px 34px -16px rgba(33,29,24,0.6); display: flex; align-items: center; justify-content: center; animation: champFloatSlow 7s ease-in-out infinite; }
.bio-seal .dash { position: absolute; inset: 6px; border: 1px dashed rgba(247,242,234,0.5); border-radius: 50%; animation: champSpin 26s linear infinite; }
.bio-seal .word { font-family: 'Newsreader', serif; font-style: italic; font-size: 22px; color: var(--cream); line-height: 1; }
.cred-chip { position: absolute; left: -18px; bottom: 22px; z-index: 3; background: var(--cream); border: 1px solid rgba(33,29,24,0.07); border-radius: 44px; padding: 10px 18px 10px 12px; display: flex; align-items: center; gap: 11px; box-shadow: 0 20px 44px -22px rgba(33,29,24,0.5); animation: champFloat 5.5s ease-in-out infinite; }
.cred-chip .dot { width: 30px; height: 30px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex: none; }
.cred-chip .dot > span { width: 13px; height: 9px; background: var(--cream); border-radius: 13px 13px 4px 4px; display: block; }
.cred-chip .txt { font-size: 13.5px; font-weight: 600; color: var(--ink); letter-spacing: 0.01em; }

/* ============================================================
   Certifications
   ============================================================ */
.certs { scroll-margin-top: 84px; position: relative; overflow: hidden; border-top: 1px solid rgba(33,29,24,0.10); border-bottom: 1px solid rgba(33,29,24,0.10); background: var(--cream-2); }
.certs .deco-ring-a { top: -44px; right: -44px; width: 184px; height: 184px; animation: champFloatSlow 10s ease-in-out infinite; }
.certs .deco-dots-a { bottom: 22px; left: 24px; width: 108px; height: 108px; animation: champDrift 11s ease-in-out infinite; }
.section-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(54px,6vw,84px) 32px; }
.certs-head { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px,4vw,56px); align-items: end; margin-bottom: 46px; }
.certs-head .eyebrow { margin-bottom: 18px; }
.h2-serif { font-family: 'Newsreader', serif; font-weight: 500; line-height: 1.06; letter-spacing: -0.015em; margin: 0; color: var(--ink); }
.certs-head h2 { font-size: clamp(30px,3.4vw,44px); }
.certs-intro { font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); margin: 0; max-width: 38em; }
.certs-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cert-card { background: var(--cream); border: 1px solid rgba(33,29,24,0.10); border-radius: 8px; padding: 26px 24px; display: flex; flex-direction: column; gap: 16px; transition: transform .28s cubic-bezier(.22,.68,.16,1), box-shadow .28s; cursor: default; }
.cert-card:hover { transform: translateY(-6px); box-shadow: 0 22px 40px -28px rgba(33,29,24,0.5); }
.cert-logo { height: 64px; display: flex; align-items: center; justify-content: flex-start; }
.cert-logo img { max-height: 60px; max-width: 120px; object-fit: contain; }
.cert-card h3 { font-family: 'Newsreader', serif; font-weight: 600; font-size: 19px; line-height: 1.2; margin: 0; color: var(--ink); }
.cert-card p { font-size: 14px; line-height: 1.55; color: var(--ink-soft); margin: 0; }

/* ============================================================
   Philosophy
   ============================================================ */
.philosophy { position: relative; overflow: hidden; max-width: var(--maxw); margin: 0 auto; padding: clamp(64px,8vw,112px) 32px; display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px,5vw,72px); align-items: center; }
.philosophy .deco-dots-a { top: 36px; left: -30px; width: 120px; height: 120px; background: radial-gradient(rgba(63,94,69,0.16) 1.4px, transparent 1.6px) 0 0 / 14px 14px; animation: champDrift 12s ease-in-out infinite; }
.philosophy .deco-ring-a { bottom: -34px; right: 48px; width: 150px; height: 150px; border-color: rgba(63,94,69,0.16); animation: champFloat 8s ease-in-out infinite; }
.philosophy-media { position: relative; z-index: 1; }
.philosophy-media .frame { aspect-ratio: 1/1; border-radius: 46% 54% 52% 48% / 52% 46% 54% 48%; overflow: hidden; background: repeating-linear-gradient(135deg,#efe7d9,#efe7d9 11px,#e8dfcf 11px,#e8dfcf 22px); box-shadow: 0 26px 56px -30px rgba(33,29,24,0.45); }
.philosophy-media img { width: 100%; height: 100%; object-fit: cover; }
.philosophy-copy { position: relative; z-index: 1; }
.philosophy-copy .eyebrow { margin-bottom: 22px; }
.philosophy-copy h2 { font-size: clamp(30px,3.6vw,48px); line-height: 1.07; margin: 0 0 24px; text-wrap: balance; }
.philosophy-copy p { font-size: 17px; line-height: 1.68; color: var(--ink-soft); margin: 0 0 20px; }
.philosophy-copy p:last-child { margin: 0; }

/* ============================================================
   Products (dark showcase)
   ============================================================ */
.products { scroll-margin-top: 84px; position: relative; overflow: hidden; background: var(--ink); color: #f3ede2; }
.products .deco-ring-a { top: -60px; right: -50px; width: 240px; height: 240px; border-color: rgba(155,181,159,0.16); animation: champFloatSlow 12s ease-in-out infinite; }
.products .deco-dots-a { bottom: 44px; left: -28px; width: 120px; height: 120px; background: radial-gradient(rgba(155,181,159,0.18) 1.4px, transparent 1.6px) 0 0 / 15px 15px; animation: champDrift 13s ease-in-out infinite; }
.products-head { max-width: 42em; margin-bottom: 54px; }
.products-head .eyebrow { margin-bottom: 20px; }
.products-head .eyebrow .rule { background: var(--green-lt); }
.products-head .eyebrow .label { color: var(--green-lt); }
.products-head h2 { font-family: 'Newsreader', serif; font-weight: 500; font-size: clamp(32px,4vw,52px); line-height: 1.05; letter-spacing: -0.015em; margin: 0; color: var(--cream); text-wrap: balance; }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.product-card { background: #2b2620; border: 1px solid rgba(247,242,234,0.10); border-radius: 10px; overflow: hidden; display: flex; flex-direction: column; transition: transform .28s cubic-bezier(.22,.68,.16,1), border-color .28s, box-shadow .28s; }
.product-card:hover { transform: translateY(-7px); border-color: rgba(155,181,159,0.4); box-shadow: 0 26px 46px -28px rgba(0,0,0,0.7); }
.product-photo { aspect-ratio: 4/3.2; background: repeating-linear-gradient(135deg,#332e27,#332e27 11px,#2b2620 11px,#2b2620 22px); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-photo img { width: 100%; height: 100%; object-fit: cover; }
.product-body { padding: 28px 26px 30px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.product-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.product-body h3 { font-family: 'Newsreader', serif; font-weight: 600; font-size: 25px; line-height: 1.1; margin: 0; color: var(--cream); }
.product-latin { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-lt); flex: none; }
.product-desc { font-size: 14.5px; line-height: 1.6; color: #c3bcae; margin: 0; flex: 1; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 6px; }
.product-tag { font-size: 12px; font-weight: 500; color: #d8d1c4; border: 1px solid rgba(247,242,234,0.18); border-radius: 40px; padding: 5px 12px; }

/* ============================================================
   Process
   ============================================================ */
.process { scroll-margin-top: 84px; position: relative; overflow: hidden; max-width: var(--maxw); margin: 0 auto; padding: clamp(64px,8vw,112px) 32px; }
.process .deco-ring-a { top: 40px; right: -44px; width: 168px; height: 168px; border-color: rgba(63,94,69,0.18); animation: champFloatSlow 11s ease-in-out infinite; }
.process .deco-dots-a { bottom: -30px; left: 36px; width: 110px; height: 110px; background: radial-gradient(rgba(63,94,69,0.16) 1.4px, transparent 1.6px) 0 0 / 14px 14px; animation: champDrift 12s ease-in-out infinite; }
.process-head { position: relative; z-index: 1; max-width: 44em; margin-bottom: 48px; }
.process-head .eyebrow { margin-bottom: 20px; }
.process-head h2 { font-family: 'Newsreader', serif; font-weight: 500; font-size: clamp(32px,4vw,52px); line-height: 1.05; letter-spacing: -0.015em; margin: 0; color: var(--ink); text-wrap: balance; }
.process-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border-top: 1px solid rgba(33,29,24,0.16); }
.step { padding: 40px; border-right: 1px solid rgba(33,29,24,0.10); }
.step:last-child { border-right: none; }
.step-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.step-n { font-family: 'Newsreader', serif; font-size: 17px; font-weight: 600; color: var(--cream); background: var(--green); width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: none; }
.step-label { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: #8a8170; }
.step h3 { font-family: 'Newsreader', serif; font-weight: 500; font-size: 24px; line-height: 1.15; margin: 0 0 14px; color: var(--ink); }
.step p { font-size: 15px; line-height: 1.62; color: var(--ink-soft); margin: 0; padding-right: 18px; }

/* ============================================================
   Contact CTA
   ============================================================ */
.contact { scroll-margin-top: 84px; position: relative; overflow: hidden; color: #f3f1e8; background-color: var(--green); }
.contact .deco-ring-a { top: -50px; left: -40px; width: 200px; height: 200px; border-color: rgba(247,242,234,0.16); animation: champFloatSlow 12s ease-in-out infinite; }
.contact .deco-dots-a { bottom: 28px; right: 38px; width: 124px; height: 124px; background: radial-gradient(rgba(247,242,234,0.16) 1.4px, transparent 1.6px) 0 0 / 15px 15px; animation: champDrift 13s ease-in-out infinite; }
.contact-inner { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(64px,8vw,108px) 32px; display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px,5vw,64px); align-items: center; }
.contact h2 { font-family: 'Newsreader', serif; font-weight: 500; font-size: clamp(34px,4.4vw,58px); line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 20px; color: #f7f4ec; text-wrap: balance; }
.contact-sub { font-size: 18px; line-height: 1.6; color: #d4ddca; margin: 0; max-width: 32em; }
.contact-actions { display: flex; flex-direction: column; gap: 13px; width: 300px; align-items: center; justify-content: flex-start; position: relative; top: 25px; }
.contact-cta { font-size: 16px; font-weight: 600; color: var(--green); background: var(--cream); padding: 17px 34px; border-radius: 44px; text-align: center; box-shadow: 0 12px 26px -16px rgba(0,0,0,0.55); transition: transform .2s, box-shadow .2s; width: 100%; }
.contact-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -16px rgba(0,0,0,0.6); }
.contact-row { display: flex; align-items: center; gap: 14px; text-decoration: none; background: rgba(247,242,234,0.07); border: 1px solid rgba(247,242,234,0.16); border-radius: 16px; padding: 13px 16px; transition: background .2s, transform .2s; width: 225px; }
.contact-row:hover { background: rgba(247,242,234,0.14); transform: translateX(4px); }
.contact-row .icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(247,242,234,0.14); display: flex; align-items: center; justify-content: center; flex: none; }
.contact-row .meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.contact-row .meta .k { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #a9bda6; }
.contact-row .meta .v { font-size: 16px; font-weight: 600; color: #f7f4ec; }

/* ============================================================
   Footer
   ============================================================ */
.footer { position: relative; overflow: hidden; background: var(--ink); color: #bdb6a8; }
.footer .deco-ring-a { top: -40px; right: 80px; width: 160px; height: 160px; border-color: rgba(247,242,234,0.06); animation: champFloatSlow 13s ease-in-out infinite; }
.footer-grid { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,5vw,72px) 32px 36px; display: grid; grid-template-columns: 1.5fr 0.85fr 0.85fr 1.25fr; gap: 36px; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand .mark { width: 28px; height: 28px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; }
.footer-brand .mark > span { width: 12px; height: 8px; background: var(--cream); border-radius: 12px 12px 4px 4px; display: block; }
.footer-brand .name { font-family: 'Newsreader', serif; font-size: 22px; font-weight: 600; color: var(--cream); }
.footer-tagline { font-size: 14.5px; line-height: 1.6; color: #9a9384; margin: 0; max-width: 26em; }
.footer-col-company { align-self: auto; display: block; margin-left: 100px; }
.footer-col-label { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #7d7567; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-link { text-decoration: none; font-size: 14.5px; color: #bdb6a8; transition: color .18s; }
.footer-link:hover { color: #f3ede2; }
.footer-address { font-size: 14.5px; line-height: 1.55; color: #9a9384; width: 315px; }
.footer-bottom { position: relative; z-index: 1; max-width: var(--maxw); margin: 0 auto; padding: 18px 32px 0; border-top: 1px solid rgba(247,242,234,0.10); font-size: 13px; color: #7d7567; }
.footer-spacer { height: 36px; }

/* ============================================================
   Contact dialog
   ============================================================ */
.modal-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(28,25,21,0.55); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 24px; animation: champOverlay 0.25s ease both; }
.modal { position: relative; width: 100%; max-width: 540px; max-height: 92vh; overflow: auto; background: var(--cream); border-radius: 18px; box-shadow: 0 40px 90px -30px rgba(28,25,21,0.6); padding: clamp(28px,4vw,44px); animation: champPop 0.32s cubic-bezier(.2,.7,.2,1) both; }
.modal-dots { position: absolute; top: 20px; left: 20px; width: 90px; height: 90px; background: radial-gradient(rgba(63,94,69,0.18) 1.3px, transparent 1.5px) 0 0 / 12px 12px; z-index: 0; pointer-events: none; }
.modal-close { position: absolute; top: 18px; right: 18px; z-index: 3; width: 36px; height: 36px; border: none; background: rgba(33,29,24,0.06); border-radius: 50%; cursor: pointer; font-size: 22px; line-height: 1; color: #3a342c; display: flex; align-items: center; justify-content: center; transition: background .18s; }
.modal-close:hover { background: rgba(33,29,24,0.12); }
.modal-body { position: relative; z-index: 1; }
.modal .eyebrow { margin-bottom: 14px; }
.modal .eyebrow .label { font-size: 12px; }
.modal-seal { width: 30px; height: 30px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex: none; }
.modal-seal > span { width: 13px; height: 9px; background: var(--cream); border-radius: 13px 13px 4px 4px; display: block; }
.modal h2 { font-family: 'Newsreader', serif; font-weight: 500; font-size: clamp(26px,3vw,34px); line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 8px; color: var(--ink); }
.modal-sub { font-size: 15px; line-height: 1.55; color: var(--ink-soft); margin: 0 0 26px; max-width: 42em; }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-label { display: block; font-size: 12.5px; font-weight: 600; color: #3a342c; margin-bottom: 6px; letter-spacing: 0.01em; }
.field { width: 100%; padding: 12px 14px; border: 1px solid rgba(33,29,24,0.2); border-radius: 10px; background: #fffdf9; font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; color: var(--ink); outline: none; transition: border-color .18s, box-shadow .18s; }
.field:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(63,94,69,0.16); }
select.field { cursor: pointer; }
textarea.field { resize: vertical; min-height: 108px; }
/* honeypot — visually hidden, off-screen, not tabbable */
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-submit { margin-top: 4px; width: 100%; padding: 15px; border: none; border-radius: 44px; background: var(--green); color: var(--cream); font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s, transform .2s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: progress; transform: none; }
.spinner { width: 17px; height: 17px; border: 2px solid rgba(247,242,234,0.4); border-top-color: var(--cream); border-radius: 50%; animation: champSpinner 0.7s linear infinite; }
.form-error { margin: 0; font-size: 14px; line-height: 1.5; color: #a23c2e; background: rgba(162,60,46,0.08); border: 1px solid rgba(162,60,46,0.25); border-radius: 10px; padding: 11px 14px; }
.form-success { text-align: center; padding: 22px 0 8px; }
.success-check { width: 66px; height: 66px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; animation: champPop .4s cubic-bezier(.2,.7,.2,1) both; }
.form-success h2 { font-family: 'Newsreader', serif; font-weight: 500; font-size: 30px; line-height: 1.1; margin: 0 0 10px; color: var(--ink); }
.form-success p { font-size: 15.5px; line-height: 1.55; color: var(--ink-soft); margin: 0 auto 26px; max-width: 32em; }
.success-close { padding: 14px 36px; border: none; border-radius: 44px; background: var(--green); color: var(--cream); font-family: 'Hanken Grotesk', sans-serif; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .2s, transform .2s; }
.success-close:hover { background: var(--green-dark); transform: translateY(-1px); }

[hidden] { display: none !important; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .hero-media { max-width: 520px; }
  .certs-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .certs-grid { grid-template-columns: repeat(2,1fr); }
  .philosophy { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; max-width: 460px; }
  .process-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(33,29,24,0.10); }
  .step:last-child { border-bottom: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-actions { top: 0; width: 100%; align-items: stretch; }
  .contact-row { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-company { margin-left: 0; }
}
@media (max-width: 560px) {
  .nav { padding: 14px 20px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .section-inner, .philosophy, .process, .contact-inner, .footer-grid, .footer-bottom { padding-left: 20px; padding-right: 20px; }
  .certs-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .spinner { animation: champSpinner 0.7s linear infinite !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Legal pages (terms / privacy)
   ============================================================ */
.legal-hero { position: relative; overflow: hidden; background: var(--cream-2); border-bottom: 1px solid rgba(33,29,24,0.10); }
.legal-hero .deco-ring-a { top: -50px; right: -40px; width: 190px; height: 190px; animation: champFloatSlow 12s ease-in-out infinite; }
.legal-hero .deco-dots-a { bottom: 18px; left: 28px; width: 110px; height: 110px; animation: champDrift 12s ease-in-out infinite; }
.legal-hero-inner { position: relative; z-index: 1; max-width: 860px; margin: 0 auto; padding: clamp(54px,7vw,92px) 32px clamp(40px,5vw,56px); animation: champFade 0.6s ease both; }
.legal-hero .eyebrow { margin-bottom: 18px; }
.legal-hero h1 { font-family: 'Newsreader', serif; font-weight: 500; font-size: clamp(34px,5vw,56px); line-height: 1.04; letter-spacing: -0.02em; margin: 0 0 14px; color: var(--ink); text-wrap: balance; }
.legal-updated { font-size: 14px; color: var(--ink-soft); margin: 0; }

.legal-body { max-width: 860px; margin: 0 auto; padding: clamp(40px,6vw,72px) 32px clamp(56px,7vw,96px); }
.legal-body h2 { font-family: 'Newsreader', serif; font-weight: 500; font-size: clamp(23px,2.6vw,30px); line-height: 1.15; letter-spacing: -0.01em; color: var(--ink); margin: 44px 0 14px; padding-top: 8px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-family: 'Hanken Grotesk', sans-serif; font-weight: 700; font-size: 16px; color: var(--ink); margin: 26px 0 8px; }
.legal-body p { font-size: 16px; line-height: 1.7; color: #433d34; margin: 0 0 16px; }
.legal-body ul { margin: 0 0 18px; padding: 0; list-style: none; }
.legal-body li { position: relative; font-size: 16px; line-height: 1.65; color: #433d34; padding-left: 26px; margin-bottom: 11px; }
.legal-body li::before { content: ""; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.legal-body li strong { color: var(--ink); font-weight: 700; }
.legal-body a { color: var(--green); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--green-dark); }
.legal-intro { font-size: 17px; line-height: 1.7; color: var(--ink-soft); margin: 0 0 8px; }

.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 12px; font-size: 14.5px; font-weight: 600; color: var(--green); text-decoration: none; transition: gap .18s, color .18s; }
.legal-back:hover { gap: 12px; color: var(--green-dark); }

@media (max-width: 560px) {
  .legal-hero-inner, .legal-body { padding-left: 20px; padding-right: 20px; }
}
