:root {
  --ink: #07110f;
  --graphite: #111917;
  --deep: #172622;
  --paper: #f6f8ef;
  --paper-strong: #e9efe2;
  --white: #fffefa;
  --mist: #e5eadf;
  --muted: #66726c;
  --line: rgba(7, 17, 15, 0.14);
  --lime: #c8ff4d;
  --coral: #ff6b4a;
  --blue: #4472ff;
  --sage: #6f9583;
  --gold: #f5c45b;
  --shadow: 0 28px 80px rgba(7, 17, 15, 0.16);
  --shadow-strong: 0 34px 90px rgba(7, 17, 15, 0.28);
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(7, 17, 15, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 17, 15, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 58px 58px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

::selection {
  color: var(--ink);
  background: var(--lime);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--lime), var(--coral), var(--blue));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 74px;
  padding: 12px 28px;
  background: rgba(246, 248, 239, 0.78);
  backdrop-filter: blur(22px) saturate(1.2);
  border-bottom: 1px solid rgba(7, 17, 15, 0.1);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(246, 248, 239, 0.9);
  box-shadow: 0 14px 38px rgba(7, 17, 15, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-weight: 950;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12), 0 14px 28px rgba(7, 17, 15, 0.18);
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 64%;
  background: linear-gradient(90deg, var(--lime), var(--coral));
  transform: rotate(-10deg);
  opacity: 0.78;
  z-index: -1;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
  font-weight: 950;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 8px;
  color: rgba(7, 17, 15, 0.68);
  font-size: 0.94rem;
  font-weight: 850;
  overflow: hidden;
}

.site-nav a::before {
  content: "";
  position: absolute;
  inset: auto 12px 7px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 254, 250, 0.66);
}

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

.header-call {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(7, 17, 15, 0.14);
  border-radius: 8px;
  font-weight: 950;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 32px rgba(7, 17, 15, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(7, 17, 15, 0.12);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(7, 17, 15, 0.14);
  border-radius: 8px;
  background: var(--white);
  padding: 11px;
  box-shadow: 0 12px 28px rgba(7, 17, 15, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 88vh;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  pointer-events: none;
}

.hero::after {
  content: "2F";
  position: absolute;
  right: -0.12em;
  bottom: -0.34em;
  z-index: 1;
  color: rgba(255, 254, 250, 0.08);
  font-size: clamp(13rem, 28vw, 34rem);
  line-height: 1;
  font-weight: 950;
  pointer-events: none;
}

.hero picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.045);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 17, 15, 0.9), rgba(7, 17, 15, 0.66) 43%, rgba(7, 17, 15, 0.08) 82%),
    linear-gradient(0deg, rgba(7, 17, 15, 0.56), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  min-height: 88vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
  padding: 82px 0 96px;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-strip .eyebrow,
.offer-hero .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7vw, 6.7rem);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4.25rem);
  line-height: 0.94;
  font-weight: 950;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.16;
  font-weight: 950;
}

.hero-lede {
  max-width: 690px;
  font-size: clamp(1.06rem, 1.5vw, 1.32rem);
  color: rgba(255, 254, 250, 0.82);
}

