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

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

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

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

:root {
  --ink: #18201d;
  --ink-soft: #46504b;
  --stone: #f1eee7;
  --paper: #fbfaf6;
  --chalk: #ffffff;
  --moss: #506057;
  --moss-deep: #293630;
  --copper: #b75b35;
  --copper-light: #e4a17e;
  --line: #d7d3ca;
  --muted: #777d78;
  --shadow: 0 22px 65px rgba(24, 32, 29, 0.12);
  --radius-sm: 10px;
  --radius: 22px;
  --radius-lg: 34px;
  --container: min(1280px, calc(100vw - 48px));
  --serif: "Hampden Serif", Georgia, serif;
  --sans: "Hampden Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  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-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--moss);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.8vw, 6.9rem);
  line-height: 0.91;
}

h2 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4vw, 4.75rem);
  line-height: 0.98;
}

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

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

p {
  margin-top: 0;
}

.lede {
  max-width: 710px;
  color: var(--ink-soft);
  font-size: clamp(1.14rem, 1.5vw, 1.36rem);
  line-height: 1.5;
}

.measure {
  max-width: 720px;
}

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

.topbar {
  min-height: 42px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

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

.topbar p {
  margin: 0;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar a {
  text-decoration: none;
}

.topbar a:hover {
  color: white;
}

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  border-bottom: 1px solid rgba(24, 32, 29, 0.1);
  background: rgba(251, 250, 246, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  min-height: 94px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 38px;
}

.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.02rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.desktop-nav a {
  position: relative;
  padding: 34px 0 31px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

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

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

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

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

.button-light {
  border-color: white;
  background: white;
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--copper-light);
  background: var(--copper-light);
  color: var(--ink);
}

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

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

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

.text-link::after {
  content: "→";
  font-size: 1.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: transparent;
  color: var(--ink);
}

.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;
}

.hero {
  padding: 44px 0 76px;
}

.hero-grid {
  display: grid;
  min-height: min(720px, calc(100vh - 160px));
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--chalk);
  box-shadow: 0 14px 48px rgba(24, 32, 29, 0.06);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  align-items: center;
  padding: clamp(42px, 6vw, 88px);
}

.hero-copy-inner {
  max-width: 610px;
}

.hero-copy h1 {
  font-size: clamp(3.4rem, 6.3vw, 6.3rem);
}

.hero-copy .lede {
  max-width: 570px;
}

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

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

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

.hero-media::after,
.page-hero-media::after,
.service-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(24, 32, 29, 0.34));
  content: "";
  pointer-events: none;
}

.visual-note {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(24, 32, 29, 0.72);
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.fact-strip {
  display: grid;
  margin-top: -18px;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--stone);
  overflow: hidden;
}

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

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

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

.fact span {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.section {
  padding: clamp(80px, 9vw, 136px) 0;
}

.section-tight {
  padding: clamp(60px, 7vw, 96px) 0;
}

.section-stone {
  background: var(--stone);
}

.section-ink {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

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

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

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

.section-head > div:first-child {
  max-width: 870px;
}

.section-head p:last-child {
  max-width: 480px;
}

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

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

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

.image-frame::before {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 74px;
  height: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  content: "";
}

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

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

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

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

.service-card-media img {
  transition: transform 600ms ease;
}

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

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

.service-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card p {
  color: var(--ink-soft);
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 18px;
}

.price-tag {
  color: var(--copper);
}

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

.process-path::before {
  position: absolute;
  z-index: 0;
  top: 27px;
  right: 8.3%;
  left: 8.3%;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}

.process-number {
  display: grid;
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: var(--ink);
  color: var(--copper-light);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.process-step h3 {
  font-size: 1.24rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.scope-map {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.scope-node {
  position: relative;
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--chalk);
}

.scope-node::after {
  position: absolute;
  top: 36px;
  right: 34px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--copper);
  box-shadow: 0 0 0 8px rgba(183, 91, 53, 0.1);
  content: "";
}

.scope-node small {
  display: block;
  margin-bottom: 64px;
  color: var(--moss);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scope-node p {
  color: var(--ink-soft);
}

.scope-connector {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 38px 0;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--stone);
}

.scope-connector strong {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.scope-connector span {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-panel {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 50px;
  padding: clamp(36px, 6vw, 74px);
  border-radius: var(--radius-lg);
  background: var(--moss-deep);
  color: rgba(255, 255, 255, 0.74);
}

.price-panel h2,
.price-panel .eyebrow {
  color: white;
}

.price-panel p {
  max-width: 720px;
}

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

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--chalk);
  overflow: hidden;
}

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

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

.page-hero-media {
  min-height: 590px;
}

.service-hero {
  padding: 44px 0 76px;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.86fr);
  border-radius: var(--radius-lg);
  background: var(--ink);
  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(42px, 6vw, 84px);
}

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

.service-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 5.4vw, 5.6rem);
}

