@font-face {
  font-family: "Virelix Sans";
  src: url("fonts/NimbusSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Virelix Sans";
  src: url("fonts/NimbusSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Virelix Serif";
  src: url("fonts/P052-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Virelix Serif";
  src: url("fonts/P052-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --forest: #10372f;
  --forest-2: #1b4b40;
  --mint: #8fd7c0;
  --mint-pale: #daf0e7;
  --lime: #d3de66;
  --ink: #17312b;
  --slate: #526660;
  --fog: #eef3ef;
  --ivory: #faf9f3;
  --white: #ffffff;
  --line: #d5ddd8;
  --warm: #df835e;
  --shadow: 0 28px 80px rgba(16, 55, 47, 0.13);
  --radius-sm: 12px;
  --radius: 24px;
  --radius-lg: 38px;
  --container: min(1280px, calc(100vw - 48px));
  --sans: "Virelix Sans", Arial, sans-serif;
  --serif: "Virelix Serif", Georgia, serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

button,
input,
select,
textarea { font: inherit; }

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: -100px;
  left: 18px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--forest);
  color: white;
}

.skip-link:focus { top: 18px; }

.container {
  width: var(--container);
  margin-inline: auto;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 6.2vw, 6.4rem);
  line-height: 0.94;
}

h2 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.2vw, 4.65rem);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1.12;
}

h4 {
  margin-bottom: 8px;
  font-size: 1.3rem;
}

p { margin-top: 0; }

.lede {
  max-width: 720px;
  color: var(--slate);
  font-size: clamp(1.12rem, 1.5vw, 1.34rem);
  line-height: 1.55;
}

.muted { color: var(--slate); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--forest-2);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(211, 222, 102, 0.18);
  content: "";
}

.announcement {
  min-height: 40px;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.announcement-inner {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.announcement p { margin: 0; }

.announcement-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.announcement a { text-decoration: none; }
.announcement a:hover { color: white; }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  padding: 14px 0;
  background: rgba(250, 249, 243, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(16, 55, 47, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(16, 55, 47, 0.07);
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.brand-sub {
  margin-top: 6px;
  color: var(--slate);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 30px);
}

.desktop-nav a {
  position: relative;
  padding: 29px 0 27px;
  color: var(--slate);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--mint);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] { color: var(--forest); }

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--fog);
}

.language-switch a {
  display: grid;
  min-width: 36px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-decoration: none;
}

.language-switch a[aria-current="true"] {
  background: var(--forest);
  color: white;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 14px 21px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  background: var(--forest);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 1rem;
}

.button:hover {
  border-color: var(--warm);
  background: var(--warm);
  transform: translateY(-2px);
}

.button-mint {
  border-color: var(--mint);
  background: var(--mint);
  color: var(--forest);
}

.button-mint:hover {
  border-color: var(--lime);
  background: var(--lime);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--forest);
}

.button-ghost:hover { color: white; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  font-size: 1rem;
  transition: transform 180ms ease;
}

.text-link:hover::after { transform: translateX(5px); }

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--fog);
  color: var(--forest);
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  content: "";
}

.mobile-menu { display: none; }

.home-hero {
  padding: 18px 0 80px;
}

.home-hero-stage {
  position: relative;
  min-height: min(760px, calc(100vh - 150px));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.home-hero-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-stage::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 38, 31, 0.78) 0%, rgba(9, 38, 31, 0.44) 43%, rgba(9, 38, 31, 0.02) 75%);
  content: "";
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(760px, calc(100vh - 150px));
  max-width: 700px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(46px, 7vw, 92px);
  color: rgba(255, 255, 255, 0.76);
}

.home-hero-copy h1,
.home-hero-copy .eyebrow { color: white; }

.home-hero-copy h1 {
  font-size: clamp(3.5rem, 6.8vw, 7rem);
}