.hero .eyebrow,
.hero h1,
.hero-lede,
.hero-actions {
  animation: heroSlideIn 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero h1 {
  animation-delay: 80ms;
}

.hero-lede {
  animation-delay: 170ms;
}

.hero-actions {
  animation-delay: 260ms;
}

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

.btn {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 950;
  cursor: pointer;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 32%, rgba(255, 255, 255, 0.3) 45%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform 620ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(7, 17, 15, 0.16);
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn.primary {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.btn.primary:hover {
  background: #b9f23e;
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(255, 254, 250, 0.44);
  background: rgba(255, 254, 250, 0.08);
  backdrop-filter: blur(12px);
}

.btn.dark {
  color: var(--white);
  background: var(--ink);
  border-color: rgba(255, 254, 250, 0.18);
}

.proof-band {
  position: relative;
  z-index: 4;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  transform: translateY(-34px);
}

.proof-item {
  min-height: 126px;
  padding: 24px;
  color: var(--white);
  background: linear-gradient(145deg, rgba(17, 25, 23, 0.98), rgba(23, 38, 34, 0.92));
  border: 1px solid rgba(255, 254, 250, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.proof-item:nth-child(2) {
  background: linear-gradient(145deg, #f7ffdb, #ffffff);
  color: var(--ink);
}

.proof-item:nth-child(3) {
  background: linear-gradient(145deg, #ffe1d7, #fffdfa);
  color: var(--ink);
}

.proof-item strong {
  display: block;
  font-size: 2.25rem;
  line-height: 1;
  font-weight: 950;
}

.proof-item span {
  display: block;
  margin-top: 10px;
  color: currentColor;
  opacity: 0.74;
  font-weight: 850;
}

.section {
  position: relative;
  padding: 96px 24px;
}

.section.muted,
.muted {
  background: rgba(233, 239, 226, 0.72);
}

.section-heading {
  width: min(var(--max), 100%);
  margin: 0 auto 38px;
}

.section-heading h2,
.section-heading p {
  max-width: 820px;
}

.intro-grid,
.service-grid,
.timeline,
.evidence-grid,
.portfolio-grid,
.offer-grid,
.legal-grid,
.contact-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 24px;
  align-items: stretch;
}

.intro-copy {
  font-size: 1.12rem;
  color: var(--muted);
  column-count: 2;
  column-gap: 34px;
}

.quote-panel,
.method-panel,
.contact-panel,
.contact-form,
.testimonial {
  border: 1px solid rgba(7, 17, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.78);
  backdrop-filter: blur(16px);
}

.quote-panel {
  position: relative;
  padding: 30px;
  box-shadow: var(--shadow);
}

.quote-panel::before {
  content: "";
  display: block;
  width: 54px;
  height: 5px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--coral), var(--lime));
  border-radius: 999px;
}

.quote-panel p {
  margin-bottom: 16px;
  font-size: 1.55rem;
  line-height: 1.14;
  font-weight: 950;
}

.quote-panel span,
.testimonial span {
  color: var(--muted);
  font-weight: 850;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card,
.offer-card,
.metric-block,
.portfolio-card {
  position: relative;
  border: 1px solid rgba(7, 17, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.82);
  overflow: hidden;
  box-shadow: 0 18px 54px rgba(7, 17, 15, 0.07);
}

.service-card,
.offer-card,
.metric-block {
  padding: 28px;
}

.service-card::before,
.offer-card::before,
.metric-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--lime), var(--coral), var(--blue));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 360ms ease;
}

.service-card:hover,
.offer-card:hover,
.metric-block:hover,
.portfolio-card:hover {
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(-6px);
  box-shadow: 0 26px 72px rgba(7, 17, 15, 0.14);
}

.service-card:hover::before,
.offer-card:hover::before,
.metric-block:hover::before {
  transform: scaleY(1);
}

.service-kicker,
.offer-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 8px;
  font-weight: 950;
}

.service-card p,
.offer-card p,
.metric-block p,
.timeline-step p,
.method-panel p {
  color: var(--muted);
}

.image-band {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  background: var(--graphite);
  color: var(--white);
  overflow: hidden;
}

.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 254, 250, 0.04) 0 1px, transparent 1px 84px),
    linear-gradient(120deg, rgba(200, 255, 77, 0.14), transparent 42%);
  pointer-events: none;
}

.image-band picture,
.image-band img {
  height: 100%;
}

.image-band img {
  object-fit: cover;
  min-height: 560px;
  filter: saturate(0.96) contrast(1.05);
}

.image-band-copy {
  position: relative;
  z-index: 1;
  padding: 86px 9vw;
  align-self: center;
}

.image-band-copy p:not(.eyebrow) {
  color: rgba(255, 254, 250, 0.76);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--lime);
  font-weight: 950;
  border-bottom: 2px solid currentColor;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, var(--lime), var(--coral), var(--blue));
}

