:root {
  --ink: #13231a;
  --ink-soft: #294033;
  --brand-green: #23392b;
  --lime: #9bd63c;
  --orange: #ef6b22;
  --cream: #f3f1e9;
  --white: #fff;
  --muted: #637068;
  --line: rgba(19, 35, 26, .14);
  --display: "Bahnschrift Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(76px, 10vw, 140px) 0; }
.skip-link { position: fixed; z-index: 1000; top: 8px; left: 8px; padding: 10px 14px; background: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; color: var(--white); transition: background .25s, box-shadow .25s; }
.site-header.scrolled { background: rgba(19, 35, 26, .96); box-shadow: 0 8px 28px rgba(0,0,0,.15); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 90px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand img { height: 65px; width: auto; object-fit: contain; }
.brand span { display: grid; gap: 5px; }
.brand strong { font: 800 1.8rem/1 var(--display); letter-spacing: .08em; }
.brand small { font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 30px; font-size: .91rem; font-weight: 600; }
nav a:not(.nav-cta) { border-bottom: 1px solid transparent; }
nav a:not(.nav-cta):hover { border-color: currentColor; }
.nav-cta { padding: 12px 18px; border: 1px solid rgba(255,255,255,.5); border-radius: 2px; }
.nav-cta:hover { background: var(--white); color: var(--ink); }
.menu-button { display: none; border: 0; background: transparent; color: white; padding: 8px; }
.menu-button span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px; background: currentColor; }

.hero-band { background: var(--brand-green); }
.hero { width: min(1180px, calc(100% - 40px)); min-height: 760px; height: clamp(760px, 86svh, 900px); margin-inline: auto; position: relative; overflow: hidden; display: flex; align-items: center; color: var(--white); background: var(--ink); }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,24,15,.9) 0%, rgba(10,24,15,.64) 42%, rgba(10,24,15,.05) 78%), linear-gradient(0deg, rgba(10,24,15,.62), transparent 40%); }
.hero-content { position: relative; z-index: 2; padding: 100px 0 150px; }
.eyebrow { margin: 0 0 18px; display: flex; align-items: center; gap: 10px; font-size: .74rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow span { width: 32px; height: 3px; background: var(--lime); }
.eyebrow.dark { color: #4e5e55; }
.eyebrow.light { color: rgba(255,255,255,.65); }
h1, h2, h3 { margin-top: 0; }
h1 { max-width: 850px; margin-bottom: 24px; font: 800 clamp(4.4rem, 8.5vw, 8rem)/1.02 var(--display); letter-spacing: -.025em; text-transform: uppercase; }
h1 em { color: var(--lime); font-style: normal; }
.hero-copy { max-width: 660px; margin: 0 0 34px; font-size: clamp(1.05rem, 2vw, 1.3rem); color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 52px; padding: 14px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; border: 1px solid transparent; font-size: .92rem; font-weight: 700; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: #fff; }
.button-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.button-ghost:hover { background: #fff; color: var(--ink); }
.hero-facts { position: absolute; z-index: 3; inset: auto 0 0; display: grid; grid-template-columns: repeat(3, 1fr); background: rgba(19,35,26,.91); border-top: 1px solid rgba(255,255,255,.17); padding-left: max(20px, calc((100% - 1180px)/2)); padding-right: max(20px, calc((100% - 1180px)/2)); }
.hero-facts div { min-height: 112px; padding: 26px 34px; display: grid; align-content: center; border-right: 1px solid rgba(255,255,255,.13); }
.hero-facts div:first-child { border-left: 1px solid rgba(255,255,255,.13); }
.hero-facts strong { font-family: var(--display); font-size: 1.25rem; letter-spacing: .03em; text-transform: uppercase; }
.hero-facts span { color: rgba(255,255,255,.57); font-size: .83rem; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 110px); align-items: center; }
.intro { padding-bottom: 0; }
h2 { font: 800 clamp(3rem, 6vw, 5.7rem)/.91 var(--display); letter-spacing: -.025em; text-transform: uppercase; }
.intro-copy { padding: 0; color: var(--muted); }
.intro-copy .lead { margin-top: 0; color: var(--ink); font-size: 1.27rem; font-weight: 600; line-height: 1.5; }
.feature-band { margin-top: clamp(54px, 8vw, 100px); background: var(--brand-green); }
.feature-stage { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--ink); color: white; }
.feature-visual { position: absolute; inset: 0; overflow: hidden; min-width: 0; background: #78934d; }
.feature-visual img { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.feature-list { position: relative; z-index: 1; width: min(430px, 42%); height: 100%; padding: clamp(30px, 4vw, 58px); display: grid; align-content: center; background: rgba(19, 35, 26, .96); }
.feature-list article { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.feature-list article:last-child { border: 0; }
.feature-list article > span { color: var(--lime); font: 700 .9rem var(--display); }
.feature-list h3 { margin-bottom: 3px; font: 700 1.5rem var(--display); letter-spacing: .03em; text-transform: uppercase; }
.feature-list p { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; }

.gallery-section { background: #e9e6dc; }
.section-topline { display: grid; grid-template-columns: 1fr .55fr; gap: 60px; align-items: end; margin-bottom: 54px; }
.section-topline h2 { margin-bottom: 0; }
.section-topline > p { max-width: 440px; margin: 0 0 10px; color: var(--muted); }
.gallery { display: grid; grid-template-columns: 1.2fr .8fr; grid-template-rows: repeat(2, minmax(260px, 390px)); gap: 14px; }
.gallery figure { position: relative; overflow: hidden; margin: 0; background: var(--ink); }
.gallery-large { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery figure:hover img { transform: scale(1.025); }
.gallery figcaption { position: absolute; inset: auto 0 0; padding: 42px 26px 22px; color: white; background: linear-gradient(transparent, rgba(0,0,0,.8)); display: grid; }
.gallery figcaption span { color: var(--lime); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.gallery figcaption strong { font: 700 1.35rem var(--display); text-transform: uppercase; }

.process { background: var(--brand-green); color: white; }
.centered { max-width: 780px; margin: 0 auto 70px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(255,255,255,.15); }
.steps article { min-height: 300px; padding: 34px; border-right: 1px solid rgba(255,255,255,.15); }
.steps article:last-child { border: 0; }
.step-no { display: block; color: var(--lime); margin-bottom: 72px; font: 700 1rem var(--display); }
.steps h3 { font: 700 1.55rem var(--display); letter-spacing: .02em; text-transform: uppercase; }
.steps p { color: rgba(255,255,255,.6); font-size: .92rem; }

.other-card { position: relative; overflow: hidden; min-height: 390px; padding: clamp(36px, 6vw, 78px); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: clamp(56px, 9vw, 120px); background: var(--lime); }
.other-card > div { max-width: 680px; position: relative; z-index: 2; }
.other-card h2 { margin-bottom: 16px; }
.other-card p:last-child { max-width: 660px; margin: 0; }
.other-card img { position: static; width: auto; height: clamp(190px, 20vw, 250px); max-width: none; object-fit: contain; object-position: center; align-self: center; }

.contact { background: var(--brand-green); color: white; }
.contact-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 10vw, 130px); align-items: center; }
.contact-grid > div:first-child > p:last-child { max-width: 600px; color: rgba(255,255,255,.65); font-size: 1.05rem; }
.contact-card { background: var(--cream); color: var(--ink); padding: clamp(28px, 4vw, 46px); }
.contact-card > p { margin-top: 0; font: 700 1.35rem var(--display); text-transform: uppercase; }
.contact-card > a, .contact-card > div { display: grid; gap: 2px; padding: 18px 0; border-top: 1px solid var(--line); }
.contact-card a:hover strong { color: var(--orange); }
.contact-card span { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-card strong { overflow-wrap: anywhere; }
.contact-card small { display: block; margin-top: 20px; color: var(--muted); }

footer { background: #0d1711; color: white; }
.footer-main { min-height: 160px; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.footer-brand img { height: 58px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 28px; font-size: .88rem; color: rgba(255,255,255,.65); }
.footer-links a:hover, .footer-legal a:hover { color: white; }
.footer-legal { min-height: 62px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-size: .78rem; }
.footer-legal div { display: flex; gap: 24px; }

.legal-page { background: #e9e6dc; }
.legal-header { position: static; background: var(--ink); color: white; }
.legal-main { padding: 80px 0 120px; }
.legal-copy { max-width: 820px; }
.legal-copy h1 { color: var(--ink); font-size: clamp(3.4rem, 7vw, 6rem); }
.legal-copy h2 { margin-top: 50px; margin-bottom: 12px; font-size: 2rem; text-transform: none; letter-spacing: 0; }
.legal-copy h3 { margin-top: 30px; margin-bottom: 8px; }
.legal-copy p, .legal-copy li { color: #3e4d44; }
.placeholder { padding: 18px 20px; background: #fff3c7; border-left: 4px solid var(--orange); color: #644515 !important; }
.back-link { display: inline-flex; margin-bottom: 36px; font-weight: 700; }

@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 680px); }
  .site-header { background: rgba(19,35,26,.94); }
  .nav-wrap { min-height: 76px; }
  .brand img { height: 55px; }
  .menu-button { display: block; }
  nav { position: absolute; top: 76px; left: 0; right: 0; display: none; padding: 22px 20px 28px; background: var(--ink); align-items: stretch; flex-direction: column; gap: 10px; }
  nav.open { display: flex; }
  nav a { padding: 10px; }
  .hero { width: 100%; min-height: 680px; height: auto; padding-bottom: 110px; }
  .hero-photo { object-position: 55% 40%; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,24,15,.91), rgba(10,24,15,.45)), linear-gradient(0deg, rgba(10,24,15,.7), transparent); }
  .hero-content { padding: 125px 0 105px; }
  h1 { font-size: clamp(3.8rem, 16vw, 6rem); }
  .hero-facts { grid-template-columns: 1fr; padding: 0 20px; }
  .hero-facts div { display: none; }
  .hero-facts div:first-child { display: grid; min-height: 90px; border-left: 0; }
  .intro-grid, .section-topline, .contact-grid { grid-template-columns: 1fr; }
  .feature-stage { display: grid; aspect-ratio: auto; overflow: visible; }
  .feature-visual { position: relative; inset: auto; aspect-ratio: 16 / 9; }
  .feature-visual img { inset: 0; width: 100%; height: 100%; object-fit: contain; }
  .feature-list { width: 100%; height: auto; background: var(--ink); }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 460px 280px; }
  .gallery-large { grid-column: 1 / 3; grid-row: auto; }
  .steps { grid-template-columns: 1fr; }
  .steps article { min-height: auto; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .step-no { margin-bottom: 38px; }
  .other-card { min-height: 0; grid-template-columns: minmax(0, 1fr) clamp(132px, 21vw, 150px); gap: clamp(28px, 6vw, 52px); }
  .other-card img { width: 100%; height: auto; max-width: 150px; justify-self: end; }
}

@media (max-width: 520px) {
  .brand strong { font-size: 1.28rem; letter-spacing: .04em; }
  .brand small { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .hero { min-height: 620px; padding-bottom: 80px; }
  .hero-content { padding: 96px 0 64px; }
  .hero-photo { object-position: 57% 38%; }
  .gallery { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 390px); }
  .gallery-large { grid-column: auto; }
  .footer-main { padding: 40px 0; align-items: flex-start; flex-direction: column; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; }
  .other-card { grid-template-columns: 1fr; gap: 18px; }
  .other-card img { width: auto; height: 205px; max-width: 72%; justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
