@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=IBM+Plex+Sans:wght@400;500;600&family=DM+Sans:wght@400;500;700&family=Libre+Baskerville:wght@400;700&family=Work+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --navy: #102d46;
  --moss: #4a5e4f;
  --forest: #304338;
  --stone: #f5f0e8;
  --paper: #fbf7f2;
  --sand: #ded3c5;
  --taupe: #b99a7f;
  --copper: #936b47;
  --gold: #d0ab62;
  --ink: #1e1f21;
  --shadow: 0 24px 60px rgba(27, 33, 38, 0.12);
  --radius-xl: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #faf7f2 0%, #f7f3ee 45%, #fbf8f3 100%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.page-shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px 0 18px;
}
.brand-lockup img { width: 208px; height: auto; }
.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(16, 45, 70, 0.82);
}
.nav-links a { padding: 10px 14px; border-radius: 999px; }
.nav-links a:hover { background: rgba(16, 45, 70, 0.06); }
.nav-links a.nav-link-overview {
  background: rgba(16, 45, 70, 0.1);
  border: 1px solid rgba(16, 45, 70, 0.12);
  font-weight: 700;
  color: var(--navy);
}
.nav-links a.nav-link-overview:hover {
  background: rgba(16, 45, 70, 0.16);
}
.hero {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.hero-grid,
.cards-3,
.cards-4,
.photo-stack,
.sticky-grid,
.conversation-grid,
.mockup-grid,
.metric-band { display: grid; gap: 24px; }
.hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
.hero-copy,
.panel,
.section-card,
.quote-card,
.cta-card,
.timeline,
.sticky-panel,
.note-card,
.issue-card,
.index-intro { border-radius: var(--radius-xl); }
.hero-copy { padding: 56px; display: grid; gap: 20px; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}
.btn-primary { background: var(--navy); color: white; }
.btn-secondary {
  background: rgba(255, 255, 255, 0.35);
  border-color: rgba(16, 45, 70, 0.18);
  color: var(--navy);
}
.section { padding: 30px 0; }
.section-head { display: grid; gap: 14px; margin-bottom: 22px; }
.cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.panel,
.section-card,
.quote-card,
.cta-card,
.note-card,
.issue-card,
.sticky-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 45, 70, 0.08);
  backdrop-filter: blur(12px);
}
.section-card,
.note-card,
.issue-card,
.quote-card,
.cta-card,
.sticky-panel,
.index-intro { display: grid; gap: 14px; }
.label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(16, 45, 70, 0.6);
}
.kicker {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(208, 171, 98, 0.18);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}
.list-clean {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.quote-text { font-size: clamp(22px, 2.4vw, 34px); line-height: 1.26; }
.timeline {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(16, 45, 70, 0.94), rgba(20, 31, 52, 0.96));
  color: white;
}
.timeline p,
.timeline .micro,
.timeline .label,
.timeline h2,
.timeline h3 {
  color: rgba(255, 255, 255, 0.86);
}
.timeline-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline-step strong {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
}
.photo-stack { grid-template-columns: 1.1fr 0.9fr; }
.photo-strip { display: grid; gap: 16px; }
.photo-stack img, .photo-strip img, .portrait-card img {
  border-radius: 22px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.portrait-card { overflow: hidden; min-height: 340px; }
.sticky-grid { grid-template-columns: 1.15fr 0.85fr; align-items: start; }
.sticky-panel { position: sticky; top: 18px; }
.footer-note {
  padding: 40px 0 80px;
  color: rgba(16, 45, 70, 0.68);
  font-size: 14px;
}
.index-intro {
  padding: 56px;
  background:
    radial-gradient(circle at top left, rgba(208, 171, 98, 0.2), transparent 38%),
    linear-gradient(135deg, #fffdf9 0%, #f6efe5 100%);
  box-shadow: var(--shadow);
}
.mockup-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mockup-card {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 45, 70, 0.08);
  box-shadow: 0 18px 40px rgba(27, 33, 38, 0.08);
}
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(16, 45, 70, 0.06);
  color: var(--navy);
  font-size: 13px;
}
.viewer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.viewer-card {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 45, 70, 0.08);
  box-shadow: 0 18px 40px rgba(27, 33, 38, 0.08);
}
.viewer-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(16, 45, 70, 0.08);
}
.viewer-card strong {
  font-size: 1rem;
}
.viewer-card p {
  color: rgba(30, 31, 33, 0.72);
  font-size: 0.95rem;
  line-height: 1.5;
}
.viewer-link {
  cursor: zoom-in;
}