.timeline-step {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(7, 17, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.84);
  box-shadow: 0 18px 54px rgba(7, 17, 15, 0.07);
}

.timeline-step span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-weight: 950;
  box-shadow: 0 0 0 8px var(--paper);
}

.cta-strip {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 20px auto 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 38px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(200, 255, 77, 0.13), transparent 34%),
    linear-gradient(315deg, rgba(255, 107, 74, 0.16), transparent 42%),
    var(--ink);
  border: 1px solid rgba(255, 254, 250, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--lime), var(--coral), var(--blue));
}

.cta-strip h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
}

.site-footer {
  padding: 60px 24px 24px;
  color: rgba(255, 254, 250, 0.82);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--ink);
  background-size: 64px 64px;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  gap: 34px;
}

.site-footer .brand-mark {
  background: var(--white);
  color: var(--ink);
}

.site-footer .brand-copy small,
.site-footer p {
  color: rgba(255, 254, 250, 0.64);
}

.site-footer h2 {
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 38px auto 0;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 254, 250, 0.16);
  color: rgba(255, 254, 250, 0.56);
  font-size: 0.88rem;
}

.footer-bottom a {
  display: inline;
  margin-bottom: 0;
  color: inherit;
  border-bottom: 1px solid currentColor;
}

.page-hero {
  position: relative;
  padding: 118px 24px 78px;
  background:
    linear-gradient(120deg, rgba(200, 255, 77, 0.22), transparent 28%),
    linear-gradient(280deg, rgba(68, 114, 255, 0.14), transparent 38%),
    var(--paper-strong);
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: linear-gradient(90deg, var(--lime), var(--coral), var(--blue));
}

.page-hero.compact {
  padding-bottom: 62px;
}

.offer-hero {
  background:
    repeating-linear-gradient(90deg, rgba(255, 254, 250, 0.06) 0 1px, transparent 1px 72px),
    linear-gradient(130deg, rgba(200, 255, 77, 0.16), transparent 36%),
    var(--ink);
  color: var(--white);
}

.contact-hero {
  background:
    linear-gradient(120deg, rgba(255, 107, 74, 0.14), transparent 36%),
    linear-gradient(280deg, rgba(200, 255, 77, 0.18), transparent 40%),
    var(--paper-strong);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 980px;
  color: inherit;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.14rem;
}

.offer-hero p:not(.eyebrow) {
  color: rgba(255, 254, 250, 0.74);
}

