:root {
  --primary: #0f6b4b;
  --primary-dark: #063d2a;
  --forest: #1f5a3f;
  --gold: #caa24c;
  --gold-dark: #9d7b2d;
  --gold-soft: #f3df9d;
  --ink: #16201b;
  --text: #34433b;
  --muted: #66756d;
  --surface: #ffffff;
  --surface-soft: #f8faf9;
  --line: #e4ebe7;
  --shadow: 0 18px 42px rgba(22, 56, 39, 0.10);
  --container: 1300px;
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1em; height: 1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.site-container { width: min(var(--container), 94vw); margin-inline: auto; }
.site-container.narrow { max-width: 1000px; }
.section-space { padding: 82px 0; }
.skip-link { position: fixed; left: 16px; top: 10px; z-index: 9999; padding: 10px 14px; background: #fff; color: #000; border: 2px solid var(--primary); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(202, 162, 76, .75); outline-offset: 3px; }
.section-header { max-width: 820px; margin: 0 auto 52px; text-align: center; }
.section-header h1, .section-header h2 { margin: 14px 0 14px; font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.1; letter-spacing: -.03em; }
.section-header h1 span, .section-header h2 span { color: var(--primary); font-family: Georgia, 'Times New Roman', serif; font-style: italic; }
.section-header p { margin: 0; color: var(--muted); font-size: 1rem; }
.section-kicker { display: inline-block; color: var(--gold); font-weight: 800; letter-spacing: .16em; text-transform: uppercase; font-size: .74rem; }
.pill-badge { display: inline-block; padding: 8px 16px; border: 1px solid rgba(15,107,75,.15); border-radius: 999px; color: var(--primary); font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: #fff; }
.primary-btn, .secondary-btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 14px 30px; border-radius: 999px; text-decoration: none; border: 0; font-weight: 700; font-size: .86rem; text-transform: uppercase; letter-spacing: .04em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.primary-btn { background: var(--primary); color: #fff; box-shadow: 0 10px 20px rgba(15,107,75,.2); }
.primary-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 28px rgba(15,107,75,.26); }
.secondary-btn { background: #fff; color: var(--primary); border: 1px solid rgba(15,107,75,.2); }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; }
.reveal, .scroll-reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.22,.61,.36,1), transform .6s cubic-bezier(.22,.61,.36,1); transition-delay: var(--reveal-delay, 0ms); }
.reveal.is-visible, .scroll-reveal.is-visible { opacity: 1; transform: none; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 1000; padding-top: 6px; }
.topbar { max-height: 80px; transition: opacity .25s ease, transform .25s ease, max-height .25s ease; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 7px 14px; border-radius: 18px 18px 0 0; color: #fffdf8; background: linear-gradient(90deg, rgba(22,56,39,.99), rgba(31,90,63,.97)); border: 1px solid rgba(201,164,75,.22); border-bottom: 0; box-shadow: 0 10px 24px rgba(22,56,39,.14); font-size: .76rem; }
.topbar-item { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.topbar-item svg { width: 15px; height: 15px; flex: 0 0 auto; }
.topbar-actions { display: flex; align-items: center; gap: 18px; flex: 0 0 auto; }
.site-header.is-scrolled .topbar { opacity: 0; transform: translateY(-110%); max-height: 0; overflow: hidden; pointer-events: none; }
.nav-shell { padding-bottom: 6px; }
.nav-card { border: 1px solid rgba(201,164,75,.18); border-top: 0; border-radius: 0 0 22px 22px; background: linear-gradient(135deg, rgba(251,248,239,.97), rgba(255,255,255,.95)); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.nav-row { min-height: 68px; display: flex; align-items: center; gap: 16px; padding: 10px 16px; }
.brand-logo { width: 230px; margin-right: auto; text-decoration: none; }
.brand-logo img { width: 100%; height: auto; }
.desktop-nav { display: flex; gap: 4px; padding: 5px; border-radius: 999px; background: rgba(31,90,63,.05); border: 1px solid rgba(31,90,63,.08); }
.desktop-nav a { padding: 10px 14px; border-radius: 999px; text-decoration: none; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--forest); font-size: .73rem; }
.desktop-nav a:hover { background: #fff; color: var(--primary-dark); }
.nav-actions { display: flex; gap: 6px; }
.icon-btn, .drawer-close, .slider-control { display: inline-grid; place-items: center; border: 0; background: transparent; color: var(--forest); }
.icon-btn { width: 40px; height: 40px; border-radius: 50%; }
.icon-btn svg { width: 19px; height: 19px; }
.nav-toggle { display: none; }
.search-panel { position: fixed; top: 86px; left: 50%; z-index: 1200; width: min(660px, 92vw); padding: 22px; transform: translate(-50%, -10px) scale(.98); opacity: 0; pointer-events: none; background: linear-gradient(180deg,#fff,#faf7ee); border: 1px solid rgba(201,164,75,.25); border-radius: 18px; box-shadow: 0 24px 56px rgba(22,56,39,.18); transition: opacity .2s ease, transform .2s ease; }
.search-panel.is-open { opacity: 1; transform: translate(-50%,0) scale(1); pointer-events: auto; }
.search-panel label { display: block; margin-bottom: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; color: var(--muted); }
.search-field { display: flex; gap: 10px; }
.search-field input { flex: 1; min-width: 0; min-height: 48px; padding: 12px 15px; border: 1px solid rgba(31,90,63,.18); border-radius: 13px; }
.search-field button { min-height: 48px; padding: 11px 18px; border: 0; border-radius: 13px; background: var(--primary); color: #fff; font-weight: 700; }
.search-results { display: grid; gap: 8px; margin-top: 12px; max-height: 260px; overflow: auto; }
.search-results a { padding: 9px 11px; border-radius: 10px; background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--primary-dark); }
.search-results p { margin: 0; color: var(--muted); }
.mobile-drawer { position: fixed; inset: 0 auto 0 0; z-index: 1250; width: min(360px, 92vw); padding: 24px 20px; transform: translateX(-110%); background: linear-gradient(180deg,#fffdf7,#edf4eb); border-right: 1px solid rgba(201,164,75,.2); box-shadow: 20px 0 60px rgba(22,56,39,.22); transition: transform .28s ease; overflow-y: auto; }
.mobile-drawer.is-open { transform: translateX(0); }
.drawer-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
.drawer-header strong { display: block; color: var(--primary-dark); font-size: 1.15rem; }
.drawer-header span { display: block; color: var(--muted); font-size: .86rem; }
.drawer-close { width: 38px; height: 38px; border-radius: 50%; background: rgba(31,90,63,.1); }
.drawer-close svg { width: 18px; height: 18px; }
.mobile-nav { display: grid; gap: 10px; margin-top: 24px; }
.mobile-nav a { display: flex; justify-content: space-between; padding: 13px 14px; border-radius: 14px; background: rgba(255,255,255,.92); border: 1px solid rgba(31,90,63,.1); box-shadow: 0 10px 20px rgba(22,56,39,.07); text-decoration: none; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .76rem; }
.drawer-contact { display: grid; gap: 10px; margin-top: 18px; padding: 15px; border-radius: 12px; background: #fff; border: 1px solid rgba(31,90,63,.08); }
.drawer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.45; overflow-wrap: anywhere; }
.drawer-contact-row svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 2px; color: var(--primary); }
.drawer-contact a { color: var(--primary); text-decoration: none; font-weight: 700; }
.drawer-overlay { position: fixed; inset: 0; z-index: 1150; background: rgba(13,31,21,.38); opacity: 0; pointer-events: none; transition: opacity .25s ease; }
.drawer-overlay.is-open { opacity: 1; pointer-events: auto; }

/* Hero */
.hero-slider { position: relative; min-height: min(780px, calc(100svh - 78px)); background: radial-gradient(circle at 70% 50%, #f0fdf4 0%, #fff 100%); overflow: hidden; }
.hero-slide[hidden] { display: none; }
.hero-slide { min-height: inherit; }
.hero-slide-inner { min-height: inherit; display: flex; align-items: center; gap: 60px; padding-top: 54px; padding-bottom: 86px; }
.hero-content, .hero-visual { flex: 1; }
.hero-content { max-width: 610px; }
.hero-eyebrow { margin-bottom: 15px; color: var(--gold); letter-spacing: .25em; text-transform: uppercase; font-size: .75rem; font-weight: 800; }
.hero-content h1, .hero-heading { margin: 0 0 20px; font-size: clamp(2.4rem, 5.2vw, 4.65rem); line-height: 1.05; letter-spacing: -.045em; color: var(--primary-dark); }
.hero-content h1 span, .hero-heading span { display: block; color: var(--primary); font-family: Georgia, 'Times New Roman', serif; font-style: italic; }
.hero-content p { max-width: 540px; margin: 0 0 32px; color: #536159; font-size: clamp(1rem, 1.6vw, 1.14rem); }
.hero-visual { display: flex; justify-content: center; }
.hero-image-frame { position: relative; width: min(42vw, 500px); aspect-ratio: 1; padding: 12px; border-radius: 50%; background: #fff; border-top: 12px solid var(--primary); border-left: 12px solid var(--gold); box-shadow: 0 30px 60px rgba(0,0,0,.1); }
.hero-image-frame > img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.hero-image-frame::before { content: ''; position: absolute; inset: -25px; border: 1px solid rgba(15,107,75,.38); border-right-color: transparent; border-bottom-color: transparent; border-radius: 50%; opacity: 0; pointer-events: none; }
.hero-image-frame::after { content: ''; position: absolute; top: -29px; left: 34%; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(202,162,76,.16); opacity: 0; pointer-events: none; }
.hero-slide.is-active .hero-image-frame { animation: hero-circle-enter .78s cubic-bezier(.22,.61,.36,1) both; }
.hero-slide.is-active .hero-image-frame > img { animation: hero-image-enter .82s cubic-bezier(.22,.61,.36,1) both; }
.hero-slide.is-active .hero-image-frame::before { animation: hero-orbit-enter 1.05s cubic-bezier(.22,.61,.36,1) both; }
.hero-slide.is-active .hero-image-frame::after { animation: hero-marker-enter .42s .42s ease-out both; }
.hero-info-badge { position: absolute; right: -20px; bottom: 38px; display: flex; align-items: center; gap: 10px; padding: 12px 22px; border-radius: 999px; background: #1e3a8a; color: #fff; border: 4px solid #fff; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; font-size: .69rem; white-space: nowrap; }
.hero-info-badge span { width: 11px; height: 11px; border-radius: 50%; background: var(--gold); }
.hero-slide.is-active .hero-info-badge { animation: hero-badge-enter .55s .34s cubic-bezier(.22,.61,.36,1) both; }
.hero-dots { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
.hero-dot { width: 12px; height: 12px; border: 0; border-radius: 999px; padding: 0; background: #cbd5e1; transition: width .25s ease, background .25s ease; }
.hero-dot.is-active { width: 40px; background: var(--primary); }
@keyframes hero-circle-enter { from { opacity: 0; transform: scale(.82) rotate(-18deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
@keyframes hero-image-enter { from { transform: scale(1.12); filter: saturate(.78) brightness(1.08); } to { transform: scale(1); filter: none; } }
@keyframes hero-orbit-enter { 0% { opacity: 0; transform: scale(.86) rotate(-130deg); } 42% { opacity: .9; } 100% { opacity: .55; transform: scale(1) rotate(110deg); } }
@keyframes hero-marker-enter { from { opacity: 0; transform: scale(.25); } to { opacity: 1; transform: scale(1); } }
@keyframes hero-badge-enter { from { opacity: 0; filter: blur(3px); } to { opacity: 1; filter: blur(0); } }

/* About */
.premium-about { position: relative; overflow: hidden; background: #fff; }
.about-shape { position: absolute; right: 0; top: 0; width: 40%; height: 100%; background: #f4f9f7; clip-path: polygon(25% 0,100% 0,100% 100%,0 100%); }
.about-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 62px; align-items: center; }
.about-visual { position: relative; padding-bottom: 40px; }
.about-main-pic { position: relative; width: 85%; height: 450px; border-radius: 30px; overflow: hidden; box-shadow: 0 25px 50px rgba(0,0,0,.1); }
.about-main-pic img { width: 100%; height: 100%; object-fit: cover; }
.about-secondary-pic { position: absolute; right: 0; bottom: 0; width: 220px; height: 220px; border: 8px solid #fff; border-radius: 25px; overflow: hidden; background: #fff; box-shadow: 0 15px 30px rgba(0,0,0,.1); }
.about-secondary-pic img { width: 100%; height: 100%; object-fit: contain; }
.about-content h2 { margin: 14px 0; font-size: clamp(2rem, 3.6vw, 2.65rem); line-height: 1.17; color: var(--primary-dark); }
.about-content h2 span { color: var(--primary); font-family: Georgia, 'Times New Roman', serif; font-style: italic; }
.about-content > p { margin: 0 0 28px; color: #58645e; }
.about-feature-list { display: grid; gap: 12px; max-width: 500px; }
.about-feature { display: flex; gap: 15px; align-items: center; padding: 13px 18px; border-radius: 15px; border: 1px solid #eee; background: #fff; transition: transform .25s ease, border-color .25s ease; }
.about-feature:hover { transform: translateX(6px); border-color: var(--primary); }
.about-feature.dark { background: var(--primary-dark); border-color: var(--primary-dark); }
.feature-icon { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; background: #f1f8f5; color: var(--primary); }
.feature-icon svg { width: 21px; height: 21px; }
.about-feature.dark .feature-icon { background: rgba(255,255,255,.1); color: var(--gold); }
.about-feature h3 { margin: 0 0 3px; font-size: 1rem; }
.about-feature p { margin: 0; color: #777; font-size: .84rem; line-height: 1.4; }
.about-feature.dark h3 { color: #fff; }
.about-feature.dark p { color: #c1cbc5; }

/* Products */
.product-section { background: linear-gradient(135deg,#bf953f 0%,#fcf6ba 45%,#b38728 100%); }
.product-section .section-header h2 { color: #064e3b; text-transform: uppercase; font-family: Georgia, 'Times New Roman', serif; }
.product-section .section-header h2 span { color: #064e3b; }
.product-section .section-header p { color: #4f5b50; }
.product-toolbar { display: flex; justify-content: flex-end; gap: 8px; margin-bottom: 14px; }
.slider-control { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.72); border: 1px solid rgba(0,100,0,.14); color: #064e3b; }
.slider-control svg { width: 20px; height: 20px; }
.product-rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(245px, 1fr); gap: 20px; overflow-x: auto; padding: 34px 22px 40px; scroll-snap-type: x mandatory; background: rgba(255,255,255,.28); border-radius: 40px; scrollbar-width: thin; }
.product-rail.is-grid { grid-auto-flow: row; grid-template-columns: repeat(4,minmax(0,1fr)); grid-auto-columns: unset; overflow: visible; }
.product-card { min-width: 0; max-width: 290px; width: 100%; justify-self: center; scroll-snap-align: start; border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid rgba(0,100,0,.1); box-shadow: 0 8px 20px rgba(0,0,0,.1); }
.product-rail.is-grid .product-card { max-width: none; }
.product-image-box { height: 195px; padding: 10px; background: #fff; }
.product-image-box img { width: 100%; height: 100%; object-fit: contain; }
.product-card-content { padding: 15px; }
.product-card h3 { margin: 0 0 12px; color: var(--primary-dark); font-size: .98rem; line-height: 1.25; letter-spacing: -.01em; text-align: center; }
.composition { padding: 9px; border-radius: 12px; background: #f8f9fa; }
.composition p { margin: 0; max-height: 42px; overflow: hidden; color: #555; font-size: .76rem; line-height: 1.45; }
.composition.is-expanded p { max-height: 900px; }
.read-more { margin-top: 6px; border: 0; padding: 0; background: none; color: #006400; font-size: .68rem; font-weight: 800; text-transform: uppercase; }
.product-view-all { margin-top: 28px; text-align: center; }
.product-view-all .primary-btn { background: #006400; }

/* Dosage */
.dosage-section { background: #fff; }
.dosage-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.dosage-card { display: flex; align-items: center; gap: 14px; padding: 22px 20px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: 0 8px 20px rgba(16,24,20,.04); }
.dosage-icon { width: 54px; height: 54px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 14px; color: #fff; }
.dosage-icon.gold { background: linear-gradient(135deg,var(--gold),#dfba68); }
.dosage-icon.green { background: linear-gradient(135deg,var(--primary),var(--primary-dark)); }
.dosage-icon svg { width: 23px; height: 23px; }
.dosage-icon .icon-fill { fill: currentColor; stroke: none; }
.dosage-card h3 { margin: 0 0 3px; font-size: 1.02rem; }
.dosage-card p { margin: 0; color: var(--muted); font-size: .82rem; }

/* Segments */
.segments-section { background: radial-gradient(circle at 12% 16%,rgba(15,107,75,.07),transparent 30%), radial-gradient(circle at 88% 82%,rgba(202,162,76,.09),transparent 30%), linear-gradient(180deg,#fff,#fbfdfb 52%,#fff); }
.title-underline { width: 108px; height: 5px; margin: 0 auto; border-radius: 999px; background: linear-gradient(90deg,var(--primary),var(--gold)); }
.segments-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; }
.segment-card { --accent: var(--primary); position: relative; overflow: hidden; padding: 24px 15px 18px; text-align: center; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: 0 14px 30px rgba(16,24,20,.05); transition: transform .28s ease, box-shadow .28s ease; }
.segment-card.accent-gold { --accent: var(--gold); }
.segment-card:hover { transform: translateY(-6px); box-shadow: 0 24px 42px rgba(16,24,20,.10); }
.segment-image-wrap { position: relative; width: 90px; height: 90px; margin: 0 auto 16px; }
.segment-image-wrap img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; border: 4px solid #fff; box-shadow: 0 10px 24px rgba(16,24,20,.1); }
.orbit { position: absolute; inset: -7px; border-radius: 50%; border: 1.5px dashed color-mix(in srgb, var(--accent) 55%, transparent); transition: transform .6s ease; }
.segment-card:hover .orbit { transform: rotate(160deg); }
.segment-card h3 { margin: 0 0 6px; font-size: 1.05rem; }
.segment-card p { margin: 0; color: var(--muted); font-size: .82rem; }

/* Partnership */
.partnership-section { background: linear-gradient(180deg,#fff,#f0f7f4); }
.line-kicker { padding-bottom: 8px; border-bottom: 3px solid var(--primary); }
.strength-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 24px; }
.strength-card { position: relative; overflow: hidden; display: flex; flex-direction: column; border-radius: 30px; background: #fff; border: 1px solid rgba(15,107,75,.08); box-shadow: 0 15px 35px rgba(0,0,0,.04); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.strength-card:hover { transform: translateY(-10px); box-shadow: 0 28px 52px rgba(15,107,75,.13); border-color: var(--gold); }
.strength-image { height: 180px; overflow: hidden; }
.strength-image img { width: 100%; height: 100%; object-fit: cover; }
.strength-content { padding: 28px 28px 36px; }
.strength-content h3 { margin: 0 0 12px; font-size: 1.16rem; }
.strength-content p { margin: 0; color: #666; font-size: .9rem; }
.strength-number { position: absolute; right: 22px; bottom: 10px; font-size: 3.3rem; font-weight: 900; color: rgba(0,0,0,.04); }

/* Contact */
.contact-section { background: #f8faf9; }
.contact-card { display: flex; padding: 0; overflow: hidden; border-radius: 40px; background: #fff; box-shadow: 0 30px 60px rgba(0,0,0,.08); border: 1px solid rgba(0,0,0,.02); }
.contact-info-panel { flex: 1; min-width: 0; padding: 60px; color: #fff; background: linear-gradient(135deg,var(--primary-dark),var(--primary)); }
.contact-info-panel .section-kicker { color: var(--gold); }
.contact-info-panel h2 { margin: 14px 0; font-size: clamp(2rem,3.4vw,2.55rem); line-height: 1.18; }
.contact-info-panel h2 span { color: var(--gold); }
.contact-info-panel > p { opacity: .88; margin: 0 0 34px; }
.contact-items { display: grid; gap: 24px; }
.contact-item { display: flex; align-items: flex-start; gap: 18px; text-decoration: none; }
.contact-icon { width: 50px; height: 50px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.12); color: var(--gold); border: 1px solid rgba(255,255,255,.1); }
.contact-icon svg { width: 21px; height: 21px; }
.contact-item span { display: block; margin-bottom: 3px; opacity: .7; text-transform: uppercase; letter-spacing: .08em; font-size: .7rem; }
.contact-item strong { display: block; line-height: 1.45; font-size: 1rem; }
.contact-item strong, .footer-contact-row span { overflow-wrap: anywhere; }
.contact-form-panel { flex: 1.15; min-width: 0; padding: 58px; }
.form-shell h2, .career-form-card h2 { margin: 0 0 26px; font-size: 1.9rem; }
.form-shell h2 span, .career-form-card h2 span { color: var(--primary); }
.site-form { display: grid; gap: 16px; }
.site-form label { display: grid; gap: 7px; color: var(--primary-dark); font-size: .83rem; font-weight: 700; }
.site-form input, .site-form textarea { width: 100%; border: 1px solid #dce6e0; border-radius: 12px; padding: 12px 13px; background: #fff; color: var(--ink); }
.site-form textarea { resize: vertical; }
.site-form .human-check { grid-template-columns: 1fr auto; align-items: end; gap: 8px 12px; padding: 14px; border: 1px solid #dce6e0; border-radius: 12px; background: #f8fbf9; }
.human-check span { grid-column: 1; color: var(--primary); font-weight: 800; }
.human-check input { grid-column: 2; grid-row: 1 / span 2; width: 78px; text-align: center; }
.form-help { margin: -6px 0 0; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: repeat(2,minmax(0,1fr)); }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-status { margin-bottom: 16px; padding: 12px 14px; border-radius: 12px; font-size: .9rem; }
.form-status.success { background: #e9f8ee; color: #165b31; border: 1px solid #bce5c9; }
.form-status.error { background: #fff1f1; color: #8d2020; border: 1px solid #f0c0c0; }
.career-promo { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 30px; padding: 22px; border-radius: 18px; background: #f1f8f5; border: 1.5px dashed var(--primary); }
.career-promo strong, .career-promo span { display: block; }
.career-promo span { color: #667; font-size: .82rem; }
.career-promo a { flex: 0 0 auto; padding: 10px 16px; border-radius: 10px; background: var(--primary); color: #fff; text-decoration: none; font-weight: 700; font-size: .78rem; }

/* Careers */
.inner-page { background: #fff; }
.career-intro { padding-top: 70px; }
.career-overview-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: start; }
.career-overview-grid h2 { color: var(--forest); font-size: 1.7rem; }
.career-list { list-style: none; padding: 0; margin: 0; }
.career-list li { margin-bottom: 20px; padding-left: 20px; border-left: 3px solid var(--gold); }
.career-list strong, .career-list span { display: block; }
.career-list strong { font-size: 1.08rem; }
.career-list span { color: #666; font-size: .9rem; }
.career-domains { display: grid; gap: 15px; }
.career-domains article { display: flex; gap: 15px; padding: 20px; border-radius: 8px; background: #f8faf8; }
.career-domains article > span { color: var(--gold); font-weight: 800; font-size: 1.25rem; opacity: .7; }
.career-domains h3 { margin: 0 0 5px; color: var(--forest); font-size: 1rem; }
.career-domains p { margin: 0; color: #777; font-size: .85rem; }
.hiring-section { background: #f8faf9; }
.hiring-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 50px; align-items: start; }
.hiring-content h2 { margin: 12px 0 20px; color: var(--primary-dark); font-size: clamp(2rem,3.5vw,2.7rem); line-height: 1.15; }
.hiring-content h2 span { color: var(--gold); }
.hiring-content .lead { color: #444; font-size: 1.08rem; }
.hiring-benefits { display: grid; gap: 20px; margin-top: 30px; }
.hiring-benefits article { display: flex; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid #e8eeea; }
.check-icon { width: 30px; height: 30px; display: grid; place-items: center; flex: 0 0 auto; background: var(--primary); color: #fff; }
.check-icon svg { width: 16px; height: 16px; }
.hiring-benefits h3 { margin: 0 0 5px; font-size: 1.1rem; color: var(--primary-dark); }
.hiring-benefits p { margin: 0; color: #666; font-size: .9rem; }
.career-note { margin-top: 34px; padding: 14px 18px; background: rgba(31,90,63,.05); border-left: 4px solid var(--gold); }
.career-form-card { padding: 44px; background: #fff; border: 1px solid #eee; box-shadow: 0 20px 50px rgba(0,0,0,.06); }
.career-form-card > p { color: #777; font-size: .9rem; }

/* Legal */
.legal-page { background: #fbfcfb; }
.legal-wrap { max-width: 1000px; padding-top: 60px; padding-bottom: 60px; }
.legal-header { text-align: center; margin-bottom: 46px; }
.legal-header h1 { margin: 0 0 8px; color: var(--primary); font-size: clamp(2rem,4vw,2.45rem); }
.legal-header p { margin: 3px 0; color: #666; }
.legal-section { margin-bottom: 24px; padding: 32px; border-radius: 10px; background: #fff; border-left: 4px solid var(--gold); box-shadow: 0 5px 18px rgba(0,0,0,.055); }
.legal-section h2 { margin: 0 0 12px; color: var(--primary); font-size: 1.35rem; }
.legal-section p { margin: 0 0 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section li { margin-bottom: 6px; }
.legal-contact { padding: 18px; border-radius: 8px; background: #f6f9f6; border: 1px solid #e6ece6; }
.legal-note { border-left-color: var(--primary); background: #f4faf6; }

/* 404 */
.not-found-page { min-height: 62vh; display: grid; place-items: center; padding: 70px 0; background: #f8faf9; }
.not-found-card { max-width: 680px; text-align: center; padding: 50px; border-radius: 28px; background: #fff; box-shadow: var(--shadow); }
.error-code { display: block; color: var(--gold); font-size: 4rem; line-height: 1; font-weight: 900; }
.not-found-card h1 { margin: 14px 0 8px; }
.not-found-card p { color: var(--muted); }
.not-found-card .button-row { justify-content: center; margin-top: 24px; }

/* Footer */
.site-footer { position: relative; overflow: hidden; padding: 78px 0 30px; background: radial-gradient(circle at top left,rgba(201,164,75,.18),transparent 24%), radial-gradient(circle at bottom right,rgba(243,223,157,.25),transparent 28%), linear-gradient(180deg,#fffdf7 0%,#fff7df 55%,#fffdf8 100%); border-top: 1px solid rgba(201,164,75,.2); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 38px; padding: 32px; border-radius: 24px; background: rgba(255,255,255,.58); border: 1px solid rgba(201,164,75,.16); box-shadow: 0 18px 45px rgba(155,128,41,.08); }
.footer-brand img { max-width: 280px; height: auto; margin-bottom: 22px; }
.footer-brand p { margin: 0; color: #627065; font-size: 1rem; }
.footer-heading { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; color: var(--primary-dark); text-transform: uppercase; letter-spacing: .08em; font-size: 1.05rem; }
.footer-heading::before { content: ''; width: 7px; height: 22px; border-radius: 10px; background: linear-gradient(180deg,var(--gold),#efd27b); }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; }
.footer-list a { color: #627065; text-decoration: none; }
.footer-list a:hover { color: var(--primary); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; padding: 14px; border-radius: 12px; background: linear-gradient(180deg,rgba(255,255,255,.88),rgba(255,247,223,.94)); border: 1px solid rgba(201,164,75,.14); color: var(--ink); text-decoration: none; }
.footer-contact-row svg { width: 38px; height: 38px; padding: 10px; border-radius: 10px; background: linear-gradient(135deg,var(--gold),#e3c66c); color: var(--primary-dark); flex: 0 0 auto; }
.footer-contact-row span { font-size: .86rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(201,164,75,.18); color: #627065; font-size: .82rem; }
.designer-tag { padding: 10px 16px; border-radius: 999px; background: linear-gradient(180deg,rgba(255,255,255,.9),rgba(255,245,207,.95)); border: 1px solid rgba(201,164,75,.16); color: var(--ink); text-decoration: none; }
.designer-tag strong { color: var(--primary); }

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