.service-hero-copy .lede {
  color: rgba(255, 255, 255, 0.7);
}

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

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

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

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

.service-hero-media {
  min-height: 650px;
}

.service-content-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 340px;
  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: 20px 20px 20px 28px;
  border-bottom: 1px solid var(--line);
}

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

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

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

.service-aside h3 {
  font-size: 1.7rem;
}

.service-aside .button {
  width: 100%;
  margin: 16px 0 26px;
}

.service-aside dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.service-aside dl div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.service-aside dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-aside dd {
  margin: 0;
}

.timeline-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

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

.timeline-row span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 0.72rem;
  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(--ink-soft);
  font-size: 0.92rem;
}

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

.sector-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--chalk);
  overflow: hidden;
}

.sector-media {
  height: 260px;
  overflow: hidden;
}

.sector-card-body {
  padding: 32px;
}

.sector-card-body p {
  color: var(--ink-soft);
}

.sector-card-body ul {
  padding-left: 20px;
  color: var(--ink-soft);
}

.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 30px;
  gap: 24px;
}

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

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

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

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-button[aria-expanded="true"] .faq-icon::after {
  transform: rotate(0deg);
}

.faq-panel {
  max-width: 790px;
  padding: 0 40px 26px 4px;
  color: var(--ink-soft);
}

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

.contact-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.68);
}

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

.contact-card-row {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-card-row:last-child {
  border-bottom: 0;
}

.contact-card-row span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label,
.fieldset-label {
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  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: 7px;
  background: var(--paper);
  color: var(--ink);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--moss);
  outline: 2px solid rgba(80, 96, 87, 0.16);
}

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

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.legal-title {
  padding: clamp(74px, 10vw, 138px) 0;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 84% 25%, rgba(183, 91, 53, 0.13), transparent 24%),
    linear-gradient(135deg, var(--paper), var(--stone));
}

.legal-title-inner {
  position: relative;
}

.legal-title-inner::after {
  position: absolute;
  top: 0;
  right: 2%;
  width: min(280px, 28vw);
  aspect-ratio: 1;
  border: 1px solid rgba(24, 32, 29, 0.12);
  border-radius: 50%;
  content: "";
  box-shadow: inset 0 0 0 28px rgba(255, 255, 255, 0.18), inset 0 0 0 29px rgba(24, 32, 29, 0.08);
  pointer-events: none;
}

.legal-title h1 {
  max-width: 880px;
  font-size: clamp(3.3rem, 6.2vw, 6.2rem);
}

.legal-title .lede {
  position: relative;
  z-index: 1;
}

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

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

