
:root {
  --bg: #f5f6f1;
  --surface: #ffffff;
  --surface-soft: #eef4f2;
  --ink: #082f36;
  --ink-2: #31545a;
  --muted: #6d8588;
  --line: rgba(8,47,54,.13);
  --brand: #07525c;
  --brand-deep: #042f36;
  --brand-light: #dcebea;
  --accent: #ef5b2a;
  --accent-dark: #d9471b;
  --accent-soft: #ffeadf;
  --white: #fff;
  --shadow-sm: 0 14px 35px rgba(4,47,54,.08);
  --shadow-lg: 0 28px 80px rgba(4,47,54,.15);
  --radius-sm: 16px;
  --radius-md: 26px;
  --radius-lg: 42px;
  --container: 1180px;
  --header: 88px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--accent); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: var(--white);
  background: var(--brand-deep);
  border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  border-bottom: 1px solid transparent;
  background: rgba(245,246,241,.82);
  backdrop-filter: blur(18px);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(4,47,54,.06);
}
.nav {
  width: min(calc(100% - 40px), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 207px; height: auto; }

.nav-menu { display: flex; align-items: center; gap: 30px; }
.nav-menu > a {
  position: relative;
  color: var(--ink-2);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.nav-menu > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right .25s var(--ease);
}
.nav-menu > a:hover::after,
.nav-menu > a[aria-current="page"]::after { right: 0; }
.nav-menu > a[aria-current="page"] { color: var(--brand); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  color: var(--white) !important;
  background: var(--brand);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(7,82,92,.18);
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--brand-deep); }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--brand-deep);
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: .78rem;
  line-height: 1.3;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.display, h1, h2, h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.4rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.3rem, 4.2vw, 4.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }
p { margin: 0; }
.lead {
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - var(--header));
  display: grid;
  align-items: center;
  padding: 72px 0 92px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(7,82,92,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,82,92,.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  top: 3%;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,91,42,.18), rgba(239,91,42,0) 68%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 64px;
}
.hero-copy { max-width: 680px; }
.hero h1 span { color: var(--accent); }
.hero-text {
  max-width: 640px;
  margin-top: 28px;
  color: var(--ink-2);
  font-size: clamp(1.08rem, 1.65vw, 1.34rem);
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(239,91,42,.25);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 20px 38px rgba(239,91,42,.32); }
.btn-secondary {
  color: var(--brand);
  background: var(--surface);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--surface-soft); }
.btn-dark {
  color: var(--white);
  background: var(--brand-deep);
  box-shadow: 0 16px 32px rgba(4,47,54,.22);
}
.btn-dark:hover { background: var(--brand); }
.btn-link {
  min-height: auto;
  padding: 0;
  color: var(--brand);
  border-radius: 0;
}
.btn-link::after { content: "↗"; margin-left: 8px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.hero-proof span,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  color: var(--brand);
  background: rgba(255,255,255,.74);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 750;
}
.hero-visual {
  position: relative;
  filter: drop-shadow(0 36px 50px rgba(4,47,54,.2));
}
.hero-visual img { width: 100%; height: auto; }


.section { padding: 120px 0; }
.section-soft { background: var(--surface-soft); }
.section-dark { color: var(--white); background: var(--brand-deep); }
.section-heading { max-width: 760px; margin-bottom: 54px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading p:last-child { margin-top: 22px; }

.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: 80px;
}
.intro-copy { position: sticky; top: 128px; }
.intro-copy p:last-child { margin-top: 24px; }
.outcomes { display: grid; gap: 18px; }
.outcome {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.outcome-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 22px;
  color: var(--white);
  background: var(--brand);
  border-radius: 14px;
  font-weight: 900;
}
.outcome p { margin-top: 12px; color: var(--ink-2); }