.floating-player {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  width: min(360px, calc(100vw - 24px));
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(12, 20, 30, 0.92);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(12, 20, 30, 0.28);
  backdrop-filter: blur(16px);
}
.player-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.player-heading {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.floating-player strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.98rem;
}
.player-summary {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}
.player-status {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}
.player-body {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.player-controls {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  align-items: center;
}
.player-btn {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font: inherit;
  cursor: pointer;
}
.player-toggle {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.82rem;
  white-space: nowrap;
}
.player-volume {
  width: 100%;
  accent-color: #d0ab62;
}
.floating-player.is-collapsed {
  width: min(290px, calc(100vw - 24px));
}
.floating-player.is-collapsed .player-body {
  display: none;
}

.viewer-modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(9, 12, 18, 0.82);
}
.viewer-modal.is-open {
  display: grid;
}
.viewer-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  padding: 20px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(9, 12, 18, 0.3);
}
.viewer-dialog img {
  width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 16px;
}
.viewer-caption {
  margin-top: 12px;
  color: rgba(30, 31, 33, 0.72);
  font-size: 0.94rem;
}
.viewer-close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(16, 45, 70, 0.08);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
}
.route h1 { font-size: clamp(40px, 6vw, 72px); line-height: 0.98; }
.route h2 { font-size: clamp(28px, 3.4vw, 44px); line-height: 1.02; }
.route h3 { font-size: clamp(20px, 2vw, 28px); line-height: 1.1; }
.route p { font-size: 18px; line-height: 1.62; }
.support, .micro { color: rgba(30, 31, 33, 0.78); }
.micro { font-size: 15px; line-height: 1.55; }
.route-1 { font-family: "Manrope", "Segoe UI", sans-serif; }
.route-1 h1, .route-1 h2, .route-1 h3, .route-1 .quote-text {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
}
.route-1 .hero {
  background:
    radial-gradient(circle at top left, rgba(208, 171, 98, 0.25), transparent 34%),
    linear-gradient(135deg, #fffdf9 0%, #efe6db 100%);
}
.route-1 .eyebrow { background: rgba(16, 45, 70, 0.08); color: var(--navy); }
.route-1 .floating-note {
  position: absolute;
  right: 28px;
  bottom: 28px;
  max-width: 290px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 248, 240, 0.92);
  border: 1px solid rgba(16, 45, 70, 0.08);
}
.route-2 { font-family: "IBM Plex Sans", "Segoe UI", sans-serif; background: linear-gradient(180deg, #f6f3ee 0%, #eef0ee 100%); }
.route-2 h1, .route-2 h2, .route-2 h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; }
.route-2 .hero { background: linear-gradient(135deg, #102d46 0%, #163552 48%, #214262 100%); color: white; }
.route-2 .eyebrow { color: white; background: rgba(255, 255, 255, 0.08); }
.route-2 .hero p,
.route-2 .hero .support,
.route-2 .hero .micro {
  color: rgba(255, 255, 255, 0.84);
}
.route-2 .btn-primary { background: #f0cb7a; color: #11253a; }
.route-2 .btn-secondary { color: white; border-color: rgba(255, 255, 255, 0.26); background: transparent; }
.route-2 .metric-band { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.route-2 .metric-band .panel { background: rgba(255, 255, 255, 0.9); }
.route-3 { font-family: "DM Sans", "Segoe UI", sans-serif; background: radial-gradient(circle at top right, rgba(208, 171, 98, 0.16), transparent 26%), linear-gradient(180deg, #fcf8f3 0%, #f5efe8 100%); }
.route-3 h1, .route-3 h2, .route-3 h3, .route-3 .quote-text { font-family: "Fraunces", Georgia, serif; font-weight: 500; }
.route-3 .hero { background: linear-gradient(135deg, #fffaf4 0%, #f2e8dc 100%); }
.route-3 .hero-grid { grid-template-columns: 0.95fr 1.05fr; }
.route-3 .conversation-grid { grid-template-columns: 0.85fr 1.15fr; }
.route-4 { font-family: "Work Sans", "Segoe UI", sans-serif; background: linear-gradient(180deg, #f5efe8 0%, #f1ede6 52%, #f8f4ee 100%); }
.route-4 h1, .route-4 h2, .route-4 h3, .route-4 .quote-text { font-family: "Libre Baskerville", Georgia, serif; }
.route-4 .hero {
  background:
    radial-gradient(circle at bottom right, rgba(74, 94, 79, 0.22), transparent 30%),
    linear-gradient(135deg, #fcf8f1 0%, #ece1d2 100%);
}
.route-4 .paper-band {
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px dashed rgba(16, 45, 70, 0.18);
}
.route-5 { font-family: "Source Sans 3", "Segoe UI", sans-serif; background: linear-gradient(180deg, #f7f7f5 0%, #f2efe8 100%); }
.route-5 h1, .route-5 h2, .route-5 h3 { font-family: "Space Grotesk", "Segoe UI", sans-serif; font-weight: 700; }
.route-5 .hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(208, 171, 98, 0.32), transparent 22%),
    linear-gradient(135deg, #112b44 0%, #1d3f62 100%);
  color: white;
}
.route-5 .eyebrow { color: white; background: rgba(255, 255, 255, 0.08); }
.route-5 .hero p,
.route-5 .hero .support,
.route-5 .hero .micro {
  color: rgba(255, 255, 255, 0.84);
}
.route-5 .btn-primary { background: #ffdc8f; color: #122b42; }
.route-5 .btn-secondary { color: white; border-color: rgba(255, 255, 255, 0.22); background: transparent; }

.route-6 {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: #16181b;
  background:
    linear-gradient(180deg, #edf1f4 0%, #f7f9fb 16%, #ffffff 16%, #ffffff 100%);
}
.route-6 .topbar {
  border-bottom: 1px solid rgba(22, 24, 27, 0.12);
}
.route-6 .nav-links {
  color: rgba(22, 24, 27, 0.72);
}
.route-6 .hero,
.route-6 .panel,
.route-6 .section-card,
.route-6 .quote-card,
.route-6 .cta-card,
.route-6 .sticky-panel,
.route-6 .note-card,
.route-6 .issue-card,
.route-6 .index-intro,
.route-6 .timeline {
  border-radius: 8px;
  box-shadow: none;
}
.route-6 .hero {
  background:
    linear-gradient(90deg, rgba(22, 24, 27, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(22, 24, 27, 0.06) 1px, transparent 1px),
    #ffffff;
  background-size: 40px 40px;
  border: 1px solid rgba(22, 24, 27, 0.12);
}
.route-6 h1,
.route-6 h2,
.route-6 h3,
.route-6 .quote-text {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.route-6 .eyebrow,
.route-6 .kicker,
.route-6 .label {
  background: rgba(22, 24, 27, 0.06);
  color: #0d3b66;
}
.route-6 .btn-primary {
  background: #16181b;
  color: #ffffff;
}
.route-6 .btn-secondary {
  background: #ffffff;
  color: #16181b;
  border-color: rgba(22, 24, 27, 0.16);
}
.route-6 .section-card,
.route-6 .quote-card,
.route-6 .cta-card,
.route-6 .sticky-panel,
.route-6 .note-card,
.route-6 .issue-card,
.route-6 .panel {
  background: #ffffff;
  border: 1px solid rgba(22, 24, 27, 0.12);
}
.route-6 .hero-media img,
.route-6 .portrait-card img,
.route-6 .photo-stack img,
.route-6 .photo-strip img {
  filter: grayscale(100%) contrast(1.04);
  border-radius: 8px;
}
.route-6 .timeline {
  background: #16181b;
}
.route-6 .timeline-step strong {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}
.route-6 .paper-band {
  padding: 16px 18px;
  border-radius: 8px;
  background: #16181b;
  color: #ffffff;
}
.route-6 .paper-band .micro {
  color: rgba(255, 255, 255, 0.82);
}
.route-6 .footer-note {
  color: rgba(22, 24, 27, 0.62);
}
.route-advice {
  background:
    radial-gradient(circle at top left, rgba(208, 171, 98, 0.18), transparent 24%),
    linear-gradient(180deg, #faf6f0 0%, #f5f0e9 46%, #fbf8f4 100%);
}
.route-advice h1,
.route-advice h2,
.route-advice h3,
.route-advice .quote-text {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
}
.route-advice .hero {
  background:
    radial-gradient(circle at top left, rgba(16, 45, 70, 0.14), transparent 28%),
    linear-gradient(135deg, #fffdf8 0%, #f1e7da 100%);
}
.advice-hero .hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
}
.advice-summary-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(16, 45, 70, 0.94), rgba(25, 37, 58, 0.96));
  color: #ffffff;
}
.advice-summary-card .label,
.advice-summary-card .micro,
.advice-summary-card h2 {
  color: rgba(255, 255, 255, 0.9);
}
.advice-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.advice-summary-card .chip {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.advice-highlight {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
  padding: 28px 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 45, 70, 0.08);
  box-shadow: 0 18px 40px rgba(27, 33, 38, 0.08);
}
.advice-structure-grid {
  align-items: stretch;
}
.advice-team-grid .section-card,
.advice-structure-grid .section-card {
  height: 100%;
}
.advice-next-steps {
  margin-bottom: 40px;
}
@media (max-width: 980px) {
  .hero-grid, .sticky-grid, .photo-stack, .conversation-grid, .mockup-grid, .cards-3, .cards-4, .route-2 .metric-band { grid-template-columns: 1fr; }
  .advice-hero .hero-grid { grid-template-columns: 1fr; }
  .viewer-grid { grid-template-columns: 1fr 1fr; }
  .topbar { flex-direction: column; align-items: flex-start; }
  .nav-links { width: 100%; gap: 10px; }
  .nav-links a { flex: 1 1 auto; text-align: center; }
  .hero-copy, .panel, .section-card, .quote-card, .cta-card, .timeline, .sticky-panel, .note-card, .issue-card, .index-intro { padding: 24px; }
  .sticky-panel { position: static; }
}
@media (max-width: 640px) {
  .page-shell { width: min(100% - 24px, 1180px); }
  .topbar { gap: 14px; padding: 18px 0 14px; }
  .brand-lockup img { width: 170px; }
  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 8px;
  }
  .nav-links a {
    padding: 12px 10px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .hero,
  .panel,
  .section-card,
  .quote-card,
  .cta-card,
  .timeline,
  .sticky-panel,
  .note-card,
  .issue-card,
  .index-intro,
  .mockup-card,
  .viewer-card {
    border-radius: 22px;
  }
  .hero-copy, .panel, .section-card, .quote-card, .cta-card, .timeline, .sticky-panel, .note-card, .issue-card, .index-intro { padding: 20px; }
  .section { padding: 18px 0; }
  .route p { font-size: 17px; }
  h1 { font-size: clamp(2.2rem, 11vw, 3.6rem); line-height: 0.98; }
  h2 { font-size: clamp(1.65rem, 8vw, 2.4rem); line-height: 1.02; }
  .cta-row { flex-direction: column; }
  .btn { width: 100%; }
  .viewer-grid,
  .player-controls { grid-template-columns: 1fr; }
  .viewer-grid { gap: 14px; }
  .floating-player {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 12px 14px;
    border-radius: 18px;
  }
  .floating-player.is-collapsed {
    width: auto;
  }
  body { padding-bottom: 88px; }
}
