@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700;800&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap");

:root {
  --bg: #f8f9f7;
  --paper: #ffffff;
  --ink: #101820;
  --ink-soft: #324452;
  --muted: #6d7881;
  --rule: #d9dedb;
  --silver: #eef2ef;
  --stream: #2f6f73;
  --stream-dark: #17494d;
  --moss: #6f7f4f;
  --clay: #a45f3a;
  --shadow: 0 22px 70px rgba(16, 24, 32, 0.10);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Sans 3", "Segoe UI", Aptos, Calibri, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

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

a {
  color: inherit;
}

a,
.button,
.evidence-card,
.offer-card,
.content-card,
.hero-panel {
  transition: border-color 160ms ease, box-shadow 160ms ease, color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

a:focus-visible,
.button:focus-visible,
.evidence-card:focus-visible {
  outline: 3px solid rgba(47, 111, 115, 0.28);
  outline-offset: 4px;
}

.site-header {
  background: rgba(248, 249, 247, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav-shell {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  max-width: var(--max);
  padding: 18px 26px;
}

.brand {
  align-items: center;
  color: var(--ink);
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 18px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.brand-text {
  display: grid;
  gap: 1px;
}

.brand-text strong {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.brand-text span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  border-bottom: 1px solid var(--stream);
  color: var(--stream-dark) !important;
  font-weight: 700;
}

.shell {
  margin: 0 auto;
  max-width: var(--max);
  padding: 0 26px;
}

.hero {
  display: grid;
  gap: 58px;
  grid-template-columns: minmax(0, 0.98fr) minmax(380px, 0.82fr);
  min-height: 660px;
  padding: 88px 0 54px;
}

.hero-copy {
  align-self: center;
}

.location-line,
.small-label {
  color: var(--stream-dark);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
  margin-bottom: 28px;
}

h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  margin-bottom: 18px;
}

h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(19px, 2vw, 23px);
  line-height: 1.55;
  max-width: 760px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border: 1px solid var(--ink);
  display: inline-flex;
  font-size: 14px;
  font-weight: 780;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
}

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

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover {
  box-shadow: 0 10px 24px rgba(16, 24, 32, 0.09);
  transform: translateY(-1px);
}

.button.primary:hover {
  background: #1b2730;
}

.button.secondary:hover {
  border-color: var(--stream-dark);
  color: var(--stream-dark);
}

.hero-panel {
  align-self: center;
  background: var(--paper);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  padding: 16px;
}

.hero-panel img {
  aspect-ratio: 16 / 11;
  border: 1px solid var(--rule);
  object-fit: cover;
  object-position: top left;
  width: 100%;
}

.panel-caption {
  display: grid;
  gap: 14px;
  padding: 18px 4px 4px;
}

.panel-caption strong {
  font-size: 15px;
}

.process-line {
  color: var(--muted);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  font-size: 12px;
  letter-spacing: 0.09em;
  position: relative;
  text-transform: uppercase;
}

.process-line span {
  border-top: 2px solid var(--rule);
  padding-top: 8px;
  position: relative;
}

.process-line span::before {
  background: var(--stream);
  border-radius: 999px;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: -5px;
  width: 7px;
}

.card-rail {
  border-top: 1px solid var(--rule);
  color: var(--muted);
  display: grid;
  font-size: 11px;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
  letter-spacing: 0.08em;
  margin-top: 18px;
  padding-top: 10px;
  text-transform: uppercase;
}

.proof-row {
  border-bottom: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-item {
  border-right: 1px solid var(--rule);
  padding: 26px;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 86px 0;
}

.section.rule-top {
  border-top: 1px solid var(--rule);
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--ink-soft);
  font-size: 18px;
  margin-bottom: 0;
  max-width: 520px;
}

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

.evidence-card,
.offer-card,
.content-card {
  background: var(--paper);
  border: 1px solid var(--rule);
}

.evidence-card {
  color: var(--ink);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.evidence-card:hover {
  border-color: rgba(47, 111, 115, 0.44);
  box-shadow: 0 16px 48px rgba(16, 24, 32, 0.09);
  transform: translateY(-2px);
}

.evidence-card img {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--rule);
  object-fit: cover;
  object-position: top left;
  width: 100%;
}

.evidence-card img.operational-crop,
.shot img.operational-crop {
  object-position: top left;
}

.card-body {
  padding: 22px;
}

.card-body p,
.offer-card p,
.content-card p,
.content-card li {
  color: var(--muted);
}

.case-type {
  color: var(--stream-dark);
  display: block;
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.offer-card,
.content-card {
  padding: 28px;
}

.offer-card .number {
  color: var(--clay);
  display: block;
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 28px;
}

.band {
  background: var(--ink);
  color: #fff;
  padding: 68px 0;
}

.band-grid {
  align-items: center;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) 340px;
}

.band h2 {
  color: #fff;
  margin-bottom: 0;
}

.band p {
  color: #d9e2df;
  margin-bottom: 0;
}

.case-hero {
  padding: 76px 0 44px;
}

.case-layout {
  display: grid;
  gap: 56px;
  padding-bottom: 86px;
}

.shot-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot {
  background: var(--paper);
  border: 1px solid var(--rule);
  margin: 0;
}

.shot img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  width: 100%;
}

.shot img.operational-crop {
  aspect-ratio: 16 / 6;
}

.shot figcaption {
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 13px;
  padding: 13px 16px;
}

.content-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-card ul,
.content-card ol {
  margin: 0;
  padding-left: 20px;
}

.content-card li {
  margin-bottom: 8px;
}

.note {
  background: var(--silver);
  border-left: 4px solid var(--stream);
  color: var(--ink-soft);
  padding: 18px 20px;
}

.site-footer {
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 13px;
  padding: 30px 26px;
}

.footer-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  max-width: var(--max);
}

.footer-inner a {
  color: var(--stream-dark);
  text-decoration: none;
}

.footer-inner a:hover,
.nav-links a:hover {
  color: var(--ink);
}

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

@media (max-width: 940px) {
  .hero,
  .band-grid,
  .content-grid,
  .shot-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .proof-row,
  .evidence-grid,
  .offer-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .shell {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 46px;
  }

  .lead {
    font-size: 18px;
  }

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

  .proof-row,
  .evidence-grid,
  .offer-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    border-bottom: 1px solid var(--rule);
    border-right: 0;
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

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

  .site-footer {
    padding-bottom: 52px;
  }
}