.split {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split picture,
.split img {
  height: 440px;
}

.split picture {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split img {
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.split picture:hover img,
.portfolio-card:hover img {
  transform: scale(1.055);
}

.check-list {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 13px;
  height: 13px;
  border: 3px solid var(--ink);
  background: var(--lime);
  border-radius: 50%;
}

.method-panel {
  min-height: 370px;
  padding: 36px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow);
}

.method-panel.clay {
  background: linear-gradient(145deg, #fffefa, #ffe5dc);
}

.panel-number {
  display: block;
  color: var(--coral);
  font-size: 6.6rem;
  line-height: 0.85;
  font-weight: 950;
}

.evidence-grid,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offer-grid {
  grid-template-columns: repeat(4, 1fr);
}

.metric-block span {
  display: block;
  color: var(--blue);
  font-size: 3.7rem;
  line-height: 1;
  font-weight: 950;
}

.metric-block h2 {
  margin-top: 18px;
  font-size: 1.32rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.portfolio-card {
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.portfolio-card img {
  height: 270px;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-card div {
  padding: 23px;
}

.portfolio-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.testimonial-section {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 620px);
  justify-content: center;
  gap: 54px;
  align-items: center;
  background: var(--paper-strong);
}

.testimonial {
  padding: 36px;
  box-shadow: var(--shadow);
}

.testimonial p {
  font-size: 1.85rem;
  line-height: 1.12;
  font-weight: 950;
}

.blueprint {
  width: min(var(--max), 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.blueprint-line {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.blueprint-line strong {
  font-size: 1.08rem;
  font-weight: 950;
}

.blueprint-line span {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.contact-panel,
.contact-form {
  padding: 30px;
  box-shadow: 0 18px 54px rgba(7, 17, 15, 0.08);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-list a,
.contact-list > span {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 950;
}

.contact-list span span,
.contact-list a span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.full,
.contact-form .btn,
.form-note {
  grid-column: 1 / -1;
}

label {
  font-weight: 950;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(255, 254, 250, 0.88);
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.btn:focus,
.site-nav a:focus,
.header-call:focus,
.nav-toggle:focus {
  outline: 3px solid rgba(200, 255, 77, 0.58);
  outline-offset: 2px;
}

input:focus,
select:focus,
textarea:focus {
  background: var(--white);
  border-color: rgba(7, 17, 15, 0.42);
  box-shadow: 0 0 0 5px rgba(200, 255, 77, 0.18);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.legal-grid div {
  min-height: 112px;
  padding: 18px;
  background: rgba(255, 254, 250, 0.82);
}

.legal-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-grid strong {
  font-size: 1rem;
}

.legal-page-section {
  background: var(--paper);
}

.legal-content {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.legal-content article {
  padding: 28px;
  border: 1px solid rgba(7, 17, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 254, 250, 0.86);
  box-shadow: 0 18px 54px rgba(7, 17, 15, 0.07);
}

.legal-content article h2 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.legal-content article p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  font-weight: 950;
  color: var(--ink);
  border-bottom: 2px solid var(--coral);
}

.legal-content dl {
  margin: 0;
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.legal-content dl div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 15px;
  background: rgba(255, 254, 250, 0.9);
}

.legal-content dt {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-content dd {
  margin: 0;
  font-weight: 850;
}

.legal-updated {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 850;
}

.enhanced .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

.enhanced .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.045) translate3d(-8px, 0, 0);
  }
  to {
    transform: scale(1.085) translate3d(12px, -8px, 0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroSlideIn {
  from {
    opacity: 0.72;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    inset: 74px 12px auto 12px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    background: rgba(255, 254, 250, 0.94);
    border: 1px solid rgba(7, 17, 15, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-strong);
    transform: translateY(-16px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 54px;
    justify-content: center;
  }

  .header-call {
    justify-self: end;
    grid-column: 2;
    grid-row: 1;
  }

  .proof-band,
  .service-grid,
  .timeline,
  .evidence-grid,
  .portfolio-grid,
  .offer-grid,
  .legal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-band,
  .intro-grid,
  .split,
  .split.reverse,
  .contact-grid,
  .testimonial-section {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    column-count: 1;
  }

  .image-band picture {
    min-height: 360px;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 16px;
    gap: 10px;
  }

  .brand-copy small {
    display: none;
  }

  .header-call {
    width: 46px;
    padding: 0;
    justify-content: center;
  }

  .header-call span:last-child {
    display: none;
  }

  .site-nav {
    inset: 70px 10px auto 10px;
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 3.55rem);
    line-height: 0.94;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 0.98;
  }

  .hero,
  .hero-content {
    min-height: 82vh;
  }

  .hero-content {
    width: min(100% - 32px, var(--max));
    padding: 58px 0 74px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 15, 0.9), rgba(7, 17, 15, 0.58)),
      linear-gradient(0deg, rgba(7, 17, 15, 0.45), transparent 44%);
  }

  .hero::before {
    background-size: 46px 46px;
  }

  .proof-band,
  .service-grid,
  .timeline,
  .evidence-grid,
  .portfolio-grid,
  .offer-grid,
  .legal-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .proof-band {
    width: calc(100% - 32px);
    transform: translateY(-22px);
  }

  .section,
  .page-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .page-hero {
    padding-top: 86px;
  }

  .split picture,
  .split img,
  .portfolio-card img {
    height: 310px;
  }

  .image-band img {
    min-height: 360px;
  }

  .image-band-copy {
    padding: 52px 16px;
  }

  .timeline-step {
    min-height: auto;
  }

  .cta-strip {
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .blueprint-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .legal-content dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

  .enhanced .reveal {
    opacity: 1;
    transform: none;
  }
}
