:root {
  --ink: #242727;
  --graphite: #4d4d4d;
  --muted: #6c7370;
  --green: #0f3d36;
  --green-2: #245a51;
  --green-soft: #e8eee9;
  --rose: #e6aaaa;
  --rose-soft: #f7e9e7;
  --brown: #662112;
  --sand: #f6f3ee;
  --paper: #fffdf9;
  --line: #d8ded9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 61, 54, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .25;
  background-image:
    linear-gradient(rgba(15,61,54,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,61,54,.028) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  z-index: -1;
}

a { color: inherit; }
img, svg { max-width: 100%; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 9999;
  background: var(--paper);
  padding: 10px 14px;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 243, 238, .88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15,61,54,.08);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 112px; height: auto; display: block; }
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
}
.nav a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 650;
  color: #343838;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.nav a:hover::after,
.nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.lang-switch a { text-decoration: none; color: var(--muted); }
.lang-switch .active { color: var(--brown); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green);
  margin: 4px auto;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section { padding: 102px 0; }
.section-tight { padding: 76px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: .78rem;
  line-height: 1.2;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 850;
}
.kicker-rose { color: var(--brown); }
.display {
  margin: 0;
  font-size: clamp(3.25rem, 7vw, 6.75rem);
  line-height: .96;
  letter-spacing: -.055em;
  font-weight: 820;
  max-width: 850px;
}
.display em { font-style: normal; color: var(--green); }
.h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 800;
}
.h3 { margin: 0; font-size: 1.35rem; line-height: 1.25; }
.lede {
  margin: 24px 0 0;
  font-size: clamp(1.08rem, 1.6vw, 1.35rem);
  color: #49504e;
  max-width: 770px;
}
.muted { color: var(--muted); }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 760;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green); color: white; box-shadow: 0 14px 34px rgba(15,61,54,.18); }
.btn-primary:hover { background: #123f38; }
.btn-secondary { border-color: #aebbb5; background: rgba(255,255,255,.45); color: var(--green); }
.btn-soft { background: var(--rose-soft); color: var(--brown); }

.hero { padding: 78px 0 72px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  gap: 54px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-note {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4d5551;
  font-size: .88rem;
  font-weight: 650;
}
.hero-note span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(230,170,170,.22);
}
.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}
.hero-visual img {
  width: min(680px, 120%);
  max-width: none;
  animation: float 7s ease-in-out infinite;
}
.hero-visual::after {
  content: "";
  position: absolute;
  width: 64%;
  height: 18%;
  bottom: 5%;
  border-radius: 50%;
  background: rgba(15,61,54,.10);
  filter: blur(36px);
  z-index: -1;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.statement {
  background: var(--green);
  color: white;
  overflow: hidden;
  position: relative;
}
.statement::before,
.statement::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}
.statement::before { width: 520px; height: 520px; right: -180px; top: -240px; }
.statement::after { width: 310px; height: 310px; right: 40px; top: -120px; }
.statement .eyebrow { color: #f0c5c2; }
.statement .h2 { max-width: 940px; }
.statement .h2 span { color: #f0c5c2; }
.layer-strip {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  overflow: hidden;
}
.layer-strip span {
  background: rgba(255,255,255,.05);
  padding: 18px 20px;
  font-weight: 700;
  font-size: .95rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr);
  gap: 70px;
  align-items: start;
}
.split.reverse { grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); }
.split-media img { width: 100%; display: block; }
.section-intro { max-width: 660px; }

.capability-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.capability {
  padding: 28px;
  border-top: 1px solid #aab7b1;
  position: relative;
}
.capability::before {
  content: "";
  position: absolute;
  left: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}
.capability h3 { margin: 0 0 10px; font-size: 1.12rem; }
.capability p { margin: 0; color: var(--muted); }

.scale-track {
  margin-top: 52px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.scale-track::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--green));
  opacity: .6;
}
.scale-item { position: relative; padding-top: 54px; }
.scale-dot {
  position: absolute;
  top: 7px;
  left: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--paper);
  border: 7px solid var(--green);
  z-index: 2;
}
.scale-item:nth-child(1) .scale-dot { border-color: var(--rose); }
.scale-item:nth-child(2) .scale-dot { border-color: #b77b70; }
.scale-item:nth-child(3) .scale-dot { border-color: var(--green-2); }
.scale-item h3 { margin: 0 0 8px; font-size: 1.06rem; }
.scale-item p { margin: 0; color: var(--muted); font-size: .93rem; }

.output-section { background: #ebe6df; }
.output-flow {
  margin-top: 50px;
  display: grid;
  grid-template-columns: .8fr auto 1fr auto 1.2fr;
  gap: 18px;
  align-items: center;
}
.output-group {
  background: rgba(255,253,249,.78);
  border: 1px solid rgba(15,61,54,.12);
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 270px;
}
.output-group strong { display:block; margin-bottom: 16px; color: var(--green); }
.output-group ul { margin: 0; padding: 0; list-style: none; }
.output-group li { padding: 8px 0; border-bottom: 1px solid rgba(15,61,54,.08); }
.output-group li:last-child { border-bottom: 0; }
.flow-arrow { font-size: 2rem; color: var(--green); opacity: .58; }
.output-emphasis { background: var(--green); color: white; }
.output-emphasis strong { color: #f0c5c2; }
.output-emphasis li { border-bottom-color: rgba(255,255,255,.12); }

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--line);
}
.process article { padding: 28px 26px 0 0; position: relative; }
.process article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 38px;
  width: 36px;
  height: 1px;
  background: var(--rose);
}
.process .num { font-size: .8rem; font-weight: 900; color: var(--brown); letter-spacing: .12em; }
.process h3 { margin: 15px 0 9px; }
.process p { margin: 0; color: var(--muted); }

