:root {
  --ink: #17201c;
  --muted: #5c6962;
  --soft: #f5f3ed;
  --paper: #fffdf8;
  --line: rgba(23, 32, 28, 0.12);
  --green: #0f5c46;
  --green-dark: #083829;
  --gold: #c8942e;
  --terra: #b85c3d;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(18, 35, 29, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::before {
  display: none;
}

img,
svg {
  display: block;
}

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

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 16px 16px auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 9px 10px 9px 12px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05)),
    rgba(9, 21, 17, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 42px rgba(6, 16, 13, 0.18);
  overflow: hidden;
  animation: headerDrop 650ms var(--ease) both;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.16) 38%, transparent 58%);
  transform: translateX(-125%);
  animation: headerShimmer 5.8s ease-in-out infinite;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 12px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 148, 46, 0.72), transparent);
  opacity: 0.72;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  border-color: rgba(23, 32, 28, 0.1);
  box-shadow: 0 12px 32px rgba(18, 35, 29, 0.12);
  transform: translateY(-2px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-logo {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(8, 56, 41, 0.2);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

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

.brand small {
  margin-top: 3px;
  font-size: 0.72rem;
  color: currentColor;
  opacity: 0.76;
}

.header-right,
.nav {
  display: flex;
  align-items: center;
}

.header-right {
  gap: 10px;
}

.nav {
  gap: 6px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.site-header.is-scrolled .nav {
  background: rgba(15, 92, 70, 0.05);
  border-color: rgba(15, 92, 70, 0.08);
}

.nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  color: currentColor;
  overflow: hidden;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 2px;
  background: var(--gold);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .nav a:hover {
  color: var(--green);
  background: rgba(15, 92, 70, 0.08);
}

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), #d8ad58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 900;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(200, 148, 46, 0.26);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.32) 42%, transparent 64%);
  transform: translateX(-120%);
  animation: shimmerSweep 4.2s ease-in-out infinite;
  pointer-events: none;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(200, 148, 46, 0.34);
}

.site-header.is-scrolled .header-cta {
  color: #241b09;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: currentColor;
  background: rgba(255, 255, 255, 0.1);
}

.site-header.is-scrolled .menu-toggle {
  border-color: var(--line);
  background: rgba(15, 92, 70, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 78svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/hero-finance.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.02);
  animation: heroFloat 14s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 19, 15, 0.86) 0%, rgba(8, 19, 15, 0.68) 38%, rgba(8, 19, 15, 0.2) 74%, rgba(8, 19, 15, 0.12) 100%),
    linear-gradient(180deg, rgba(8, 19, 15, 0.34), rgba(8, 19, 15, 0.52));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding: 128px 0 70px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions,
.hero-proof {
  animation: heroRise 820ms var(--ease) both;
}

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

.hero-copy {
  animation-delay: 180ms;
}

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

.hero-proof {
  animation-delay: 360ms;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.65;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.28) 42%, transparent 64%);
  transform: translateX(-120%);
  animation: shimmerSweep 4.2s ease-in-out infinite;
  pointer-events: none;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(15, 92, 70, 0.25);
}

.button.primary:hover {
  background: var(--green-dark);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button.full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.hero-proof span {
  position: relative;
  min-width: 132px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-proof span::after,
.trust-grid span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, 0.22) 44%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}

.hero-proof span:nth-child(1)::after,
.trust-grid span:nth-child(2n)::after {
  animation: shimmerSweep 5.5s ease-in-out infinite;
}

.hero-proof span:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-proof strong {
  display: block;
  color: var(--white);
  font-size: 1.5rem;
}

.trust-strip {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.82);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 72px;
  align-items: center;
  gap: 1px;
}

.trust-grid span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
  text-align: center;
  overflow: hidden;
}

.trust-grid span:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.section {
  padding: 92px 0;
}

section[id] {
  scroll-margin-top: 104px;
}

.intro-grid,
.approach-grid,
.contact-grid,
.quote-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.intro h2,
.section-heading h2,
.sticky-copy h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p:last-child,
.sticky-copy p,
.contact-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.78;
}

