/* ============================================
   Rosalin Smith-Carr – Authority Site
   Design: Luxury Editorial / Irish-Inspired
   Palette: Deep Forest Green · Aged Gold · Ivory
   ============================================ */

:root {
  --green-deep: #1a3028;
  --green-mid: #2a4a3a;
  --green-light: #3d6b55;
  --green-pale: #e8f0ec;
  --gold: #b89a4e;
  --gold-light: #d4b76a;
  --gold-pale: #f5eed8;
  --ivory: #faf7f2;
  --ivory-dark: #f0ebe0;
  --text-dark: #1a1a16;
  --text-body: #2d2d28;
  --text-muted: #6b6b60;
  --text-light: #a8a89a;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(26,48,40,0.08);
  --shadow-md: 0 8px 40px rgba(26,48,40,0.14);
  --shadow-lg: 0 20px 80px rgba(26,48,40,0.20);
  --radius: 4px;
  --radius-lg: 12px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Libre Baskerville', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── HEADER ── */
.site-header {
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(184,154,78,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(61,107,85,0.3) 0%, transparent 50%);
  pointer-events: none;
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.brokerage-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(184,154,78,0.2);
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.brokerage-divider {
  color: rgba(184,154,78,0.4);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0 6rem;
}

.hero-eyebrow {
  font-family: var(--font-accent);
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-name em {
  font-style: italic;
  color: var(--gold-light);
  display: block;
}

.hero-credentials {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--gold);
  color: var(--green-deep);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,154,78,0.35);
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ── AMAZON BUTTON ── */
.amazon-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #232f3e;
  color: #fff;
  border: 2px solid #FF9900;
  border-radius: 6px;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .2s;
  cursor: pointer;
}
.amazon-btn:hover {
  background: #FF9900;
  color: #111;
  box-shadow: 0 6px 20px rgba(255,153,0,.4);
  transform: translateY(-2px);
}
.amazon-btn-text { font-size: .88rem; font-weight: 700; white-space: nowrap; }
.amazon-logo { flex-shrink: 0; }
.amazon-arrow { flex-shrink: 0; color: #FF9900; transition: color .2s; }
.amazon-btn:hover .amazon-arrow { color: #111; }
.amazon-btn--dark { background: #232f3e; border-color: #FF9900; }
.amazon-btn--dark:hover { background: #FF9900; color: #111; }

/* Hero amazon placement */
.hero-amazon {
  margin-top: 1.75rem;
}

/* Contact section amazon placement */
.contact-amazon {
  display: flex;
  justify-content: center;
  margin: 2rem 0 0;
}

/* ── HERO BOOK VISUAL ── */
.hero-image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.book-card-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 4px 0 var(--gold),
    var(--shadow-lg),
    0 0 0 1px rgba(184,154,78,0.2);
  transform: rotate(-1.5deg);
  transition: var(--transition);
  max-width: 340px;
  width: 100%;
}

.book-card-frame:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow:
    0 6px 0 var(--gold),
    0 30px 100px rgba(26,48,40,0.4),
    0 0 0 1px rgba(184,154,78,0.3);
}

.hero-book-cover {
  width: 100%;
  border-radius: var(--radius-lg);
}

.header-ornament {
  height: 6px;
  background: linear-gradient(90deg, var(--green-deep), var(--gold), var(--green-deep));
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--green-mid);
  padding: 2rem 0;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.stat-divider {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.5;
}

/* ── FOREWORD ── */
.foreword-section {
  background: var(--ivory-dark);
  border-top: 1px solid rgba(184,154,78,0.2);
  border-bottom: 1px solid rgba(184,154,78,0.2);
  padding: 4rem 0;
}

.foreword-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.foreword-label {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.5rem;
}

.foreword-quote {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.65;
  position: relative;
  padding: 0 2rem;
}

.foreword-quote::before,
.foreword-quote::after {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  line-height: 1;
}

.foreword-quote::before {
  top: -1rem;
  left: -0.5rem;
}

.foreword-quote::after {
  content: '\201D';
  bottom: -3rem;
  right: -0.5rem;
}

/* ── SECTION COMMONS ── */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.75rem;
  display: block;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-sub {
  font-family: var(--font-accent);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

/* ── BOOK SECTION ── */
.book-section {
  padding: 7rem 0;
  background: var(--ivory);
}

.book-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.chapters-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* Chapter Cards */
.chapter-card {
  background: var(--white);
  border: 1px solid rgba(184,154,78,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.chapter-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(184,154,78,0.3);
}

.chapter-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 0;
  display: block;
}

.chapter-card-top {
  padding: 2rem;
  position: relative;
  transition: background var(--transition);
}

.chapter-toggle:hover .chapter-card-top,
.chapter-toggle[aria-expanded="true"] .chapter-card-top {
  background: var(--green-pale);
}

.chapter-card-top::before {
  content: '';
  display: block;
  width: 3rem;
  height: 3px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  border-radius: 2px;
}

.chapter-number {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.5rem;
}

.chapter-title {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.chapter-subtitle {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-style: italic;
  color: var(--green-light);
  margin-bottom: 1rem;
}

.chapter-preview {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-right: 2.5rem;
}

/* Expand icon */
.chapter-expand-icon {
  position: absolute;
  right: 1.5rem;
  top: 1.75rem;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expand-line {
  position: absolute;
  width: 14px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}

.expand-line-h {
  transform: rotate(90deg);
}

.chapter-toggle[aria-expanded="true"] .expand-line-h {
  transform: rotate(0deg);
  opacity: 0;
}

/* Chapter Content */
.chapter-content {
  border-top: 1px solid rgba(184,154,78,0.15);
  animation: slideDown 0.4s ease;
}

.chapter-content[hidden] {
  display: none;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.chapter-body {
  padding: 2.5rem 2rem;
  max-height: 600px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gold-light) var(--ivory);
}

.chapter-body::-webkit-scrollbar { width: 6px; }
.chapter-body::-webkit-scrollbar-track { background: var(--ivory); }
.chapter-body::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 3px; }

.chapter-body h4 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--green-deep);
  margin-bottom: 1.25rem;
  line-height: 1.3;
  padding-bottom: 0.875rem;
  border-bottom: 2px solid var(--gold-pale);
}

.chapter-body h5 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--green-mid);
  margin: 1.75rem 0 0.75rem;
}

.chapter-body p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.chapter-body strong {
  color: var(--green-deep);
  font-weight: 700;
}

.chapter-body em {
  font-style: italic;
  color: var(--green-light);
}

/* ── ABOUT ── */
.author-section {
  background: var(--green-deep);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.author-section::before {
  content: '';
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(184,154,78,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.author-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.author-inner .section-eyebrow {
  color: var(--gold);
}

.author-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.75rem;
  line-height: 1.15;
}

.author-intro {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.author-text p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.author-text em {
  color: var(--gold-light);
  font-style: italic;
}

.author-text strong {
  color: var(--white);
}

.author-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.value-tag {
  background: rgba(184,154,78,0.15);
  border: 1px solid rgba(184,154,78,0.3);
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
}

/* ── FAQ ── */
.faq-section {
  background: var(--ivory-dark);
  padding: 7rem 0;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(184,154,78,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid rgba(184,154,78,0.15);
  background: var(--white);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 1.75rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-deep);
  transition: background var(--transition);
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item[open] .faq-question {
  background: var(--green-pale);
}

.faq-item[open] .faq-question::after {
  content: '\2212';
}

.faq-answer {
  padding: 0 1.75rem 1.5rem;
  background: var(--white);
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.8;
}

.faq-answer a {
  color: var(--green-light);
  text-decoration: underline;
  text-decoration-color: rgba(61,107,85,0.3);
  transition: color var(--transition);
}

.faq-answer a:hover {
  color: var(--green-deep);
}

/* ── CONTACT CTA / STRIP ── */
.contact-section {
  background: var(--green-mid);
  padding: 7rem 0;
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section-header--light h2 {
  color: var(--white);
}

.section-header--light .section-eyebrow {
  color: var(--gold);
}

.section-header--light .section-sub {
  color: rgba(255,255,255,0.65);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,154,78,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* Phone — display only, no pointer */
.contact-card--no-action {
  cursor: default;
  pointer-events: none;
}

/* Email copy card */
.contact-card--email {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(184,154,78,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  transition: var(--transition);
}
.contact-card--email:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.contact-icon {
  font-size: 1.5rem;
}

.contact-label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-value {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
}

.contact-address {
  text-align: center;
  font-family: var(--font-accent);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  letter-spacing: 0.03em;
  margin-top: 2rem;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--green-deep);
  border-top: 3px solid var(--gold);
  padding: 3rem 0 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brokerage {
  font-family: var(--font-accent);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.footer-credit {
  font-family: var(--font-accent);
  font-size: 0.8rem;
}

.footer-credit a {
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--gold-light);
}

/* ── TOAST NOTIFICATION ── */
.email-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--green-deep);
  color: var(--gold-light);
  border: 1px solid rgba(184,154,78,0.4);
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 9999;
  white-space: nowrap;
}
.email-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── ANIMATIONS ── */
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE 900px ── */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding: 3rem 0 4rem;
    gap: 3rem;
  }

  .hero-image-wrap {
    order: -1;
  }

  .book-card-frame {
    max-width: 280px;
    transform: rotate(0);
  }

  .chapters-grid {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-inner {
    gap: 1.5rem;
  }
}

/* ── RESPONSIVE 640px ── */
@media (max-width: 640px) {
  .brokerage-bar {
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
  }

  .brokerage-divider { display: none; }

  .hero-ctas {
    flex-direction: column;
  }

  .btn-primary, .btn-secondary {
    text-align: center;
    width: 100%;
  }

  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }

  .stat-divider {
    display: none;
  }

  .stats-inner {
    justify-content: flex-start;
    gap: 1.5rem 2rem;
  }

  .foreword-quote::before,
  .foreword-quote::after {
    display: none;
  }

  .foreword-quote {
    padding: 0;
  }
}

/* ── PRINT ── */
@media print {
  .hero-ctas, .contact-cards { display: none; }
  body { background: white; color: black; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
