/* ==========================================================================
   Making AI Work for Britain — Shared Stylesheet
   System fonts, high contrast, bold simplicity
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #111;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

::selection { background: #f5d5cb; color: #111; }

img { max-width: 100%; height: auto; }

/* --- Skip to content --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: #111;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0 0 6px 6px;
}
.skip-link:focus {
  top: 0;
}

/* --- Focus visible --- */
:focus-visible {
  outline: 3px solid #c0441e;
  outline-offset: 2px;
}

/* --- Headings (Georgia serif) --- */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  color: #111;
  line-height: 1.15;
}

/* --- Links & interactive elements --- */
a { color: #c0441e; }
a:hover { color: #9a3618; }

a, button, input, select, textarea {
  touch-action: manipulation;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #ddd;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 19px;
  color: #111;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-logo span { color: #c0441e; }

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
}
.nav-links a:hover { color: #111; }

.nav-cta {
  display: inline-block;
  background: #c0441e;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.nav-cta:hover {
  background: #9a3618;
  color: #fff !important;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #111;
  transition: transform 0.2s, opacity 0.2s;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary {
  display: inline-block;
  background: #c0441e;
  color: #fff;
  padding: 18px 40px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-decoration: none;
  font-family: inherit;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  background: #9a3618;
  color: #fff;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding: 140px 32px 100px;
  background: #f3f1ed;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0441e;
  background: #faeae5;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: #c0441e;
}

.hero-subtitle {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 26px;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.4;
}

.hero-book {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-book img {
  width: 280px;
  display: block;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.book-badge {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: #c0441e;
}

/* ==========================================================================
   Sections — shared
   ========================================================================== */

section {
  padding: 100px 32px;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-tag {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c0441e;
  margin-bottom: 12px;
}

.section-title {
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.section-lead {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  max-width: 640px;
}

/* ==========================================================================
   The Argument (index)
   ========================================================================== */

.argument { background: #fff; }

.argument-points {
  margin-top: 40px;
  display: grid;
  gap: 24px;
}

.argument-point {
  font-size: 21px;
  line-height: 1.55;
  color: #1a1a1a;
  padding-left: 28px;
  border-left: 6px solid #c0441e;
}
.argument-point strong { color: #111; }

.three-roads {
  margin-top: 56px;
  padding: 40px;
  background: #f3f1ed;
  border-radius: 12px;
}

.three-roads h3 {
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.roads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.road-card {
  padding: 24px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.road-card.recommended {
  border-color: #c0441e;
  border-width: 2px;
  background: #fdf6f4;
}
.road-card .road-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}
.road-card.recommended .road-label {
  color: #c0441e;
}
.road-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}
.road-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.argument-link {
  display: inline-block;
  margin-top: 40px;
  font-size: 16px;
  font-weight: 700;
  color: #c0441e;
  text-decoration: none;
}
.argument-link:hover { text-decoration: underline; }

/* ==========================================================================
   Structure / Parts
   ========================================================================== */

.structure { background: #f3f1ed; }

.parts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.part-card {
  background: #fff;
  border: 1px solid #ddd;
  border-top: 4px solid #c0441e;
  padding: 36px 28px;
  border-radius: 10px;
}

.part-card .part-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #c0441e;
  margin-bottom: 8px;
}

.part-card h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.part-card .part-chapters {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-bottom: 14px;
}

.part-card p {
  font-size: 16px;
  line-height: 1.65;
  color: #444;
}

/* ==========================================================================
   Author
   ========================================================================== */

.author { background: #fff; }

.author-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  margin-top: 36px;
  align-items: start;
}

.author-photo {
  width: 200px;
  height: 240px;
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #ddd;
}

.author-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-bio h3 {
  font-size: 32px;
  margin-bottom: 4px;
}

.author-role {
  font-size: 16px;
  color: #c0441e;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.5;
}

.author-bio p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 16px;
}

.author-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.author-links a {
  font-size: 15px;
  font-weight: 700;
  color: #c0441e;
  text-decoration: none;
}
.author-links a:hover { text-decoration: underline; }

/* ==========================================================================
   Waitlist
   ========================================================================== */

.waitlist {
  background: #1a1a1a;
  text-align: center;
  color: #fff;
}

.waitlist .section-tag { color: #e8a08d; }
.waitlist .section-title { color: #fff; margin-bottom: 8px; }
.waitlist .waitlist-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.waitlist-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist-form label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.waitlist-form input[type="email"] {
  flex: 1;
  padding: 16px 18px;
  font-size: 16px;
  font-family: inherit;
  border: 2px solid rgba(255,255,255,0.2);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.waitlist-form input[type="email"]::placeholder { color: rgba(255,255,255,0.5); }
.waitlist-form input[type="email"]:focus {
  border-color: #c0441e;
  background: rgba(255,255,255,0.15);
  outline: none;
}

.waitlist-form button {
  padding: 16px 28px;
  background: #c0441e;
  color: #fff;
  border: 2px solid #c0441e;
  border-radius: 0 8px 8px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  cursor: pointer;
}
.waitlist-form button:hover {
  background: #d4552e;
  border-color: #d4552e;
}

.form-success {
  display: none;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #e8a08d;
}
.form-success.show { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-size: 14px;
  color: #888;
  line-height: 1.6;
}
.footer-left strong {
  font-family: Georgia, serif;
  color: #111;
  font-weight: 700;
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
}

.footer-right {
  display: flex;
  gap: 24px;
}

.footer-right a {
  font-size: 14px;
  font-weight: 600;
  color: #444;
  text-decoration: none;
}
.footer-right a:hover { color: #c0441e; }

/* ==========================================================================
   about.html — Page Header
   ========================================================================== */

.page-header {
  padding: 140px 32px 80px;
  background: #f3f1ed;
}

.page-header .header-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  margin-bottom: 16px;
}
.breadcrumb a {
  color: #c0441e;
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }

.page-header h1 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.page-header h1 em {
  font-style: italic;
  font-weight: 400;
  color: #c0441e;
}

.page-header .header-sub {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: #444;
  margin-bottom: 16px;
}

.page-header .header-meta {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
}
.page-header .header-meta strong { color: #111; }

/* ==========================================================================
   about.html — Preface
   ========================================================================== */

.preface { background: #fff; }
.preface-content {
  max-width: 720px;
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.75;
  color: #444;
}
.preface-content p { margin-bottom: 18px; }
.preface-content strong { color: #111; font-weight: 700; }

/* ==========================================================================
   about.html — Chapter guide
   ========================================================================== */

.chapters { background: #f3f1ed; }

.chapters-list { margin-top: 40px; }

.chapter-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #ddd;
  align-items: baseline;
}
.chapter-item:first-child { border-top: 1px solid #ddd; }

.chapter-item .ch-num {
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: #c0441e;
  line-height: 1;
}

.chapter-item .ch-part-tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 4px;
}

.chapter-item h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.chapter-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* ==========================================================================
   about.html — Audience
   ========================================================================== */

.audience { background: #fff; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.audience-card {
  background: #f3f1ed;
  border: 1px solid #ddd;
  border-top: 4px solid #c0441e;
  padding: 32px 24px;
  border-radius: 10px;
}

.audience-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.audience-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #444;
}

/* ==========================================================================
   Infographic
   ========================================================================== */

.infographic { background: #fff; }

.infographic-wrap {
  margin-top: 32px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #ddd;
}

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

/* ==========================================================================
   about.html — CTA banner
   ========================================================================== */

.cta-banner {
  background: #f3f1ed;
  text-align: center;
}
.cta-banner .section-title { margin-bottom: 8px; }
.cta-banner p {
  font-size: 17px;
  color: #444;
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ==========================================================================
   Responsive — Tablet (768px)
   ========================================================================== */

@media (max-width: 768px) {
  body { font-size: 16px; }

  /* --- Nav: hamburger menu --- */
  .nav-inner { padding: 0 16px; height: 56px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #ddd;
    flex-direction: column;
    padding: 12px 20px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav-links.active { display: flex; }

  .nav-links a {
    display: block;
    padding: 12px 8px;
    font-size: 16px;
    border-radius: 6px;
  }
  .nav-links a:hover { background: #f5f5f5; }

  .nav-cta {
    text-align: center;
    padding: 14px 20px !important;
    margin-top: 4px;
  }

  .mobile-menu-btn {
    display: flex;
    min-width: 44px;
    min-height: 44px;
  }

  /* --- Sections: tighter padding --- */
  section { padding: 56px 16px; }

  /* --- Hero: centered, book on top --- */
  .hero { padding: 100px 16px 56px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .hero-book { order: -1; }
  .hero-book img { width: 180px; }
  .hero h1 { font-size: 38px; }
  .hero-subtitle { font-size: 20px; margin-bottom: 28px; }
  .hero-tag { font-size: 11px; margin-bottom: 16px; padding: 5px 12px; }

  .btn-primary {
    padding: 16px 24px;
    font-size: 16px;
  }

  .hero .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* --- Section headings --- */
  .section-title { font-size: 30px; }
  .section-tag { font-size: 12px; }
  .section-lead { font-size: 16px; }

  /* --- Argument --- */
  .argument-point { font-size: 17px; padding-left: 18px; }
  .argument-points { gap: 18px; margin-top: 28px; }

  .three-roads { padding: 20px; margin-top: 36px; }
  .three-roads h3 { font-size: 22px; margin-bottom: 16px; }
  .roads-grid { grid-template-columns: 1fr; gap: 16px; }
  .road-card { padding: 20px; }
  .road-card h4 { font-size: 18px; }
  .road-card p { font-size: 14px; }

  .argument-link { margin-top: 28px; }

  /* --- Infographic: horizontal scroll on small screens --- */
  .infographic-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .infographic-wrap img {
    min-width: 600px;
  }

  /* --- Parts / Structure --- */
  .parts-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 28px; }
  .part-card { padding: 28px 20px; }
  .part-card h3 { font-size: 20px; }
  .part-card p { font-size: 15px; }

  /* --- Author --- */
  .author-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .author-photo {
    margin: 0 auto;
    width: 140px;
    height: 170px;
  }
  .author-bio h3 { font-size: 24px; }
  .author-bio p { font-size: 16px; }
  .author-links {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }
  .author-links a { padding: 8px 0; }

  /* --- Waitlist --- */
  .waitlist-form { flex-direction: column; }
  .waitlist-form input[type="email"] {
    border-right: 2px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
  }
  .waitlist-form input[type="email"]:focus { border-right-color: #c0441e; }
  .waitlist-form button {
    border-radius: 8px;
    margin-top: 8px;
    padding: 16px 24px;
    font-size: 16px;
  }

  /* --- about.html: Page header --- */
  .page-header { padding: 100px 16px 40px; }
  .page-header h1 { font-size: 30px; }
  .page-header .header-sub { font-size: 18px; }
  .page-header .header-meta { font-size: 14px; }

  /* --- about.html: Preface --- */
  .preface-content { font-size: 16px; }

  /* --- about.html: Chapter guide --- */
  .chapter-item { grid-template-columns: 36px 1fr; gap: 14px; padding: 18px 0; }
  .chapter-item .ch-num { font-size: 26px; }
  .chapter-item h4 { font-size: 17px; }
  .chapter-item p { font-size: 15px; }

  /* --- about.html: Audience --- */
  .audience-grid { grid-template-columns: 1fr; gap: 16px; }
  .audience-card { padding: 24px 20px; }
  .audience-card h3 { font-size: 18px; }

  /* --- CTA banner --- */
  .cta-banner p { font-size: 16px; }
  .cta-banner .btn-primary { display: inline-block; width: auto; }

  /* --- Footer --- */
  footer { padding: 36px 16px; }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  .footer-right a {
    padding: 6px 4px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ==========================================================================
   Responsive — Small phones (< 400px)
   ========================================================================== */

@media (max-width: 400px) {
  .hero h1 { font-size: 32px; }
  .hero-subtitle { font-size: 18px; }
  .hero-book img { width: 150px; }

  .section-title { font-size: 26px; }
  .three-roads h3 { font-size: 22px; }
  .three-roads { padding: 16px; }

  .argument-point { font-size: 16px; }
  .road-card h4 { font-size: 17px; }

  .author-photo { width: 120px; height: 140px; }
  .author-bio h3 { font-size: 24px; }

  .page-header h1 { font-size: 28px; }
  .page-header .header-sub { font-size: 16px; }
}

/* ==========================================================================
   Recommendations Summary Page Styles
   ========================================================================== */

/* Numbered recommendations */
.rec-numbered {
  margin: 20px 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}

.rec-num {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  color: #c0441e;
  line-height: 1.2;
  text-align: right;
}

.rec-numbered p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}

.rec-numbered strong {
  color: #111;
  font-weight: 600;
}

/* Recommendation areas (highlighted boxes) */
.rec-area {
  margin: 24px 0;
  padding: 24px 28px;
  background: #fafafa;
  border-left: 4px solid #c0441e;
  border-radius: 0 6px 6px 0;
}

.rec-area h3 {
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.rec-area p {
  font-size: 17px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 12px;
}

.rec-area p:last-child {
  margin-bottom: 0;
}

.rec-area strong {
  color: #111;
  font-weight: 600;
}

/* Roadmap phases */
.roadmap-phase {
  margin: 28px 0;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.roadmap-phase .phase-header {
  padding: 16px 24px;
  background: #f0f0f0;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid #ddd;
}

.roadmap-phase .phase-header h4 {
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: #111;
  margin: 0;
}

.roadmap-phase .phase-header span {
  font-size: 13px;
  font-weight: 500;
  color: #c0441e;
  letter-spacing: 0.5px;
}

.roadmap-phase .phase-body {
  padding: 20px 24px;
}

.roadmap-phase .phase-body p {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 12px;
}

.roadmap-phase .phase-body p:last-child {
  margin-bottom: 0;
}

.roadmap-phase .phase-body strong {
  color: #111;
  font-weight: 600;
}

.roadmap-phase .phase-body em {
  font-style: italic;
  color: #555;
}

/* Quote block */
.rec-quote {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid #c0441e;
  background: #fafafa;
  border-radius: 0 6px 6px 0;
}

.rec-quote blockquote {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: #111;
  margin: 0 0 12px 0;
}

.rec-quote cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: #c0441e;
  display: block;
}

/* Responsive adjustments for recommendations */
@media (max-width: 600px) {
  .rec-numbered {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }
  
  .rec-num {
    font-size: 20px;
  }
  
  .rec-numbered p {
    font-size: 16px;
  }
  
  .rec-area {
    padding: 20px;
  }
  
  .rec-area h3 {
    font-size: 20px;
  }
  
  .rec-area p {
    font-size: 16px;
  }
  
  .roadmap-phase .phase-header {
    flex-direction: column;
    gap: 8px;
  }
  
  .roadmap-phase .phase-body {
    padding: 16px 20px;
  }
  
  .rec-quote {
    padding: 20px;
  }
  
  .rec-quote blockquote {
    font-size: 18px;
  }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */

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