.services-band {
  background: var(--soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 24px;
}

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

.service-card,
.steps article,
.insight-grid article,
.contact-form {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(20, 35, 29, 0.07);
  overflow: hidden;
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after,
.metric::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.36) 42%, transparent 64%);
  transform: translateX(-120%);
  pointer-events: none;
}

.service-card:hover,
.steps article:hover,
.insight-grid article:hover,
.contact-form:hover {
  transform: translateY(-6px);
  border-color: rgba(15, 92, 70, 0.2);
  box-shadow: 0 18px 45px rgba(20, 35, 29, 0.12);
}

.service-card:hover::after,
.metric:hover::after {
  animation: shimmerSweep 900ms ease;
}

.service-card {
  min-height: 245px;
  padding: 24px;
}

.service-card svg,
.contact-list svg {
  width: 28px;
  height: 28px;
  margin-bottom: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card svg {
  color: var(--green);
  transition: transform 220ms var(--ease), color 220ms ease;
}

.service-card:hover svg {
  color: var(--terra);
  transform: translateY(-2px) scale(1.06);
}

.service-card h3,
.steps h3,
.insight-grid h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-card p,
.steps p,
.insight-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.metrics {
  padding: 54px 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), #17362e 58%, #482c23);
}

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

.metric {
  position: relative;
  padding: 10px 0;
  overflow: hidden;
}

.metric strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.approach {
  background: var(--paper);
}

.sticky-copy {
  align-self: start;
  position: sticky;
  top: 108px;
}

.steps {
  display: grid;
  gap: 14px;
}

.steps article {
  padding: 26px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--green);
  background: rgba(15, 92, 70, 0.08);
  border-radius: 50%;
  font-weight: 900;
  transition: transform 220ms var(--ease), background 220ms ease;
}

.steps article:hover span {
  transform: rotate(-4deg) scale(1.06);
  background: rgba(200, 148, 46, 0.14);
}

.text-link {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(15, 92, 70, 0.32);
  text-underline-offset: 5px;
}

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

.insight-grid article {
  padding: 26px;
  border-top: 4px solid var(--gold);
}

.quote-band {
  color: var(--white);
  background: var(--green);
}

.quote-grid {
  align-items: end;
}

blockquote {
  margin: 0;
  max-width: 760px;
  font-size: clamp(1.7rem, 4vw, 3.7rem);
  line-height: 1.12;
  font-weight: 800;
}

.quote-grid strong,
.quote-grid span {
  display: block;
}

.quote-grid strong {
  font-size: 1.1rem;
}

.quote-grid span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  background: var(--soft);
}

.contact-copy {
  margin-top: 20px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
}

.contact-list .contact-address {
  font-weight: 600;
}

.contact-list svg {
  flex: 0 0 auto;
  margin: 0;
  color: var(--gold);
}

.contact-address {
  align-items: flex-start;
  line-height: 1.5;
}

.footer-address {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 36ch;
}

.contact-form {
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 32, 28, 0.16);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(15, 92, 70, 0.1);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

.service-card.reveal.is-visible:hover,
.steps article.reveal.is-visible:hover,
.insight-grid article.reveal.is-visible:hover,
.contact-form.reveal.is-visible:hover {
  transform: translateY(-6px);
}

.service-grid .reveal:nth-child(2),
.steps .reveal:nth-child(2),
.insight-grid .reveal:nth-child(2),
.metrics-grid .reveal:nth-child(2),
.trust-grid .reveal:nth-child(2) {
  transition-delay: 80ms;
}

.service-grid .reveal:nth-child(3),
.steps .reveal:nth-child(3),
.insight-grid .reveal:nth-child(3),
.metrics-grid .reveal:nth-child(3),
.trust-grid .reveal:nth-child(3) {
  transition-delay: 140ms;
}

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

@keyframes headerShimmer {
  0%,
  60% {
    transform: translateX(-125%);
  }
  82%,
  100% {
    transform: translateX(125%);
  }
}

@keyframes markShimmer {
  0%,
  50% {
    transform: translateX(-95%) rotate(12deg);
  }
  72%,
  100% {
    transform: translateX(95%) rotate(12deg);
  }
}