.home-hero-copy .lede { color: rgba(255, 255, 255, 0.82); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.visual-note {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(16, 55, 47, 0.75);
  color: white;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.home-facts {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(1040px, calc(100% - 48px));
  margin: -42px auto 0;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(16, 55, 47, 0.12);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(16, 55, 47, 0.12);
  overflow: hidden;
}

.home-fact {
  min-height: 126px;
  padding: 27px 30px;
  border-right: 1px solid var(--line);
}

.home-fact:last-child { border-right: 0; }

.home-fact strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
}

.home-fact span {
  color: var(--slate);
  font-size: 0.9rem;
}

.section { padding: clamp(82px, 9vw, 140px) 0; }
.section-tight { padding: clamp(58px, 7vw, 94px) 0; }
.section-fog { background: var(--fog); }
.section-mint { background: var(--mint-pale); }

.section-forest {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.72);
}

.section-forest h2,
.section-forest h3,
.section-forest .eyebrow { color: white; }

.section-forest .lede,
.section-forest .muted { color: rgba(255, 255, 255, 0.68); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 44px;
  margin-bottom: 48px;
}

.section-head > div { max-width: 880px; }
.section-head > p { max-width: 500px; }

.split {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(42px, 8vw, 116px);
}

.split-top { align-items: start; }

.image-card {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card::before {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  content: "";
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  display: grid;
  min-height: 510px;
  grid-template-rows: 250px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.service-media {
  position: relative;
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-card:hover .service-media img { transform: scale(1.035); }

.service-body {
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.service-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--forest-2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-price { color: var(--warm); }
.service-body p { color: var(--slate); }
.service-body .text-link { margin-top: auto; padding-top: 15px; }

.process-river {
  position: relative;
  display: grid;
  margin-top: 56px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.process-node {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.process-node span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
}

.process-node h3 { font-size: 1.45rem; }
.process-node p { color: rgba(255, 255, 255, 0.61); font-size: 0.92rem; }

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.sector-card {
  min-height: 330px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.sector-icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 72px;
  place-items: center;
  border-radius: 18px;
  background: var(--mint-pale);
  color: var(--forest);
  font-size: 1.4rem;
}

.sector-card p,
.sector-card li { color: var(--slate); }
.sector-card ul { padding-left: 20px; }

.scope-band {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding: clamp(38px, 6vw, 72px);
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.scope-band h2,
.scope-band .eyebrow { color: white; }
.scope-band p { max-width: 760px; }

.page-hero { padding: 18px 0 70px; }

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1.08fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}

.page-hero-copy {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 6vw, 84px);
}

.page-hero-copy h1 { font-size: clamp(3.2rem, 5.6vw, 5.8rem); }

.page-hero-media {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.page-hero-media img,
.service-hero-media img,
.sector-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media::after,
.service-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(16, 55, 47, 0.28));
  content: "";
}

.service-hero { padding: 18px 0 74px; }

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.86fr);
  border-radius: var(--radius-lg);
  background: var(--forest);
  color: rgba(255, 255, 255, 0.72);
  overflow: hidden;
}

.service-hero-copy {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(44px, 6vw, 84px);
}

.service-hero-copy h1,
.service-hero-copy .eyebrow { color: white; }

.service-hero-copy h1 { font-size: clamp(3.15rem, 5.2vw, 5.45rem); }
.service-hero-copy .lede { color: rgba(255, 255, 255, 0.72); }

.service-meta {
  display: grid;
  margin-top: 42px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.service-meta div { padding: 24px 16px 0 0; }

.service-meta span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-meta strong {
  color: white;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}

.service-hero-media {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.service-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: clamp(60px, 8vw, 120px);
}

.service-main > section { margin-bottom: 72px; }
.service-main h2 { font-size: clamp(2.2rem, 3.5vw, 3.8rem); }

.detail-list,
.check-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.detail-list li {
  position: relative;
  padding: 18px 18px 18px 26px;
  border-bottom: 1px solid var(--line);
}

.detail-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--warm);
  content: "—";
}

.check-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 25px;
}

