:root {
  color-scheme: light;
  --ink: #191716;
  --muted: #625d57;
  --paper: #f6f1e8;
  --panel: #fffdf8;
  --line: rgba(25, 23, 22, 0.16);
  --dark: #141414;
  --red: #b9352d;
  --steel: #466577;
  --moss: #65745c;
  --amber: #c28c40;
  --white: #fffaf2;
  --shadow: 0 22px 60px rgba(20, 20, 20, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::selection {
  background: rgba(185, 53, 45, 0.18);
}

a {
  color: inherit;
}

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

.site-nav {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(94vw, 780px);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 250, 242, 0.34);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.78);
  color: var(--white);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-nav.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -120%);
}

.mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.site-nav nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
  font-weight: 800;
}

.site-nav nav a {
  text-decoration: none;
  opacity: 0.86;
}

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

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero picture img {
  object-fit: cover;
  object-position: 50% 44%;
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.82), rgba(12, 12, 12, 0.4) 44%, rgba(12, 12, 12, 0.1)),
    linear-gradient(0deg, rgba(12, 12, 12, 0.72), rgba(12, 12, 12, 0.08) 46%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 180px 0 84px;
}

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

.hero .eyebrow {
  color: #f6beb9;
}

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

h1 {
  max-width: 830px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7.8rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.4rem;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.lede {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 250, 242, 0.92);
  font-size: 2rem;
  line-height: 1.26;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button.primary {
  border-color: transparent;
  background: var(--red);
  color: var(--white);
}

.button.ghost {
  border-color: rgba(255, 250, 242, 0.5);
  background: rgba(255, 250, 242, 0.08);
  color: var(--white);
}

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

.signal-strip {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1120px, 92vw);
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: -38px auto 0;
}

.signal-strip article {
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 18px 50px rgba(20, 20, 20, 0.08);
}

.signal-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  line-height: 1;
}

.signal-strip p,
.body-copy p,
.triage-intro p,
.online-copy p,
.contact-section p,
.timeline p,
.proof-list p {
  color: var(--muted);
  line-height: 1.58;
}

.split-section,
.proof-section,
.timeline-section,
.triage-section,
.online-section,
.contact-section,
footer {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.split-section,
.proof-section,
.timeline-section,
.online-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 58px;
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.body-copy p {
  font-size: 1.18rem;
}

.image-grid {
  display: grid;
  width: min(1160px, 94vw);
  grid-template-columns: 1.16fr 0.84fr;
  gap: 12px;
  margin: 0 auto;
  padding: 22px 0 88px;
}

.image-grid figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
}

.image-grid .wide {
  grid-row: span 2;
  min-height: 732px;
}

.image-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: 8px;
  background: rgba(20, 20, 20, 0.72);
  color: var(--white);
  font-weight: 800;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.proof-list article {
  min-height: 214px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.62);
}

.proof-list span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--steel);
  font-weight: 900;
}

.timeline-section {
  align-items: start;
}

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

.timeline article {
  padding: 22px;
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  background: var(--panel);
}

.timeline time {
  display: block;
  margin-bottom: 12px;
  color: var(--moss);
  font-weight: 900;
}

.triage-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: start;
  padding: 70px 42px;
  margin-top: 76px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eee5d9;
  box-shadow: 0 28px 70px rgba(20, 20, 20, 0.08);
}

.triage-tool {
  display: grid;
  gap: 14px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(25, 23, 22, 0.2);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 10px 12px;
}

select:focus {
  border-color: var(--steel);
  outline: 3px solid rgba(70, 101, 119, 0.18);
}

.triage-output {
  display: grid;
  min-height: 246px;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(25, 23, 22, 0.18);
  border-radius: 8px;
  background: var(--panel);
}

.triage-output strong {
  color: var(--red);
  font-size: 1.08rem;
}

.triage-output ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.triage-output li {
  color: var(--muted);
  line-height: 1.45;
}

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

.online-section {
  margin-top: 76px;
}

.inline-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 88px 0;
}

.contact-section img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: 42% center;
  border-radius: 8px;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  h1 {
    font-size: 5.7rem;
  }

  h2 {
    font-size: 3.2rem;
  }

  .signal-strip,
  .split-section,
  .proof-section,
  .timeline-section,
  .triage-section,
  .online-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .proof-list,
  .field-row {
    grid-template-columns: 1fr;
  }

  .triage-section {
    padding: 34px 22px;
  }
}

@media (max-width: 760px) {
  .site-nav {
    width: calc(100vw - 22px);
  }

  .site-nav nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .site-nav nav a:nth-child(2) {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero picture img {
    object-position: 50% 38%;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(12, 12, 12, 0.86), rgba(12, 12, 12, 0.44) 58%, rgba(12, 12, 12, 0.08)),
      linear-gradient(90deg, rgba(12, 12, 12, 0.42), rgba(12, 12, 12, 0.08));
  }

  .hero-copy {
    padding-top: 46svh;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 4.1rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .lede {
    font-size: 1.35rem;
  }

  .hero-actions,
  .triage-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .signal-strip {
    margin-top: 0;
    padding-top: 12px;
  }

  .split-section,
  .proof-section,
  .timeline-section,
  .online-section {
    padding: 58px 0;
  }

  .image-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 64px;
  }

  .image-grid figure,
  .image-grid .wide {
    min-width: 82vw;
    min-height: 430px;
    scroll-snap-align: center;
  }

  .contact-section {
    padding: 62px 0;
  }

  .contact-section img {
    height: 420px;
  }

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

@media (max-width: 460px) {
  .mark {
    width: 38px;
    height: 38px;
  }

  .site-nav nav a:first-child {
    display: none;
  }

  h1 {
    font-size: 3.3rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .button {
    padding: 0 16px;
  }

  .signal-strip span {
    font-size: 1.7rem;
  }
}
