:root {
  color-scheme: light dark;
  --ink: #1b2430;
  --muted: #5b6675;
  --bg: #ffffff;
  --bg-alt: #f4f6f8;
  --accent: #c8622a;
  --accent-dark: #a34e1f;
  --steel: #2b3a4a;
}

* {
  box-sizing: border-box;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

@media (min-width: 640px) {
  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
}

.section-photo {
  display: block;
  width: 100%;
  max-width: 42rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  margin: 1.5rem auto;
}

.nowrap {
  white-space: nowrap;
}

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

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.hero {
  background: var(--steel);
  color: #fff;
  padding: 2.75rem 1.25rem 2.25rem;
  text-align: center;
}

@media (min-width: 640px) {
  .hero {
    padding: 5rem 1.5rem 4rem;
  }
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.hero .lead {
  max-width: 38rem;
  margin: 1.2rem auto 2rem;
  color: #cfd8e2;
  font-size: 1.1rem;
}

.cta {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.9rem 1.8rem;
  border-radius: 4px;
  transition: background 0.15s ease;
}

.cta:hover {
  background: var(--accent-dark);
}

.stat-band {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2rem;
  background: var(--steel);
  color: #fff;
  padding: 1.25rem 1.25rem 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  flex: 1 1 8rem;
  max-width: 11rem;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: #cfd8e2;
  margin-top: 0.15rem;
}


@media (min-width: 640px) {
  .stat-band {
    padding: 1.5rem 1.5rem 2rem;
    gap: 2rem 3rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

.section {
  padding: 2.75rem 1.25rem;
}

@media (min-width: 640px) {
  .section {
    padding: 4rem 1.5rem;
  }
}

.section.alt {
  background: var(--bg-alt);
}

.section h2 {
  font-size: 1.6rem;
}

.source {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -0.5rem;
}

.source a {
  color: inherit;
}

.section > h2,
.section > p,
.section > .sub-heading {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section.contact {
  text-align: center;
}

.section.contact .cta {
  margin-top: 0.5rem;
}

.contact-details {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(91, 102, 117, 0.25);
}

.contact-details p {
  margin: 0.3rem 0;
}

.contact-name {
  font-weight: 600;
}

.contact-details a {
  color: var(--accent-dark);
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.checklist {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.checklist li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
}

.checklist li::before {
  content: "\2013";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.checklist li strong {
  color: var(--ink);
}

.marker {
  position: relative;
  z-index: 1;
  flex: none;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  max-width: 42rem;
  margin: 2rem auto 0;
}

.stepper-heading-row .sub-heading {
  margin-top: 0;
  font-size: 1.6rem;
}

.stepper-header-label {
  flex: none;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--muted);
  text-align: right;
  padding-right: 2rem;
}

.stepper {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  padding-left: 0;
}

.stepper::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  top: 1.2rem;
  bottom: 1.2rem;
  width: 2px;
  background: var(--muted);
  opacity: 0.3;
}

.step {
  position: relative;
  border-bottom: 1px solid rgba(91, 102, 117, 0.15);
}

.step:last-child {
  border-bottom: none;
}

.step summary {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.9rem 0;
  cursor: pointer;
  list-style: none;
}

.step summary::-webkit-details-marker {
  display: none;
}

.step summary::after {
  content: "+";
  flex: none;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: 0.75rem;
}

.step[open] summary::after {
  content: "\2212";
}

.step-title {
  flex: 1;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.step-pct {
  flex: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
}

.step-body {
  color: var(--muted);
  margin: 0 0 1.2rem calc(2.4rem + 1.2rem);
}

.step-total {
  display: flex;
  align-items: center;
  max-width: 42rem;
  margin: 0 auto;
  padding: 1rem calc(2.4rem + 1.2rem) 0 calc(2.4rem + 1.2rem);
  border-top: 2px solid var(--accent);
}

.step-total .step-title {
  font-weight: 700;
}

.step-total .step-pct {
  font-size: 1.1rem;
  color: var(--accent-dark);
}

.sub-heading {
  margin-top: 2rem;
  font-size: 1.2rem;
}

footer {
  text-align: center;
  padding: 2rem 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #e8ecf1;
    --muted: #a3aebb;
    --bg: #12181f;
    --bg-alt: #182029;
    --steel: #0d141c;
  }
}