@keyframes shimmerSweep {
  0% {
    transform: translateX(-120%);
  }
  54%,
  100% {
    transform: translateX(120%);
  }
}

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

@keyframes heroFloat {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.06) translate3d(-10px, -6px, 0);
  }
}

.form-status {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 800;
}

.footer {
  padding: 32px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #111814;
}

.footer-grid {
  align-items: center;
}

.footer strong {
  display: block;
  color: var(--white);
}

.footer p {
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  justify-content: end;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 900px) {
  .site-header {
    inset: 10px 10px auto;
    z-index: 90;
    min-height: 58px;
    gap: 8px;
    padding: 8px;
    color: var(--ink);
    background: var(--paper);
    border-color: #d8ddd5;
    box-shadow: 0 12px 30px rgba(8, 19, 15, 0.14);
    backdrop-filter: none;
    overflow: visible;
  }

  .site-header::before {
    display: none;
  }

  .site-header::after {
    inset: auto 10px 0;
    background: linear-gradient(90deg, transparent, rgba(15, 92, 70, 0.28), transparent);
    opacity: 1;
  }

  .site-header.is-scrolled {
    color: var(--ink);
    background: var(--paper);
    border-color: #d8ddd5;
    transform: none;
  }

  .brand {
    flex: 1 1 auto;
    gap: 9px;
    min-width: 0;
  }

  .brand-logo {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .brand strong {
    max-width: 125px;
    overflow: hidden;
    font-size: 1rem;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small {
    display: block;
    max-width: 145px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.66rem;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 1;
  }

  .menu-toggle {
    display: block;
    order: 3;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: #eef4f1;
    border-color: #d8e4de;
    box-shadow: none;
  }

  .header-right {
    display: contents;
  }

  .header-cta {
    display: inline-flex;
    order: 2;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 12px;
    color: #241b09;
    background: var(--gold);
    border-color: var(--gold);
    font-size: 0.82rem;
    box-shadow: none;
    white-space: nowrap;
  }

  .header-cta::after {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 78px 10px auto;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: calc(100svh - 104px);
    padding: 8px;
    overflow: auto;
    color: var(--white);
    background: var(--green-dark);
    border: 1px solid var(--green-dark);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(8, 19, 15, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    visibility: hidden;
  }

  .menu-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    visibility: visible;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 16px;
    color: var(--white);
    background: var(--green-dark);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 1rem;
    text-align: left;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover {
    color: var(--white);
    background: var(--green);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateX(3px);
  }

  .nav a:active {
    background: var(--gold);
    border-color: var(--gold);
    color: #241b09;
    transform: translateX(3px) scale(0.99);
  }

  .hero {
    min-height: 76svh;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 19, 15, 0.88), rgba(8, 19, 15, 0.64)),
      linear-gradient(180deg, rgba(8, 19, 15, 0.28), rgba(8, 19, 15, 0.56));
  }

  .hero-content {
    padding: 118px 0 54px;
  }

  .hero-proof span {
    min-width: calc(50% - 5px);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 0;
  }

  .section {
    padding: 70px 0;
  }

  .intro-grid,
  .approach-grid,
  .contact-grid,
  .quote-grid,
  .footer-grid,
  .service-grid,
  .metrics-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .sticky-copy {
    position: static;
  }

  .section-heading.split {
    display: grid;
    align-items: start;
  }

  .footer-links {
    justify-content: start;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 22px, 1120px);
  }

  .brand {
    gap: 8px;
  }

  .brand small {
    display: block;
    max-width: 118px;
  }

  .brand-logo {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .brand strong {
    max-width: 92px;
    font-size: 0.95rem;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .menu-toggle {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .nav {
    top: 74px;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-content {
    padding: 108px 0 46px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.8rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .contact-section h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
    line-height: 1.08;
  }

  section[id] {
    scroll-margin-top: 92px;
  }

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

  .hero-proof {
    gap: 8px;
  }

  .hero-proof span {
    min-width: 100%;
    padding: 12px 14px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card,
  .steps article,
  .insight-grid article,
  .contact-form {
    padding: 20px;
  }

  .contact-list a,
  .contact-list span {
    align-items: flex-start;
  }
}

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

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