.legal-index strong {
  display: block;
  margin-bottom: 16px;
  font-size: 0.74rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-index a {
  display: block;
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.legal-content section {
  padding: 0 0 42px;
  margin-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.legal-content section:last-child {
  border-bottom: 0;
}

.legal-content h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}

.legal-content h3 {
  margin-top: 28px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content li {
  margin-bottom: 10px;
}

.legal-callout {
  margin: 28px 0;
  padding: 24px;
  border-left: 3px solid var(--copper);
  background: var(--stone);
}

.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.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-band {
  padding: 72px 0;
  background: var(--copper);
  color: rgba(255, 255, 255, 0.82);
}

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

.cta-band h2 {
  max-width: 850px;
  margin-bottom: 12px;
  color: white;
}

.site-footer {
  padding: 76px 0 24px;
  background: #111714;
  color: rgba(255, 255, 255, 0.62);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 54px;
  padding-bottom: 62px;
}

.footer-brand .brand-name,
.footer-brand a,
.footer-column strong {
  color: white;
}

.footer-brand p {
  max-width: 350px;
  margin: 22px 0 0;
}

.footer-column strong {
  display: block;
  margin-bottom: 18px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 10px 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: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.cookie-notice {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  display: grid;
  width: min(440px, calc(100vw - 44px));
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: var(--ink);
  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: var(--stone);
  opacity: 1;
  transition: opacity 420ms ease, visibility 420ms ease;
}

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

.loader-panel {
  position: relative;
  display: grid;
  place-items: center;
  width: min(420px, 82vw);
  min-height: 240px;
  text-align: center;
}

.loader-panel::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(24, 32, 29, 0.11) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  content: "";
  mask-image: radial-gradient(circle, black, transparent 72%);
}

.loader-content {
  position: relative;
}

.loader-content .brand-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
}

.loader-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.loader-line {
  width: 160px;
  height: 2px;
  margin: 22px auto 0;
  background: rgba(24, 32, 29, 0.14);
  overflow: hidden;
}

.loader-line::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--copper);
  content: "";
  transform: translateX(-100%);
  animation: loaderLine 260ms ease forwards;
}

.site-loader.is-first .loader-line::after {
  animation-duration: 1050ms;
}

@keyframes loaderLine {
  to { transform: translateX(0); }
}

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

.route-loader .brand-mark {
  width: 52px;
  height: 52px;
  animation: routePulse 600ms ease infinite alternate;
}

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

@keyframes routePulse {
  from { transform: scale(0.92); opacity: 0.64; }
  to { transform: scale(1.02); 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: 70vh;
  place-items: center;
  padding: 80px 24px;
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--copper);
  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: 1120px) {
  .nav-shell {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
    grid-column: 3;
  }

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

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 1.8rem;
    text-decoration: none;
  }

  .mobile-menu .button {
    width: fit-content;
    margin-top: 28px;
    border-bottom: 1px solid var(--ink);
    font-family: var(--sans);
    font-size: 0.78rem;
  }

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

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

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

  .process-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }

  .process-path::before {
    display: none;
  }

  .service-content-grid {
    grid-template-columns: 1fr;
  }

  .service-aside {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  body {
    font-size: 16px;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-inner > p,
  .topbar-links a:first-child {
    display: none;
  }

  .nav-shell {
    min-height: 80px;
  }

  .mobile-menu {
    inset: 122px 0 0;
  }

  .hero,
  .page-hero,
  .service-hero {
    padding-top: 22px;
  }

  .hero-grid,
  .page-hero-grid,
  .service-hero-grid {
    border-radius: var(--radius);
  }

  .hero-copy,
  .page-hero-copy,
  .service-hero-copy {
    padding: 40px 26px 44px;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .service-hero-copy h1,
  h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

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

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

  .fact {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .section-head,
  .cta-band-inner,
  .price-panel,
  .footer-bottom {
    align-items: start;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .section-head {
    display: block;
  }

  .section-head > :last-child {
    margin-top: 22px;
  }

  .image-frame {
    min-height: 430px;
  }

  .process-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scope-connector {
    align-items: flex-start;
    flex-direction: column;
    border-radius: var(--radius);
  }

  .price-panel {
    display: grid;
  }

  .legal-index,
  .service-aside {
    position: static;
  }

  .legal-title-inner::after {
    display: none;
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-bottom {
    display: flex;
  }
}

@media (max-width: 560px) {
  .brand-sub {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .hero-actions,
  .cookie-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .cookie-actions .button {
    width: 100%;
  }

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

  .service-grid,
  .process-path,
  .detail-list,
  .form-grid,
  .service-meta {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-rows: 210px 1fr;
  }

  .service-content-grid {
    gap: 44px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

@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;
  }
}