.cards { display: grid; gap: 22px; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-8px);
  border-color: rgba(239,91,42,.3);
  box-shadow: var(--shadow-lg);
}
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 52px;
  color: var(--brand);
  background: var(--brand-light);
  border-radius: 18px;
}
.card-icon svg { width: 29px; height: 29px; }
.card h3 { margin-bottom: 14px; }
.card p { color: var(--ink-2); }
.card-link { display: inline-flex; margin-top: 24px; color: var(--accent); font-weight: 850; }
.card-link::after { content: "→"; margin-left: 8px; transition: transform .2s ease; }
.card:hover .card-link::after { transform: translateX(4px); }

.product-spotlight {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 70px;
  padding: 64px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 0%, rgba(239,91,42,.26), transparent 34%),
    var(--brand-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.product-spotlight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.08), transparent 42%);
  pointer-events: none;
}
.product-copy, .product-visual { position: relative; z-index: 1; }
.product-copy .eyebrow { color: #ff9a76; }
.product-copy p:not(.eyebrow) { margin-top: 22px; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.product-list { display: grid; gap: 11px; margin: 28px 0 34px; padding: 0; list-style: none; }
.product-list li { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.88); }
.product-list li::before { content: "✓"; color: #ff9a76; font-weight: 900; }
.status-badge {
  display: inline-flex;
  padding: 7px 11px;
  margin-bottom: 22px;
  color: #ffd9ca;
  background: rgba(239,91,42,.16);
  border: 1px solid rgba(255,154,118,.32);
  border-radius: 999px;
  font-size: .77rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-visual img { width: 100%; filter: drop-shadow(0 24px 40px rgba(0,0,0,.24)); }

.product-showcase-stack { display: grid; gap: 28px; }
.product-spotlight-light {
  color: var(--ink);
  background:
    radial-gradient(circle at 90% 10%, rgba(23,177,105,.13), transparent 30%),
    linear-gradient(135deg, #ffffff, #edf6f2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.product-spotlight-light .product-copy .eyebrow { color: var(--brand); }
.product-spotlight-light .product-copy p:not(.eyebrow) { color: var(--ink-2); }
.product-spotlight-light .product-list li { color: var(--ink); }
.product-spotlight-light .product-list li::before { color: #18a866; }
.product-spotlight-light .product-visual img { filter: drop-shadow(0 24px 40px rgba(4,47,54,.14)); }
.status-badge-light {
  color: #0b7047;
  background: rgba(24,168,102,.1);
  border-color: rgba(24,168,102,.24);
}

.booking-product-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  padding: 64px;
  background: linear-gradient(135deg, #ffffff, #edf6f2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.booking-product-visual {
  display: grid;
  place-items: center;
  min-height: 470px;
  padding: 26px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(8,47,54,.09);
  border-radius: 30px;
}
.booking-product-visual img { width: 100%; filter: drop-shadow(0 24px 38px rgba(4,47,54,.13)); }
.booking-product-copy .lead { margin-top: 22px; }
.booking-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.booking-features article {
  padding: 20px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.booking-features h3 { margin-bottom: 8px; font-size: 1rem; }
.booking-features p { color: var(--ink-2); font-size: .9rem; line-height: 1.55; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; counter-reset: steps; }
.step {
  position: relative;
  padding: 30px 24px;
  border-top: 1px solid var(--line);
}
.step span {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--accent);
  font-size: .84rem;
  font-weight: 900;
}
.step h3 { margin-bottom: 12px; }
.step p { color: var(--ink-2); font-size: .95rem; }

.manifesto {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}
.manifesto-quote {
  font-size: clamp(2.4rem, 5.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -.055em;
  font-weight: 900;
}
.manifesto-quote span { color: var(--accent); }
.manifesto-copy p { color: rgba(255,255,255,.72); font-size: 1.08rem; }
.manifesto-copy p + p { margin-top: 18px; }

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 54px 58px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.cta-panel p { margin-top: 14px; color: var(--ink-2); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -170px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,91,42,.18), transparent 68%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { max-width: 960px; font-size: clamp(3.3rem, 7vw, 6.4rem); }
.page-hero .lead { max-width: 760px; margin-top: 26px; }
.page-hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: 0; }
.service-block:nth-child(even) .service-visual { order: 2; }
.service-kicker { color: var(--accent); font-weight: 850; }
.service-copy h2 { margin-top: 12px; font-size: clamp(2.2rem,4vw,3.8rem); }
.service-copy > p { margin-top: 20px; color: var(--ink-2); font-size: 1.06rem; }
.feature-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  padding: 14px 15px;
  color: var(--brand);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-size: .92rem;
  font-weight: 750;
}
.service-visual {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 40px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.service-visual img { width: 100%; max-height: 350px; }


.faq { display: grid; gap: 12px; }
.faq details {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
}
.faq summary { cursor: pointer; font-weight: 850; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent); font-size: 1.4rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 14px; color: var(--ink-2); }

.product-hero-panel {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 60px;
  align-items: center;
  padding: 64px;
  color: var(--white);
  background: var(--brand-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.product-hero-panel .lead { margin-top: 22px; color: rgba(255,255,255,.72); }
.module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.module {
  min-height: 230px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.module span { color: var(--accent); font-size: .8rem; font-weight: 900; letter-spacing: .08em; }
.module h3 { margin: 34px 0 12px; }
.module p { color: var(--ink-2); }
.lab-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.lab-visual {
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(239,91,42,.25), transparent 30%),
    var(--brand-deep);
  border-radius: var(--radius-lg);
}
.lab-orbit {
  position: relative;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}
.lab-orbit::before, .lab-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
}
.lab-orbit::before { inset: 45px; }
.lab-orbit::after { inset: 92px; }
.lab-core {
  position: absolute;
  inset: 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--accent);
  border-radius: 20px;
  font-weight: 900;
}
.orbit-dot {
  position: absolute;
  width: 16px; height: 16px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(255,255,255,.65);
}
.orbit-dot.d1 { left: 18px; top: 70px; }
.orbit-dot.d2 { right: 30px; top: 28px; background: var(--accent); }
.orbit-dot.d3 { left: 116px; bottom: -8px; }

.value-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.value-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.value-card span { color: var(--accent); font-weight: 900; }
.value-card h3 { margin: 28px 0 12px; }
.value-card p { color: var(--ink-2); }

.company-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.company-visual {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 48px;
  color: var(--white);
  background:
    linear-gradient(to top, rgba(4,47,54,.96), rgba(4,47,54,.2)),
    radial-gradient(circle at 70% 15%, rgba(239,91,42,.72), transparent 22%),
    var(--brand);
  border-radius: var(--radius-lg);
}
.company-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(30deg, transparent 45%, rgba(255,255,255,.08) 46%, transparent 47%),
    linear-gradient(-30deg, transparent 45%, rgba(255,255,255,.08) 46%, transparent 47%);
  background-size: 55px 55px;
}
.company-visual blockquote { position: relative; z-index: 1; margin: 0; font-size: clamp(2rem,3.8vw,3.6rem); line-height: 1.05; letter-spacing: -.05em; font-weight: 900; }
.company-copy p { margin-top: 20px; color: var(--ink-2); font-size: 1.08rem; }
.principles { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.principle {
  padding: 26px 22px;
  border-top: 3px solid var(--accent);
  background: var(--surface);
  border-radius: 0 0 18px 18px;
}
.principle h3 { margin-bottom: 12px; font-size: 1.25rem; }
.principle p { color: var(--ink-2); font-size: .94rem; }

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info {
  position: sticky;
  top: 128px;
}
.contact-info .lead { margin-top: 22px; }
.contact-channels { display: grid; gap: 12px; margin-top: 32px; }
.contact-channel {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.contact-channel small { display: block; color: var(--muted); }
.contact-channel strong { display: block; margin-top: 3px; }
.form-card {
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.form-field { display: grid; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { color: var(--ink); font-size: .9rem; font-weight: 800; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(239,91,42,.11);
}
.form-field textarea { min-height: 160px; resize: vertical; }
.form-note { margin: 18px 0; color: var(--muted); font-size: .84rem; }
.form-note a { color: var(--brand); text-decoration: underline; }
.form-status { min-height: 24px; margin-top: 12px; color: var(--brand); font-weight: 700; }

.legal {
  padding: 80px 0 120px;
}
.legal article {
  padding: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.legal h2 { margin-top: 42px; font-size: 1.55rem; letter-spacing: -.025em; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--ink-2); }
.legal p { margin-top: 14px; }
.legal ul { padding-left: 20px; }
.legal-notice {
  margin-bottom: 24px;
  padding: 16px 18px;
  color: #7a341d;
  background: var(--accent-soft);
  border: 1px solid rgba(239,91,42,.25);
  border-radius: 14px;
  font-weight: 700;
}

.not-found {
  min-height: calc(100vh - var(--header));
  display: grid;
  place-items: center;
  padding: 80px 20px;
  text-align: center;
}
.not-found strong {
  display: block;
  color: var(--accent);
  font-size: clamp(6rem,20vw,14rem);
  line-height: .8;
  letter-spacing: -.08em;
}
.not-found h1 { margin-top: 28px; font-size: clamp(2.4rem,5vw,4rem); }
.not-found p { max-width: 560px; margin: 18px auto 30px; color: var(--ink-2); }

.site-footer {
  padding: 70px 0 26px;
  color: rgba(255,255,255,.78);
  background: var(--brand-deep);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr .9fr;
  gap: 44px;
}
.footer-brand img {
  width: 205px;
  height: auto;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 12px;
}
.footer-brand p { max-width: 360px; margin-top: 18px; }
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col strong { margin-bottom: 6px; color: var(--white); }
.footer-col a:hover { color: #ff9a76; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: .84rem;
}
.footer-bottom-links { display: flex; gap: 18px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }

@media (max-width: 980px) {
  :root { --header: 78px; }
  .brand img { width: 180px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    inset: var(--header) 0 0 0;
    min-height: calc(100vh - var(--header));
    padding: 38px 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow-y: auto;
    background: rgba(255,255,255,.98);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s var(--ease), visibility .25s ease;
  }
  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-menu > a { padding: 14px 6px; font-size: 1.15rem; }
  .nav-menu > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 12px; }
  .hero { min-height: auto; padding: 70px 0 90px; }
  .hero-grid, .intro-grid, .manifesto, .company-story, .contact-layout, .lab-panel { grid-template-columns: 1fr; }
  .hero-visual { max-width: 720px; margin-inline: auto; }
  .intro-copy, .contact-info { position: static; }
  .cards-3 { grid-template-columns: repeat(2,1fr); }
  .product-spotlight, .product-hero-panel, .booking-product-panel { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2,1fr); }
  .service-block { grid-template-columns: 1fr; gap: 36px; }
  .service-block:nth-child(even) .service-visual { order: initial; }
  .module-grid { grid-template-columns: repeat(2,1fr); }
  .principles { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 680px) {
  .container, .narrow, .nav { width: min(calc(100% - 28px), var(--container)); }
  .brand img { width: 160px; }
  .hero { padding-top: 46px; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.7rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .section { padding: 84px 0; }
  .section-heading { margin-bottom: 38px; }
  .cards-3, .steps, .module-grid, .value-grid, .principles, .form-grid { grid-template-columns: 1fr; }
  .card-icon { margin-bottom: 34px; }
  .product-spotlight, .product-hero-panel, .booking-product-panel { padding: 34px 24px; border-radius: 28px; }
  .booking-features { grid-template-columns: 1fr; }
  .booking-product-visual { min-height: 320px; padding: 18px; }
  .cta-panel { grid-template-columns: 1fr; padding: 34px 24px; border-radius: 28px; }
  .cta-panel .btn { width: 100%; }
  .page-hero { padding: 74px 0 64px; }
  .service-block { padding: 54px 0; }
  .service-visual { min-height: 320px; padding: 22px; border-radius: 28px; }
  .feature-list { grid-template-columns: 1fr; }
  .company-visual { min-height: 420px; padding: 28px; }
  .form-card { padding: 26px 20px; border-radius: 26px; }
  .form-field.full { grid-column: auto; }
  .legal article { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}
@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 { opacity: 1; transform: none; }
}
:focus-visible { outline: 3px solid rgba(239,91,42,.45); outline-offset: 4px; }
