:root {
  --ink: #11160f;
  --ink-2: #182014;
  --ink-soft: #30382a;
  --text: #171a14;
  --muted: #636b58;
  --subtle: #7f8874;
  --line: rgba(23, 26, 20, 0.12);
  --line-strong: rgba(148, 163, 107, 0.32);
  --surface: #f7f8f3;
  --paper: #ffffff;
  --paper-2: #f0f3ea;
  --accent: #8f9f63;
  --accent-dark: #5f6f40;
  --accent-soft: #eef3df;
  --accent-bright: #c4d88e;
  --sage: #8c9565;
  --sage-soft: #edf1e3;
  --shadow: 0 22px 70px rgba(17, 22, 15, 0.12);
  --shadow-soft: 0 16px 40px rgba(17, 22, 15, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--surface);
  font-family: "Aptos", "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 999;
  background: var(--accent);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }
:focus-visible {
  outline: 3px solid rgba(148, 163, 107, 0.72);
  outline-offset: 4px;
}

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.section-tint { background: var(--paper); }
.personal-approach {
  background: linear-gradient(120deg, var(--accent-soft), #f6f8f0);
  border-block: 1px solid var(--line-strong);
}
.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #f7f9f1;
}
.section-dark::before {
  content: none;
}
.section-dark > .container { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-dark .eyebrow { color: #c4d88e; }
.hero .eyebrow { color: var(--accent-dark); }
h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Segoe UI Variable Display", "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: 0;
}
h1 { font-size: clamp(3rem, 6.2vw, 6.4rem); max-width: 980px; }
h2 { font-size: clamp(2rem, 3.6vw, 4rem); }
h3 { font-size: clamp(1.18rem, 1.7vw, 1.55rem); line-height: 1.18; }
p { margin: 0 0 1rem; }
.lead {
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  color: var(--muted);
  max-width: 720px;
}
.section-dark h1,
.section-dark h2,
.section-dark h3 { color: #f7f9f1; }
.hero h1,
.hero h2,
.hero h3 { color: var(--ink); }
.section-dark .lead { color: rgba(235, 241, 224, .80); }
.hero .lead { color: var(--muted); }
.muted { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 243, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 26, 20, 0.08);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.site-header.scrolled {
  border-color: rgba(23, 26, 20, 0.14);
  box-shadow: 0 12px 35px rgba(17, 22, 15, .08);
  background: rgba(247, 248, 243, 0.94);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  max-width: 200px;
  padding: 7px 10px;
  border: 1px solid rgba(23, 26, 20, .10);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(17,22,15,.06);
  flex-shrink: 0;
}
.brand img { width: 166px; height: auto; }
.nav { display: flex; align-items: center; gap: 10px; }
.nav a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 720;
  color: var(--ink-soft);
  padding: 10px 12px;
  border-radius: 999px;
}
.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(148, 163, 107, .14);
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 820;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: #10140c;
  box-shadow: 0 12px 28px rgba(148, 163, 107, .26);
}
.btn-primary:hover { box-shadow: 0 16px 36px rgba(148, 163, 107, .34); }
.btn-secondary {
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
  color: #f7f9f1;
}
.btn-secondary:hover { border-color: rgba(196,216,142,.58); background: rgba(255,255,255,.12); }
.btn-light { background: #f7f9f1; color: var(--ink); }
.btn-small { min-height: 42px; padding-inline: 16px; font-size: .9rem; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero .btn-secondary {
  border-color: rgba(23,26,20,.18);
  background: rgba(255,255,255,.72);
  color: var(--ink);
}
.hero .btn-secondary:hover {
  border-color: rgba(148,163,107,.48);
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 78px 0 90px;
  background:
    radial-gradient(circle at 82% 12%, rgba(196,216,142,.34), transparent 32%),
    radial-gradient(circle at 8% 82%, rgba(143,159,99,.18), transparent 34%),
    linear-gradient(135deg, #fbfcf7 0%, #f3f6ec 54%, #edf2df 100%);
}
.hero::before {
  content: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hero-copy {
  max-width: 1120px;
}
.hero h1 {
  font-size: clamp(4.4rem, 11vw, 10.6rem);
  max-width: 1120px;
  line-height: .92;
}
.hero h1 span {
  position: relative;
  display: inline-block;
  margin-top: .08em;
  color: #4f6034;
  background: none;
  text-shadow: 0 1px 0 rgba(255,255,255,.72);
}
.hero-copy .lead { margin-top: 30px; max-width: 760px; }
.hero-note {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: .94rem;
}
.hero-note::before { content: none; }
.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.service-strip span,
.tech-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(148,163,107,.28);
  background: rgba(255,255,255,.66);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: .86rem;
  font-weight: 760;
}
.trust-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; padding: 26px 0; }
.trust-label {
  font-size: 1.08rem;
  font-weight: 820;
  color: var(--ink);
}
.trust-item {
  padding-left: 18px;
  border-left: 1px solid var(--line);
  font-size: .92rem;
  color: var(--muted);
}
.trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 850;
  line-height: 1.2;
}
.trust-item span {
  display: block;
  line-height: 1.45;
}

.section-head { display: flex; justify-content: space-between; gap: 40px; align-items: end; margin-bottom: 46px; }
.section-head > div:first-child { max-width: 760px; }
.section-head .lead { max-width: 470px; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 286px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card::before {
  content: none;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(148,163,107,.42); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 34px; }
.service-icon,
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.card-number { background: transparent; color: var(--subtle); min-width: auto; height: auto; }
.card h3 { margin-bottom: 14px; }
.card p { color: var(--muted); margin-bottom: 0; }
.card-link { display: inline-flex; margin-top: 20px; text-decoration: none; font-weight: 820; color: var(--accent-dark); }
.card-link:hover { text-decoration: underline; }
.card.span-2 { grid-column: span 2; }

.split { display: grid; grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: 78px; align-items: center; }
.visual-panel {
  min-height: 500px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 70% 25%, rgba(148,163,107,.22), transparent 25%),
    linear-gradient(135deg, #f1f4ea, #ffffff);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.visual-panel::before {
  content: none;
}
.insight-graphic-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.insight-graphic-panel img {
  width: min(100%, 720px);
  height: auto;
  filter: drop-shadow(0 24px 42px rgba(17,22,15,.12));
}
.metric-card {
  position: absolute;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}
.metric-card strong { display: block; font-size: 1.75rem; line-height: 1.1; color: var(--ink); }
.metric-card small { color: var(--muted); }
.metric-one { left: 46px; bottom: 58px; }
.metric-two { right: 42px; top: 72px; }
.check-list { list-style: none; margin: 32px 0 0; padding: 0; display: grid; gap: 18px; }
.check-list li { display: grid; grid-template-columns: 28px 1fr; gap: 12px; align-items: start; }
.check-list li::before {
  content: "";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  margin-top: 2px;
}

.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step {
  counter-increment: step;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 22px;
  background: rgba(255,255,255,.045);
}
.process-step::before {
  content: "0" counter(step);
  display: block;
  color: #c4d88e;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .12em;
  margin-bottom: 42px;
}
.process-step p { color: rgba(235,241,224,.70); margin-top: 12px; }
.process-step.reveal {
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--process-delay, 0ms);
  will-change: opacity, transform;
}
.process-step.reveal.visible { transform: translateY(0); will-change: auto; }

.cta {
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(196,216,142,.24), transparent 28%),
    linear-gradient(135deg, var(--ink), #253018);
  color: #f7f9f1;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow);
}
.cta h2 { max-width: 760px; color: #f7f9f1; }
.cta p { margin-top: 18px; max-width: 680px; color: rgba(235,241,224,.76); }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 76px;
  background:
    radial-gradient(circle at 85% 8%, rgba(148,163,107,.20), transparent 28%),
    linear-gradient(135deg, #f9faf4, #f0f3ea);
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lead { margin-top: 24px; }
.breadcrumb { display: flex; gap: 9px; align-items: center; margin-bottom: 34px; font-size: .9rem; color: var(--muted); }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.services-page {
  background: #f5f6f2;
}
.services-hero {
  text-align: center;
  padding: 96px 0 82px;
  background: linear-gradient(180deg, #fbfcf8 0%, #f5f6f2 100%);
}
.services-hero .container {
  max-width: 980px;
}
.services-hero h1 {
  margin-inline: auto;
  font-size: clamp(3.2rem, 6.4vw, 6.8rem);
  line-height: .96;
}
.services-hero .lead {
  margin-inline: auto;
  font-size: clamp(1.12rem, 1.6vw, 1.38rem);
  color: #5f6758;
}
.services-hero .breadcrumb {
  justify-content: center;
  margin-bottom: 28px;
}
.services-showcase {
  padding-top: 28px;
  background: #f5f6f2;
}
.services-list {
  display: grid;
  gap: 16px;
}
.service-detail {
  display: grid;
  grid-template-columns: minmax(170px, .34fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  padding: clamp(30px, 5.4vw, 66px);
  border: 1px solid rgba(23,26,20,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 42px rgba(17,22,15,.055);
}
.service-detail:nth-child(even) { background: #fbfcf8; }
.service-detail:last-child { border-bottom: 1px solid rgba(23,26,20,.08); }
.service-detail h2 {
  font-size: clamp(2.05rem, 3.4vw, 4.2rem);
  letter-spacing: 0;
}
.service-detail .lead {
  margin-top: 16px;
  font-size: clamp(1.04rem, 1.3vw, 1.22rem);
  color: #61695b;
}
.service-detail h3 {
  font-size: .82rem;
  font-weight: 850;
  margin: 30px 0 14px;
  color: var(--ink-soft);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-detail ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  columns: 2;
  column-gap: 14px;
  color: #4f574a;
}
.service-detail li {
  margin: 0 0 10px;
  padding: 12px 14px;
  break-inside: avoid;
  border: 1px solid rgba(23,26,20,.08);
  border-radius: 8px;
  background: rgba(247,248,243,.74);
  font-size: .95rem;
  line-height: 1.35;
}
.service-photo,
.about-photo {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(148,163,107,.26);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}
.service-photo {
  aspect-ratio: 3 / 1.25;
  margin: 30px 0 12px;
  border-radius: 8px;
}
.about-photo {
  aspect-ratio: 4 / 3;
  margin-top: 30px;
}
.service-photo::after,
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(17,22,15,.04), rgba(17,22,15,.30));
}
.service-photo-dark::after,
.about-photo::after {
  background: linear-gradient(120deg, rgba(17,22,15,.16), rgba(17,22,15,.44));
}
.service-photo img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(1.04);
}
.service-photo img { object-position: center 48%; }
.service-photo-dark img,
.about-photo img { object-position: center; }
.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(148,163,107,.12);
  color: #536233;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(17,22,15,.05);
}
.value p { color: var(--muted); margin-top: 12px; }

/* About page */
.about-hero { padding-block: clamp(68px, 8vw, 106px); }
.about-hero h1 { max-width: 900px; font-size: clamp(3rem, 6.4vw, 6.7rem); }
.about-hero .lead { max-width: 760px; }
.about-purpose { padding-block: clamp(76px, 9vw, 118px); }
.about-editorial-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(48px, 9vw, 118px); align-items: start; }
.about-editorial-grid h2 { max-width: 540px; }
.about-copy { max-width: 680px; }
.about-copy p:last-child { margin-bottom: 0; }
.about-section-intro { max-width: 720px; margin-bottom: 54px; }
.about-principles { padding-block: clamp(78px, 9vw, 112px); }
.principle-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 1px solid var(--line); }
.principle { padding: 30px 28px 4px 0; border-right: 1px solid var(--line); }
.principle + .principle { padding-left: 28px; }
.principle:last-child { border-right: 0; padding-right: 0; }
.principle > span { display: block; margin-bottom: 32px; color: var(--accent-dark); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.principle h3 { margin-bottom: 13px; }
.principle p { margin: 0; color: var(--muted); font-size: .95rem; }
.about-connected { padding-block: clamp(82px, 10vw, 126px); }
.about-connected .about-copy p:last-child { color: rgba(235,241,224,.72); }
.about-fit { padding-block: clamp(78px, 9vw, 118px); }
.about-two-up { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(38px, 7vw, 90px); }
.about-list-panel h2 { max-width: 520px; font-size: clamp(2rem, 3.3vw, 3.5rem); }
.about-expect { padding: clamp(30px, 4vw, 48px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-soft); }
.editorial-list { list-style: none; padding: 0; margin: 38px 0 0; border-top: 1px solid var(--line); }
.editorial-list li { position: relative; padding: 17px 8px 17px 24px; border-bottom: 1px solid var(--line); color: var(--ink-soft); font-weight: 700; }
.editorial-list li::before { content: ""; position: absolute; left: 2px; top: 26px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.editorial-list-short li { padding-block: 14px; }
.editorial-list-short li::before { top: 23px; }
.about-cta-section { padding-top: 20px; }

.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 70px; align-items: start; }
.contact-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
label { font-size: .9rem; font-weight: 780; color: var(--ink-soft); }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(23,26,20,.16);
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(148,163,107,.18);
}
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; }
.contact-points { margin-top: 34px; display: grid; gap: 16px; }
.contact-point {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: var(--paper);
}
.contact-point strong { display: block; margin-bottom: 4px; color: var(--ink); }