.timeline-list {
  display: grid;
  gap: 13px;
  margin-top: 30px;
}

.timeline-row {
  display: grid;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  grid-template-columns: 46px 1fr;
  gap: 17px;
}

.timeline-row > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--forest);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}

.timeline-row h3 {
  margin: 0 0 4px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.timeline-row p { margin: 0; color: var(--slate); font-size: 0.92rem; }

.service-aside {
  position: sticky;
  top: 122px;
  padding: 34px;
  border-radius: var(--radius);
  background: var(--mint-pale);
}

.service-aside h3 { font-size: 1.75rem; }
.service-aside .button { width: 100%; margin: 16px 0 25px; }
.service-aside dl { margin: 0; border-top: 1px solid rgba(16, 55, 47, 0.16); }
.service-aside dl div { padding: 17px 0; border-bottom: 1px solid rgba(16, 55, 47, 0.16); }
.service-aside dt { margin-bottom: 4px; color: var(--slate); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.service-aside dd { margin: 0; }

.sector-photo {
  height: 280px;
  margin: -36px -36px 30px;
  overflow: hidden;
}

.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item h2 { max-width: none; margin: 0; font-family: inherit; font-size: inherit; letter-spacing: 0; }

.faq-button {
  display: grid;
  width: 100%;
  padding: 27px 4px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  grid-template-columns: 1fr 32px;
  gap: 22px;
}

.faq-button > span:first-child { font-family: var(--serif); font-size: 1.36rem; }

.faq-icon {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 13px;
  left: 8px;
  width: 10px;
  height: 1px;
  background: var(--forest);
  content: "";
}

.faq-icon::after { transform: rotate(90deg); transition: transform 180ms ease; }
.faq-button[aria-expanded="true"] .faq-icon::after { transform: rotate(0); }
.faq-panel { max-width: 790px; padding: 0 42px 26px 4px; color: var(--slate); }

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(50px, 8vw, 118px);
}

.contact-card {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--forest);
  color: rgba(255, 255, 255, 0.7);
}

.contact-card h3,
.contact-card a { color: white; }

.contact-row { padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.14); }
.contact-row:last-child { border-bottom: 0; }

.contact-row span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form {
  padding: clamp(30px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 21px;
}

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field-full { grid-column: 1 / -1; }

.form-field label {
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--fog);
  color: var(--ink);
}

.form-field textarea { min-height: 160px; resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--mint);
  outline: 2px solid rgba(143, 215, 192, 0.24);
}

.checkbox-row {
  display: grid;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  color: var(--slate);
  font-size: 0.9rem;
}

.checkbox-row input { width: 18px; min-height: 0; height: 18px; margin-top: 3px; padding: 0; }
.form-note { margin: 18px 0 0; color: var(--slate); font-size: 0.83rem; }

.legal-title {
  padding: clamp(74px, 10vw, 136px) 0;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 82% 28%, rgba(143, 215, 192, 0.42), transparent 24%), linear-gradient(135deg, var(--ivory), var(--fog));
}

.legal-title-inner { position: relative; }
.legal-title h1 { max-width: 880px; font-size: clamp(3.2rem, 6vw, 6.1rem); }

.legal-date {
  margin-top: 28px;
  color: var(--slate);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-shell {
  display: grid;
  align-items: start;
  grid-template-columns: 270px minmax(0, 800px);
  gap: clamp(50px, 8vw, 116px);
}

.legal-index {
  position: sticky;
  top: 124px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--mint-pale);
}

