:root {
  --ink: #18172f;
  --muted: #60646f;
  --paper: #f7f8f6;
  --white: #ffffff;
  --teal: #006f78;
  --teal-dark: #07555c;
  --coral: #ee725e;
  --line: #dfe3df;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--ink); background: var(--paper); font-family: Inter, Arial, sans-serif; line-height: 1.6; }
a { color: inherit; }
.site-header { position: sticky; top: 0; z-index: 20; height: 76px; padding: 0 5vw; display: flex; align-items: center; gap: 40px; background: rgba(247, 248, 246, .96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.brand { margin-right: auto; line-height: 0; }
.brand img { width: min(280px, 38vw); height: auto; mix-blend-mode: multiply; }
nav { display: flex; gap: 28px; }
nav a { font-size: .86rem; font-weight: 600; text-decoration: none; }
nav a:hover { color: var(--teal); }
.button { display: inline-flex; min-height: 48px; padding: 0 22px; align-items: center; justify-content: center; background: var(--coral); color: var(--white); border: 1px solid var(--coral); font-weight: 700; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: #d85c49; }
.button-small { min-height: 40px; padding: 0 16px; font-size: .82rem; }
.hero { position: relative; min-height: calc(100vh - 76px); max-height: 850px; display: grid; align-items: center; overflow: hidden; }
.hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(20,25,34,.82) 0%, rgba(20,25,34,.58) 38%, rgba(20,25,34,.05) 72%); }
.hero-content { position: relative; z-index: 2; width: min(680px, 90vw); margin-left: 7vw; color: var(--white); }
.eyebrow { margin: 0 0 18px; color: var(--teal); font-size: .73rem; line-height: 1.2; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; }
.hero .eyebrow, .cta .eyebrow { color: #83d2d1; }
h1, h2, h3, p { letter-spacing: 0; }
h1 { max-width: 640px; margin: 0; font-size: clamp(3.3rem, 6.5vw, 6.8rem); line-height: .98; font-weight: 700; }
.hero-copy { max-width: 590px; margin: 28px 0 32px; font-size: clamp(1rem, 1.4vw, 1.2rem); color: rgba(255,255,255,.9); }
.hero-actions { display: flex; align-items: center; gap: 26px; }
.text-link { font-size: .88rem; font-weight: 700; text-decoration: none; }
.trust-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-strip p { margin: 0; padding: 25px 3vw; border-right: 1px solid var(--line); }
.trust-strip p:last-child { border: 0; }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip strong { font-size: .98rem; }
.trust-strip span { margin-top: 2px; color: var(--muted); font-size: .77rem; }
.section { padding: 110px 7vw; }
.section-heading { display: grid; grid-template-columns: .65fr 1.1fr 1fr; gap: 5vw; align-items: start; margin-bottom: 64px; }
.section-heading h2, .difference h2, .cta h2 { margin: 0; font-size: clamp(2.2rem, 4vw, 4.2rem); line-height: 1.08; }
.section-heading > p:last-child { margin: 8px 0 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.service-grid article { min-height: 310px; padding: 26px 26px 30px 0; border-right: 1px solid var(--line); }
.service-grid article + article { padding-left: 26px; }
.service-grid article:last-child { border-right: 0; }
.service-number { color: var(--coral); font-size: .78rem; font-weight: 700; }
.service-grid h3, .principles h3, .steps h3 { margin: 48px 0 12px; font-size: 1.15rem; }
.service-grid p, .principles p, .steps p { color: var(--muted); font-size: .9rem; }
.difference { display: grid; grid-template-columns: 1fr 1.25fr; gap: 10vw; color: var(--white); background: var(--ink); }
.difference .eyebrow { color: #83d2d1; }
.difference-copy .lead { margin: 0 0 60px; font-size: 1.3rem; line-height: 1.5; color: rgba(255,255,255,.88); }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.principles h3 { margin-top: 0; }
.principles p { color: rgba(255,255,255,.62); }
.section-heading.compact { grid-template-columns: .65fr 1.7fr; }
.steps { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--ink); }
.steps li { display: grid; grid-template-columns: 90px 1fr; padding: 24px 0; border-bottom: 1px solid var(--line); }
.steps li > span { color: var(--coral); font-weight: 700; }
.steps h3 { margin: 0 0 5px; }
.steps p { margin: 0; }
.cta { padding: 90px 7vw; display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; color: var(--white); background: var(--teal-dark); }
.cta-action { align-self: end; }
.cta-action p { margin: 0 0 22px; color: rgba(255,255,255,.72); }
.button-light { background: var(--white); border-color: var(--white); color: var(--teal-dark); }
.button-light:hover { background: #edf5f3; }
footer { min-height: 150px; padding: 40px 7vw; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 30px; background: var(--white); }
footer img { width: min(240px, 100%); mix-blend-mode: multiply; }
footer p { margin: 0; color: var(--muted); font-size: .76rem; }
footer p:last-child { text-align: right; }

@media (max-width: 900px) {
  .site-header { height: 68px; padding: 0 22px; }
  nav { display: none; }
  .button-small { display: none; }
  .brand img { width: 225px; max-width: 70vw; }
  .hero { min-height: 760px; }
  .hero-image { object-position: 64% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(20,25,34,.88) 0%, rgba(20,25,34,.65) 52%, rgba(20,25,34,.12) 100%); }
  .hero-content { align-self: end; margin: 0; width: 100%; padding: 0 24px 58px; }
  h1 { font-size: clamp(3rem, 14vw, 4.8rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip p:nth-child(2) { border-right: 0; }
  .trust-strip p:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section { padding: 76px 24px; }
  .section-heading, .section-heading.compact, .difference, .cta { grid-template-columns: 1fr; gap: 30px; }
  .section-heading { margin-bottom: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-grid article, .service-grid article + article { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-grid h3 { margin-top: 24px; }
  .principles { grid-template-columns: 1fr; }
  .difference-copy .lead { margin-bottom: 42px; }
  .cta { padding: 70px 24px; }
  footer { grid-template-columns: 1fr; padding: 36px 24px; }
  footer p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