.about-panel {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 48px;
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 46px;
  box-shadow: var(--shadow);
}
.about-mark {
  background: var(--rose-soft);
  border-radius: 28px;
  min-height: 320px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.about-mark::before,
.about-mark::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(102,33,18,.18);
}
.about-mark::after { width: 120px; height: 120px; }
.about-mark img { width: 170px; position: relative; z-index: 2; }

.contact-band {
  background: var(--brown);
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(230,170,170,.16) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 22%, rgba(230,170,170,.18) 0 6px, transparent 7px),
    radial-gradient(circle at 88% 70%, rgba(255,255,255,.12) 0 4px, transparent 5px);
}
.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 60px;
  align-items: start;
}
.contact-band .eyebrow { color: #f5cbc7; }
.contact-band .lede { color: rgba(255,255,255,.76); }

.form-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 28px;
  padding: 30px;
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 760; font-size: .9rem; margin-bottom: 7px; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #cfd7d3;
  background: #fff;
  border-radius: 13px;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(15,61,54,.08); }
.form-note { font-size: .78rem; color: var(--muted); margin: 12px 0 0; }
.form-status { min-height: 1.5em; font-size: .85rem; margin-top: 12px; color: var(--green); }

.page-hero { padding: 88px 0 70px; }
.page-hero .display { max-width: 1000px; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr .72fr;
  gap: 62px;
  align-items: end;
}
.page-aside {
  border-left: 1px solid #aab7b1;
  padding-left: 28px;
  color: var(--muted);
}
.page-aside strong { color: var(--green); display:block; margin-bottom: 8px; }
.rich-copy { max-width: 790px; }
.rich-copy h2 { font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.12; letter-spacing: -.03em; margin: 54px 0 16px; }
.rich-copy h3 { margin: 34px 0 10px; }
.rich-copy p { font-size: 1.05rem; color: #4b5350; }
.rich-copy ul { padding-left: 20px; color: #4b5350; }

.site-footer { padding: 44px 0; background: #202c29; color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}
.footer-brand img { width: 108px; }
.footer-brand p { max-width: 540px; color: rgba(255,255,255,.62); margin: 14px 0 0; font-size: .9rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }
.footer-links a { color: rgba(255,255,255,.8); text-decoration: none; font-size: .88rem; }
.footer-bottom { margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.52); font-size: .78rem; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .nav { position: fixed; inset: 73px 16px auto 16px; display: none; flex-direction: column; align-items: stretch; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); }
  .nav.is-open { display: flex; }
  .nav a { padding: 8px 4px; }
  .menu-toggle { display: inline-flex; }
  .hero-grid, .split, .split.reverse, .contact-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-visual { min-height: auto; margin-top: -20px; }
  .hero-visual img { width: min(690px, 100%); }
  .layer-strip { grid-template-columns: repeat(2,1fr); }
  .scale-track { grid-template-columns: repeat(2,1fr); }
  .scale-track::before { display:none; }
  .output-flow { grid-template-columns: 1fr; }
  .flow-arrow { transform: rotate(90deg); justify-self:center; }
  .process { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .process article:not(:last-child)::after { display:none; }
  .about-panel { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .header-inner, .container { padding-left: 18px; padding-right: 18px; }
  .brand img { width: 96px; }
  .lang-switch { display:none; }
  .section { padding: 76px 0; }
  .section-tight { padding: 60px 0; }
  .display { font-size: clamp(2.65rem, 14vw, 4.45rem); }
  .h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .capability-grid, .layer-strip, .scale-track, .process { grid-template-columns: 1fr; }
  .capability { padding-left: 20px; }
  .about-panel { padding: 24px; border-radius: 24px; }
  .about-mark { min-height: 240px; }
  .contact-grid { gap: 34px; }
  .form-card { padding: 22px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { justify-content:flex-start; }
}