.legal-index strong { display: block; margin-bottom: 16px; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.legal-index a { display: block; padding: 8px 0; color: var(--slate); font-size: 0.9rem; }
.legal-content section { padding: 0 0 40px; margin-bottom: 40px; border-bottom: 1px solid var(--line); }
.legal-content section:last-child { border-bottom: 0; }
.legal-content h2 { font-size: clamp(1.85rem, 2.8vw, 2.7rem); }
.legal-content h3 { margin-top: 25px; font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: 0; }
.legal-content p,
.legal-content li { color: var(--slate); }
.legal-content li { margin-bottom: 9px; }

.legal-callout {
  margin: 27px 0;
  padding: 24px;
  border-left: 3px solid var(--mint);
  background: var(--fog);
}

.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
th,
td { padding: 14px 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
th { font-size: 0.7rem; letter-spacing: 0.09em; text-transform: uppercase; }

.cta-band {
  padding: 74px 0;
  background: var(--mint);
  color: var(--forest);
}

.cta-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 48px;
}

.cta-inner h2 { margin-bottom: 12px; color: var(--forest); }
.cta-inner p { max-width: 760px; }

.site-footer {
  padding: 74px 0 24px;
  background: #0a2822;
  color: rgba(255, 255, 255, 0.61);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 58px;
}

.footer-brand p { max-width: 360px; margin: 22px 0 0; }
.site-footer h2,
.site-footer h3,
.footer-brand a,
.footer-column strong { color: white; }

.footer-brand .brand-mark { width: 58px; height: 58px; }
.footer-brand h2 { margin: 18px 0 0; font-family: var(--sans); font-size: 1.05rem; font-weight: 700; letter-spacing: 0.16em; }

.footer-column h3 { margin-bottom: 17px; font-family: var(--sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-column a,
.footer-column span { display: block; margin: 9px 0; text-decoration: none; }
.footer-column a:hover { color: white; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.cookie-notice {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(440px, calc(100vw - 44px));
  gap: 17px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--forest);
  box-shadow: var(--shadow);
  color: rgba(255, 255, 255, 0.72);
}

.cookie-notice[hidden] { display: none; }
.cookie-notice p { margin: 0; font-size: 0.9rem; }
.cookie-notice a { color: white; }
.cookie-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.cookie-actions .button { min-height: 42px; padding: 10px 16px; }

.site-loader { display: none; }

.js .site-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background: #dfe9e3;
  opacity: 1;
  overflow: hidden;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.js .site-loader::before {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 28% 38%, rgba(255,255,255,0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 62%, rgba(255,255,255,0.7) 0 3px, transparent 4px),
    radial-gradient(circle at 58% 22%, rgba(255,255,255,0.55) 0 1px, transparent 2px),
    linear-gradient(140deg, rgba(255,255,255,0.34), rgba(16,55,47,0.08));
  background-size: 93px 117px, 141px 129px, 71px 83px, auto;
  filter: blur(1px);
  content: "";
}

.js .site-loader.is-finished {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader-disc {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(360px, 82vw);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(16, 55, 47, 0.12);
  border-radius: 50%;
  background: rgba(250, 249, 243, 0.58);
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.8), 0 20px 80px rgba(16, 55, 47, 0.12);
  backdrop-filter: blur(14px);
}

.loader-disc::before {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(250,249,243,0.96) 0 18%, rgba(143,215,192,0.38) 38%, transparent 70%);
  content: "";
  transform: scale(0.2);
  animation: clearSurface 300ms ease forwards;
}

.site-loader.is-first .loader-disc::before { animation-duration: 1150ms; }

@keyframes clearSurface {
  to { transform: scale(1.35); opacity: 0.2; }
}

.loader-content { position: relative; z-index: 2; text-align: center; }
.loader-content .brand-mark { width: 78px; height: 78px; margin: 0 auto 20px; }
.loader-title { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.24em; }
.loader-sub { margin-top: 8px; color: var(--slate); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; }

.route-loader {
  position: fixed;
  z-index: 900;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(238, 243, 239, 0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.route-loader .brand-mark {
  width: 56px;
  height: 56px;
  animation: quickPulse 560ms ease infinite alternate;
}

body.is-route-loading .route-loader { opacity: 1; }

@keyframes quickPulse {
  from { transform: scale(0.9); opacity: 0.58; }
  to { transform: scale(1.03); opacity: 1; }
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

.not-found {
  display: grid;
  min-height: 68vh;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--mint);
  font-family: var(--serif);
  font-size: clamp(6rem, 16vw, 13rem);
  font-weight: 400;
  line-height: 0.8;
}

.not-found h1 { margin: 30px auto 18px; font-size: clamp(2.5rem, 5vw, 4.8rem); }

@media (max-width: 1160px) {
  .desktop-nav,
  .nav-cta { display: none; }

  .nav-shell { grid-template-columns: auto 1fr auto; }
  .nav-actions { justify-self: end; }
  .menu-button { display: block; }

  .mobile-menu {
    position: fixed;
    z-index: 79;
    inset: 130px 0 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    padding: 34px 24px 50px;
    background: var(--ivory);
    opacity: 0;
    transform: translateY(-10px);
    transition: 180ms ease;
  }

  .mobile-menu.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: 1.75rem; text-decoration: none; }
  .mobile-menu .button { width: fit-content; margin-top: 26px; border-bottom: 1px solid var(--forest); font-family: var(--sans); font-size: 0.75rem; }

  .page-hero-grid,
  .service-hero-grid { grid-template-columns: 1fr; }

  .page-hero-copy,
  .service-hero-copy { min-height: auto; }

  .page-hero-media,
  .service-hero-media { min-height: 520px; }

  .service-layout { grid-template-columns: 1fr; }
  .service-aside { position: static; }
}

@media (max-width: 840px) {
  :root { --container: min(100% - 32px, 760px); }
  body { font-size: 16px; }
  .announcement-inner { justify-content: center; }
  .announcement-inner > p,
  .announcement-links a:first-child { display: none; }

  .site-header { padding: 10px 0; }
  .nav-shell { min-height: 70px; }
  .mobile-menu { inset: 120px 0 0; }

  .home-hero-stage,
  .home-hero-copy { min-height: 680px; }

  .home-hero-stage::after { background: linear-gradient(90deg, rgba(9,38,31,0.84), rgba(9,38,31,0.36)); }
  .home-hero-copy { padding: 42px 26px 88px; }
  .home-facts { grid-template-columns: 1fr; }
  .home-fact { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-fact:last-child { border-bottom: 0; }

  .split,
  .service-grid,
  .sector-grid,
  .contact-grid,
  .legal-shell,
  .footer-grid { grid-template-columns: 1fr; }

  .section-head { display: block; }
  .section-head > :last-child { margin-top: 20px; }
  .image-card { min-height: 440px; }
  .process-river { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scope-band,
  .cta-inner { grid-template-columns: 1fr; }
  .page-hero,
  .service-hero { padding-top: 8px; }
  .page-hero-grid,
  .service-hero-grid { border-radius: var(--radius); }
  .page-hero-copy,
  .service-hero-copy { padding: 40px 27px 44px; }
  .page-hero-copy h1,
  .service-hero-copy h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .page-hero-media,
  .service-hero-media { min-height: 420px; }
  .legal-index { position: static; }
  .footer-grid { gap: 36px; }
  .footer-bottom { align-items: start; flex-direction: column; }
}

@media (max-width: 570px) {
  .brand-sub { display: none; }
  .brand-mark { width: 42px; height: 42px; flex-basis: 42px; }
  .nav-shell { padding-left: 12px; gap: 10px; }
  .nav-actions { gap: 6px; }
  .language-switch a { min-width: 32px; }
  .home-hero-stage,
  .home-hero-copy { min-height: 650px; }
  .home-hero-copy h1,
  h1 { font-size: clamp(3.15rem, 15vw, 5rem); }
  .hero-actions,
  .cookie-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button,
  .cookie-actions .button { width: 100%; }
  .process-river,
  .detail-list,
  .form-grid,
  .service-meta { grid-template-columns: 1fr; }
  .service-card { grid-template-rows: 220px 1fr; }
  .page-hero-media,
  .service-hero-media { min-height: 340px; }
  .scope-band { padding: 34px 24px; }
}

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