:root {
  --ink: #102026;
  --ink-soft: #32484f;
  --muted: #6a7a7f;
  --paper: #f7f8f7;
  --white: #ffffff;
  --line: #dfe6e4;
  --teal: #16b8ad;
  --teal-dark: #08766f;
  --amber: #f2ad3f;
  --rust: #bd5b3d;
  --shadow: 0 22px 70px rgba(16, 32, 38, 0.14);
  --radius: 8px;
  --container: min(1120px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: var(--container);
  margin: 14px auto 0;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(16, 32, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(16, 32, 38, 0.1);
}

.brand,
.header-call,
.site-nav,
.button,
.contact-panel a,
.contact-panel > div {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
}

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

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

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

.site-nav {
  justify-content: center;
  gap: 22px;
  font-size: 0.91rem;
  font-weight: 650;
}

.site-nav a {
  opacity: 0.82;
}

.site-nav a:hover {
  opacity: 1;
}

.header-call {
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-call svg,
.button svg,
.contact-panel svg,
.nav-toggle svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding: 128px 0 96px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 22, 27, 0.9) 0%, rgba(9, 22, 27, 0.66) 44%, rgba(9, 22, 27, 0.16) 100%),
    linear-gradient(0deg, rgba(9, 22, 27, 0.76), rgba(9, 22, 27, 0.12) 34%);
}

.hero-content {
  position: relative;
  max-width: 1120px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
}

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

.button {
  gap: 10px;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 850;
}

.button-primary {
  color: var(--ink);
  background: var(--amber);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.signal-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.signal-grid div {
  min-height: 112px;
  padding: 26px;
  background: var(--white);
}

.signal-grid strong,
.signal-grid span,
.proof-list strong,
.proof-list span {
  display: block;
}

.signal-grid strong {
  margin-bottom: 4px;
  font-size: 1.08rem;
}

.signal-grid span,
.service-card p,
.timeline p,
.proof-list span,
.contact-grid p,
.intro-grid p {
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 54px;
}

.intro-grid img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

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

.services-section {
  background: #eef4f2;
}

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

.service-card {
  min-height: 255px;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(16, 32, 38, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgba(16, 32, 38, 0.07);
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: var(--teal-dark);
  background: #dff6f2;
  border-radius: 8px;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
}

.split-grid,
.why-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 58px;
}

.approach-section {
  background: var(--ink);
  color: var(--white);
}

.approach-section .timeline p {
  color: rgba(255, 255, 255, 0.68);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: var(--ink);
  background: var(--amber);
  border-radius: 8px;
  font-weight: 900;
}

.why-section {
  background: var(--white);
}

.quote-panel {
  padding: 32px;
  color: var(--white);
  background: linear-gradient(135deg, #102026, #19434a 58%, #6b4024);
  border-radius: var(--radius);
}

.quote-panel img {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  border-radius: 8px;
}

.quote-panel p {
  color: rgba(255, 255, 255, 0.74);
}

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

.proof-list div {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.proof-list strong {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.contact-section {
  padding: 94px 0;
  color: var(--white);
  background: #18383e;
}

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

.contact-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panel {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.contact-panel a,
.contact-panel > div {
  gap: 14px;
  min-width: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.contact-panel strong,
.contact-panel small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-panel small {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer {
  padding: 28px 0;
  background: #0c171b;
  color: rgba(255, 255, 255, 0.76);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  :root {
    --container: min(100vw - 28px, 720px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 8px;
  }

  .site-nav.is-open a {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .site-header.is-scrolled .site-nav.is-open a {
    border-top-color: rgba(16, 32, 38, 0.1);
  }

  .hero {
    min-height: 88vh;
    padding: 116px 0 72px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(9, 22, 27, 0.92), rgba(9, 22, 27, 0.54));
  }

  .signal-grid,
  .service-grid,
  .intro-grid,
  .split-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section {
    padding: 68px 0;
  }

  .service-card {
    min-height: auto;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 24px, 480px);
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 62px;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
  }

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

  .button {
    justify-content: center;
  }

  .signal-grid div,
  .service-card,
  .quote-panel {
    padding: 22px;
  }

  .timeline article {
    grid-template-columns: 48px 1fr;
  }

  .timeline span {
    width: 42px;
    height: 42px;
  }
}