.legal {
  max-width: 860px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 54px);
  box-shadow: var(--shadow-soft);
}
.legal h1 { font-size: clamp(2.5rem, 5vw, 4.6rem); }
.legal h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); margin-top: 42px; }
.legal h3 { font-weight: 850; font-size: 1.15rem; margin-top: 30px; }
.legal p, .legal li { color: var(--muted); }
.legal-note {
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  border-radius: 0 14px 14px 0;
  margin: 24px 0;
  color: var(--ink-soft);
}

.site-footer {
  background: #11160f;
  color: rgba(235,241,224,.76);
  padding: 70px 0 28px;
}
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(120px, .55fr)); gap: clamp(28px, 4vw, 60px); }
.footer-brand { color: white; font-weight: 850; font-size: 1.35rem; margin-bottom: 16px; }
.footer-copy { max-width: 470px; }
.footer-title { color: white; font-weight: 850; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: white; }
.footer-social-links a { width: fit-content; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.13);
  font-size: .84rem;
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
.home-section-reveal { opacity: 0; transform: translateY(26px); transition: opacity .72s ease, transform .72s cubic-bezier(.22, 1, .36, 1); }
.home-section-reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav.open { display: flex; }
  .nav .btn { width: 100%; }
  .hero { min-height: auto; }
  .hero-grid, .split, .contact-layout { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .section-head { display: block; }
  .section-head .lead { margin-top: 22px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .cta { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 38px 28px; }
  .principle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .principle:nth-child(2) { border-right: 0; padding-right: 0; }
  .principle:nth-child(3), .principle:nth-child(4) { border-top: 1px solid var(--line); }
  .principle:nth-child(3) { padding-left: 0; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 52px 0; }
  .nav-wrap { min-height: 74px; }
  .brand { max-width: 176px; padding: 6px 8px; }
  .brand img { width: 148px; }
  .nav { top: 72px; left: 14px; right: 14px; }
  .hero { padding: 54px 0 70px; }
  .hero-grid { gap: 42px; }
  .hero h1 { font-size: clamp(3.85rem, 16vw, 6.2rem); }
  .trust-grid, .cards, .values, .process, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .trust-item { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 14px; }
  .card.span-2 { grid-column: auto; }
  .card { min-height: auto; }
  .visual-panel { min-height: 410px; }
  .insight-graphic-panel { min-height: auto; }
  .insight-graphic-panel img { width: min(100%, 560px); }
  .metric-one { left: 22px; bottom: 30px; }
  .metric-two { right: 20px; top: 34px; }
  .cta { padding: 34px 24px; border-radius: 20px; }
  .service-detail ul { columns: 1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 64px 0 48px; }
  .service-photo { aspect-ratio: 4 / 3; }
  .about-editorial-grid, .about-two-up { grid-template-columns: 1fr; }
  .about-editorial-grid { gap: 32px; }
  .about-section-intro { margin-bottom: 36px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle, .principle + .principle { padding: 25px 0; border-right: 0; border-top: 1px solid var(--line); }
  .principle:first-child { border-top: 0; }
  .principle > span { margin-bottom: 18px; }
  .about-expect { padding: 28px 22px; }
  .about-cta-section { padding-top: 0; }
}

@media (max-width: 420px) {
  .btn { width: 100%; white-space: normal; text-align: center; }
  .actions { width: 100%; }
  .brand img { width: 136px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .home-section-reveal { opacity: 1; transform: none; }
  .process-step.reveal { transition-delay: 0ms; will-change: auto; }
}

/* Work, trust and commercial-information additions */
.hidden-content { display: none !important; }
.text-link { color: var(--ink); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 5px; }
.text-link::after, .card-link::after { content: " →"; display: inline-block; transition: transform .2s ease; }
.text-link:hover::after, .card-link:hover::after { transform: translateX(4px); }
.hero { padding-top: clamp(72px, 10vw, 128px); padding-bottom: clamp(72px, 10vw, 128px); }
.hero-copy .lead { max-width: 660px; margin-top: 24px; }
.brand { width: clamp(168px, 16vw, 220px); padding: 6px 0; }
.brand img { width: 100%; height: auto; display: block; }
.selected-work .section-head { align-items: end; }
.work-list { display: grid; gap: 32px; }
.work-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 420px; background: #fff; border: 1px solid var(--line); border-radius: 28px; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.work-card:hover, .project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-soft); border-color: rgba(148,163,107,.5); }
.work-card-reverse .project-placeholder,
.work-card-reverse .project-media { order: 2; }
.work-copy { align-self: center; padding: clamp(30px, 5vw, 64px); }
.work-copy h3 { font-size: clamp(1.8rem, 3vw, 3rem); }
.project-placeholder { min-height: 330px; padding: clamp(24px, 5vw, 56px); display: flex; flex-direction: column; justify-content: space-between; color: #f7f8f2; background: linear-gradient(145deg, #202a1d, #65764e); text-decoration: none; overflow: hidden; transition: filter .2s ease; }
.project-placeholder-alt { background: linear-gradient(145deg, #4b573c, #a2ad81); }
.project-media {
  position: relative;
  display: block;
  min-height: 330px;
  overflow: hidden;
  background: #111;
  text-decoration: none;
}
.project-media img,
.project-media iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
  object-fit: cover;
  object-position: top center;
}
.project-media-link { position: absolute; inset: 0; z-index: 1; }
.project-media-live-card { aspect-ratio: 16 / 10; min-height: 0; }
.project-media-live-card iframe {
  position: absolute;
  inset: 0 auto auto 0;
  width: 1280px;
  height: 800px;
  min-height: 0;
  pointer-events: none;
  transform: scale(var(--preview-scale, .45));
  transform-origin: top left;
}
.project-media-live iframe { pointer-events: none; }
.project-media-live.is-interactive iframe { pointer-events: auto; }
.work-card > .project-media { min-height: 420px; }
.work-card > .project-media-live-card { min-height: 0; }
.project-card > .project-media { aspect-ratio: 16 / 10; }
.project-media-seo { background: #202124; }
.project-media-seo img { object-fit: contain; object-position: top center; }
.project-showcase { min-height: 520px; border-radius: 28px; box-shadow: var(--shadow-soft); }
.project-showcase iframe { min-height: 680px; background: #fff; }
.preview-heading { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 18px; }
.preview-heading .eyebrow, .preview-heading .card-link { margin: 0; }
.preview-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; }
.preview-toggle {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .84rem;
  font-weight: 800;
  cursor: pointer;
}
.preview-toggle[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.project-visit-link { margin-top: 24px; }
.project-placeholder > span { font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.placeholder-window { width: 88%; min-height: 190px; margin: 34px auto -70px; border: 8px solid rgba(255,255,255,.9); border-bottom: 0; border-radius: 18px 18px 0 0; background: rgba(243,246,236,.9); box-shadow: 0 25px 60px rgba(0,0,0,.22); padding: 18px; transition: transform .3s ease; }
.project-placeholder:hover .placeholder-window, .work-card:hover .placeholder-window { transform: translateY(-5px); }
.placeholder-window i { display: block; height: 12px; margin-bottom: 14px; border-radius: 10px; background: rgba(63,75,52,.2); }
.placeholder-window i:nth-child(2) { width: 70%; height: 54px; background: rgba(148,163,107,.45); }
.placeholder-window i:nth-child(3) { width: 48%; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0; }
.tag-list span { padding: 7px 11px; border-radius: 999px; background: var(--accent-soft); color: var(--ink); font-size: .76rem; font-weight: 750; }
.engagement-grid, .deliverable-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.engagement-grid article, .deliverable-grid > div { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 0; }
.faq-list summary { cursor: pointer; list-style: none; padding: 22px 44px 22px 0; font-weight: 820; position: relative; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 18px; font-size: 1.5rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 40px 22px 0; margin: 0; }
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 28px; }
.project-card { border: 1px solid var(--line); border-radius: 28px; background: #fff; overflow: hidden; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.project-card-copy { padding: clamp(26px, 4vw, 44px); }
.project-card-copy h2 { font-size: clamp(1.65rem, 2.6vw, 2.5rem); }
.work-hero, .project-hero { padding: clamp(56px, 7vw, 82px) 0 clamp(44px, 6vw, 64px); }
.work-hero h1, .project-hero h1 { max-width: 860px; font-size: clamp(2.5rem, 4.8vw, 4.8rem); }
.project-facts { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 46px; }
.project-facts div { padding-top: 16px; border-top: 1px solid var(--line); }
.project-facts dt { font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 850; color: var(--muted); }
.project-facts dd { margin: 8px 0 0; font-weight: 750; }
.project-story { display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(40px, 8vw, 100px); }
.project-copy-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(40px, 8vw, 100px); align-items: start; }
.project-copy-section h2 { margin-bottom: 14px; font-size: clamp(1.55rem, 2.6vw, 2.35rem); }
.project-copy-section p { max-width: 680px; color: var(--muted); }
.project-deliverables-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; max-width: 900px; padding: 0; margin: 24px 0 0; list-style: none; }
.project-deliverables-list li { position: relative; padding: 12px 0 12px 22px; border-top: 1px solid var(--line); font-weight: 750; }
.project-deliverables-list li::before { content: ""; position: absolute; left: 0; top: 20px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.project-focus-list { display: grid; gap: 18px; margin-top: 16px; }
.project-focus-list article { padding-top: 16px; border-top: 1px solid var(--line); }
.project-focus-list h3 { margin-bottom: 5px; font-size: 1rem; }
.project-focus-list p { margin: 0; color: var(--muted); }
.project-visual-large { min-height: 520px; border-radius: 28px; }
.project-visual-large .placeholder-window { max-width: 760px; min-height: 330px; }
:focus-visible { outline: 3px solid #768558; outline-offset: 4px; }
@media (max-width: 760px) {
  .work-card, .work-grid, .faq-layout, .project-story, .project-copy-grid, .project-deliverables-list { grid-template-columns: 1fr; }
  .work-card-reverse .project-placeholder,
  .work-card-reverse .project-media { order: 0; }
  .engagement-grid, .deliverable-grid, .project-facts { grid-template-columns: 1fr; }
  .project-placeholder { min-height: 270px; }
  .project-visual-large { min-height: 360px; }
  .work-card > .project-media { min-height: 300px; }
  .project-showcase, .project-showcase iframe { min-height: 560px; }
  .preview-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .brand { width: 172px; }
}
@media (max-width: 340px) {
  .project-placeholder, .work-copy, .project-card-copy { padding: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .text-link::after, .card-link::after, .placeholder-window, .work-card, .project-card { transition: none; }
}

/* Compact services page */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.services-overview {
  padding: 0 0 28px;
  background: #f5f6f2;
}
.service-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  transform: translateY(-28px);
  margin-bottom: -28px;
}
.service-overview-card {
  min-height: 176px;
  padding: 22px;
  border: 1px solid rgba(23,26,20,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 34px rgba(17,22,15,.07);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-overview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(148,163,107,.5);
  box-shadow: var(--shadow-soft);
}
.service-overview-card > span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .1em;
}
.service-overview-card h3 { margin-bottom: 8px; }
.service-overview-card p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.5;
}
.services-showcase { padding: 24px 0 20px; }
.services-list { gap: 12px; }
.service-detail {
  grid-template-columns: minmax(150px, .28fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(28px, 4vw, 48px);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(17,22,15,.045);
  scroll-margin-top: 98px;
}
.service-detail h2 { font-size: clamp(1.9rem, 3vw, 3.5rem); }
.service-detail h3 { margin: 24px 0 12px; }
.service-detail li {
  margin-bottom: 8px;
  padding: 10px 13px;
}
.technical-support-section {
  padding: 20px 0 28px;
  background: #f5f6f2;
}
.technical-support {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(148,163,107,.25);
  border-radius: 12px;
  background: var(--accent-soft);
  scroll-margin-top: 98px;
}
.technical-support h2 { font-size: clamp(1.75rem, 2.6vw, 2.8rem); }
.technical-support-copy > p:last-child {
  margin: 14px 0 0;
  color: var(--muted);
}
.technical-support ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.technical-support li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-top: 1px solid rgba(23,26,20,.12);
  color: var(--ink-soft);
  font-size: .94rem;
  font-weight: 700;
}
.technical-support li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-dark);
}
.services-cta-section { padding: 52px 0 72px; }

@media (max-width: 980px) {
  .service-overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-detail, .technical-support { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .services-hero { padding: 68px 0 58px; }
  .services-overview { padding-bottom: 18px; }
  .service-overview-grid {
    grid-template-columns: 1fr;
    transform: none;
    margin: 0;
    gap: 10px;
  }
  .service-overview-card { min-height: auto; padding: 18px 20px; }
  .service-overview-card > span { margin-bottom: 12px; }
  .services-showcase { padding-top: 16px; }
  .service-detail { padding: 26px 22px; }
  .technical-support-section { padding-top: 12px; }
  .technical-support { padding: 26px 22px; }
  .technical-support ul { grid-template-columns: 1fr; }
  .services-cta-section { padding: 42px 0 56px; }
}
