:root {
  --navy: #1b2635;
  --navy-2: #212d3f;
  --rust: #c1592f;
  --rust-dark: #a54823;
  --cream: #f4efe6;
  --white: #ffffff;
  --ink: #262b33;
  --ink-soft: #5b6270;
  --light-text: #eef1f5;
  --light-soft: #b7c0cc;
  --border: #e6e1d8;
  --border-dark: #33415a;
  --max-w: 760px;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-head: "Lora", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-wide {
  max-width: 1040px;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 20px;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.15rem); }
h3 { font-size: 1.2rem; margin-bottom: 10px; }

h2.light, h3.light, h1.light { color: var(--light-text); }

p { margin: 0 0 18px; color: var(--ink-soft); font-size: 1.125rem; }
p:last-child { margin-bottom: 0; }

.light-soft { color: var(--light-soft) !important; }

strong { color: var(--ink); }

a { color: var(--rust); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rust);
  margin-bottom: 14px;
}

.eyebrow-light { color: #e8a67e; }

.lede {
  font-size: 1.25rem;
  max-width: 60ch;
}

.center { text-align: center; }
.center .lede { margin-left: auto; margin-right: auto; }

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: rgba(27, 38, 53, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border-dark);
}

.wordmark {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--light-text);
  text-decoration: none;
  font-size: 1.1rem;
}

.topbar nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.topbar nav a {
  color: var(--light-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.topbar nav a:hover { color: var(--light-text); }

.nav-cta {
  background: var(--rust);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 6px;
  font-weight: 600;
}

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

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--light-text);
  border-radius: 2px;
}

@media (min-width: 760px) {
  .topbar nav { display: flex; }
  .nav-toggle { display: none; }
}

.topbar nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: var(--navy);
  padding: 12px 24px 20px;
  border-bottom: 1px solid var(--border-dark);
}

.topbar nav.open a {
  padding: 10px 0;
  width: 100%;
}

.topbar nav.open .nav-cta {
  width: fit-content;
  margin-top: 6px;
}

/* Sections */
.section {
  padding: 64px 0;
}

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

.section.dark {
  background: var(--navy);
  color: var(--light-text);
}

@media (min-width: 640px) {
  .section { padding: 96px 0; }
}

/* Hero */
.hero {
  padding: 80px 0 0;
  background: var(--navy);
  color: var(--light-text);
  overflow: hidden;
}

.hero h1 { color: var(--light-text); }
.hero .lede { color: var(--light-soft); }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 56px;
}

.hero-text { padding-bottom: 0; }

@media (min-width: 760px) {
  .hero {
    padding-top: 100px;
  }

  .hero-grid {
    grid-template-columns: 0.85fr 1fr;
    align-items: start;
    gap: 48px;
    min-height: 600px;
    padding-bottom: 0;
  }

  .hero-text { padding-bottom: 0; margin-top: 50px; }
}

.hero-photo {
  display: flex;
  justify-content: center;
}

@media (min-width: 760px) {
  .hero-photo {
    justify-content: flex-end;
    margin-top: 25px;
  }
}

.hero-photo-frame {
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

@media (min-width: 760px) {
  .hero-photo-frame { max-width: 520px; }
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.44);
  transform-origin: center 58.9%;
}

@media (min-width: 760px) {
  .hero-img { max-width: 460px; }
}

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

.center-actions { justify-content: center; }

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}

.btn-primary {
  background: var(--rust);
  color: #fff;
}

.btn-primary:hover { background: var(--rust-dark); }

/* Stats bar */
.stats {
  background: var(--navy-2);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 20px;
  padding: 32px 24px;
  text-align: center;
}

@media (min-width: 640px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-num {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--light-text);
  margin: 0 0 4px;
}

.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--light-soft);
  margin: 0;
}

/* Pull list */
.pull-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pull-list li {
  border-left: 3px solid var(--rust);
  padding: 4px 0 4px 18px;
  font-style: italic;
  color: var(--ink);
}

/* About grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
}

@media (min-width: 760px) {
  .about-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
  }
}

.about-photo {
  display: flex;
  justify-content: center;
}

.photo-frame {
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(27, 38, 53, 0.12);
}

.photo-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 28px;
}

.tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
}

/* Dual grid */
.dual-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .dual-grid { grid-template-columns: 1fr 1fr; }
}

.dual-card {
  background: var(--navy-2);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 30px 28px;
}

.dual-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 600;
  color: var(--rust);
  opacity: 0.85;
  margin: 0 0 8px;
}

.quote {
  margin-top: 36px;
  text-align: center;
  font-style: italic;
  font-size: 1.05rem;
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
}

/* Timeline */
.timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.timeline-badge {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--light-text);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-content h3 { margin-bottom: 8px; }
.timeline-content p { margin: 0; }

/* Proof card */
.proof-card {
  margin-top: 28px;
  background: var(--white);
  border-left: 4px solid var(--rust);
  border-radius: 0 10px 10px 0;
  padding: 28px 30px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.proof-card p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}

/* Accordion */
.accordion {
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.accordion-icon {
  flex: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--rust);
  transition: transform 0.2s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.accordion-panel p {
  padding: 0 0 20px;
  margin: 0;
}

/* Footer */
.footer {
  padding: 32px 0 48px;
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
}

.footer p {
  font-size: 0.88rem;
  color: var(--light-soft);
  margin: 0;
  text-align: center;
}
