/* ============================================
   Dr. Marius Scheepers — kelownaeye.ca
   Design system: refined medical-editorial
   Typography: Fraunces (display) + Inter Tight (body)
   ============================================ */

:root {
  /* Color palette — calm, clinical, trustworthy */
  --ink: #0f1e2c;            /* near-black with blue cast */
  --ink-soft: #38495b;       /* secondary text */
  --ink-muted: #6b7a8a;      /* tertiary text */
  --paper: #fafaf7;          /* warm off-white */
  --paper-alt: #f3f1ea;      /* card / band background */
  --paper-warm: #ece8dc;     /* deeper warm tone */
  --accent: #1d4d57;         /* deep teal — for buttons, links */
  --accent-hover: #143841;
  --accent-soft: #d9e2dd;    /* very pale teal background */
  --rule: #d8d3c4;           /* hairlines */
  --gold: #a07e3f;           /* small accent for credentials */

  /* Type scale */
  --display: "Fraunces", "Times New Roman", Georgia, serif;
  --body: "Inter Tight", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  /* Spacing */
  --container: 1180px;
  --container-narrow: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
}

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

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-hover); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 350;
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 144;
  color: var(--accent);
}

h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 400;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--body);
  letter-spacing: 0.01em;
}

.eyebrow {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: block;
}

.eyebrow-gold { color: var(--gold); }

p { margin-bottom: 1.1em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; margin-bottom: 1.1em; }
li { margin-bottom: 0.4em; }

strong { font-weight: 600; color: var(--ink); }

blockquote {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.35;
  font-style: italic;
  font-weight: 350;
  color: var(--ink);
  border: none;
  padding: 0;
  margin: 0;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 5rem 0;
}

section.tight { padding: 3.5rem 0; }
section.large { padding: 7rem 0; }

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  section.large { padding: 4.5rem 0; }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rule);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-eye {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  cursor: pointer;
}

.eye-logo-svg {
  width: 78px;
  height: 43px;
  overflow: visible;
  display: block;
}

.brand-text { display: inline-block; line-height: 1.05; }

.brand .brand-sub {
  display: block;
  font-family: var(--body);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
}

.nav-links a:hover { color: var(--accent); }

.nav-links a.active {
  color: var(--ink);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 2px;
  font-size: 0.88rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--paper) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.95rem 1.75rem;
  border-radius: 2px;
  font-family: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover {
  background: var(--accent);
  color: var(--paper);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.btn-group {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================
   HERO (HOME)
   ============================================ */
.hero {
  position: relative;
  padding: 6rem 0 4.5rem;
  background: var(--paper);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-soft) 0%, var(--paper) 100%);
  z-index: 0;
  opacity: 0.6;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text { max-width: 620px; }

.hero-text h1 { margin-bottom: 1.5rem; }

.hero-subhead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0;
}

.hero-meta {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.hero-meta strong {
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 2px;
}

.hero-images {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 60px -20px rgba(15, 30, 44, 0.35);
  background: #000;
}

/* Surgery photo — taller */
.hero-images .hero-image:first-child {
  aspect-ratio: 4/3;
}

/* Clinic photo — wider */
.hero-images .hero-image:last-child {
  aspect-ratio: 16/9;
}

.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.hero-image--surgery { background: #1d2b34; }
.hero-image--surgery img { object-position: 38% center; }

.hero-image--clinic { background: #1a2630; }
.hero-image--clinic img { object-position: center 30%; }

.hero-image-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.4rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero { padding: 3rem 0 3rem; }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero::before { display: none; }
  .hero-images { max-width: 480px; margin: 0 auto; flex-direction: row; }
  .hero-images .hero-image:first-child,
  .hero-images .hero-image:last-child { aspect-ratio: 3/4; flex: 1; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: var(--ink);
  color: var(--paper);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat {
  text-align: left;
  border-left: 1px solid rgba(250, 250, 247, 0.18);
  padding-left: 1.5rem;
}

.stat-num {
  font-family: var(--display);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 350;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  color: var(--paper);
}

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: rgba(250, 250, 247, 0.7);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}

/* ============================================
   QUOTE / PROMISE
   ============================================ */
.promise {
  background: var(--paper-alt);
  position: relative;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}

.promise blockquote {
  position: relative;
  padding-left: 0;
}

.promise blockquote::before {
  content: "“";
  position: absolute;
  top: -3rem;
  left: -1rem;
  font-family: var(--display);
  font-size: 8rem;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
}

.promise-attribution {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.promise-body p {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

@media (max-width: 800px) {
  .promise-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-intro {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.services-intro p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-top: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}

.service-card {
  background: var(--paper);
  padding: 2.25rem 2rem;
  transition: background 0.25s;
  display: flex;
  flex-direction: column;
}

.service-card:hover { background: var(--paper-alt); }

.service-num {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.service-card h3 {
  margin-bottom: 0.85rem;
  font-family: var(--display);
  font-weight: 450;
  font-size: 1.35rem;
}

.service-card p {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .learn {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-card .learn::after {
  content: " →";
  transition: margin-left 0.2s;
}
.service-card:hover .learn::after { margin-left: 4px; }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust {
  background: var(--paper-warm);
  padding: 3rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem 2.5rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.93rem;
  color: var(--ink);
  line-height: 1.45;
}

.trust-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

@media (max-width: 720px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGE HEADER (for sub-pages)
   ============================================ */
.page-header {
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid var(--rule);
  background: var(--paper);
}

.page-header h1 {
  max-width: 820px;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.page-header .lead {
  max-width: 640px;
  margin-top: 1.5rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================
   PROSE CONTENT (long-form pages)
   ============================================ */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  margin-top: 2.5rem;
  margin-bottom: 0.9rem;
  font-family: var(--body);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.prose p { font-size: 1.02rem; color: var(--ink); }
.prose ul, .prose ol { margin-bottom: 1.4em; }
.prose li { font-size: 1.02rem; color: var(--ink); }

.prose hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 3rem 0;
}

/* Inline highlight box */
.highlight {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  font-size: 1rem;
}

.highlight strong { color: var(--accent); }

/* ============================================
   QUALIFICATIONS TABLE
   ============================================ */
.qual-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.qual-table th,
.qual-table td {
  text-align: left;
  padding: 0.9rem 0.5rem;
  border-bottom: 1px solid var(--rule);
}

.qual-table th {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.qual-table td:first-child {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
  width: 80px;
}

/* ============================================
   REFERRAL / URGENCY CARDS
   ============================================ */
.urgency-stack { display: grid; gap: 1.25rem; margin: 2rem 0; }

.urgency-card {
  border-left: 4px solid;
  padding: 1.5rem 1.75rem;
  background: var(--paper-alt);
}

.urgency-card.urgent { border-color: #b14d3a; background: #f8ece8; }
.urgency-card.semi { border-color: #b78938; background: #f6efde; }
.urgency-card.routine { border-color: var(--accent); background: var(--accent-soft); }

.urgency-card h4 {
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.urgency-card.urgent h4 { color: #8a3525; }
.urgency-card.semi h4 { color: #7a5a1f; }
.urgency-card.routine h4 { color: var(--accent); }

.urgency-card ul { margin: 0; padding-left: 1.2em; }
.urgency-card li { font-size: 0.95rem; margin-bottom: 0.25em; }

/* ============================================
   CONTACT BLOCK
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.contact-card {
  background: var(--paper-alt);
  padding: 2rem;
  border-top: 3px solid var(--accent);
}

.contact-card.secondary { border-top-color: var(--ink-muted); }

.contact-card h3 {
  font-family: var(--display);
  font-weight: 450;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-card .addr {
  font-style: normal;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--ink);
}

.contact-card .addr a { color: var(--ink); font-weight: 500; }
.contact-card .addr a:hover { color: var(--accent); }

.contact-card .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-block;
  width: 50px;
}

@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: rgba(250, 250, 247, 0.75);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand {
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--paper);
  margin-bottom: 0.6rem;
  font-weight: 450;
}

.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(250, 250, 247, 0.6);
}

.footer-col h5 {
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.55em; }
.footer-col a { color: rgba(250, 250, 247, 0.7); font-size: 0.92rem; }
.footer-col a:hover { color: var(--paper); }

.footer-bottom {
  border-top: 1px solid rgba(250, 250, 247, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(250, 250, 247, 0.5);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PHOTO BAND (full-width image strip)
   ============================================ */
.photo-band {
  padding: 0;
  overflow: hidden;
  max-height: 420px;
}

.photo-band img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}

/* ============================================
   PROSE FIGURE (inline captioned images)
   ============================================ */
.prose figure {
  margin: 2.5rem 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 32px -8px rgba(15,30,44,0.2);
}

.prose figure img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.prose figure figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.75rem 1rem;
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
}

/* Two-column image+text layout for tech pages */
.tech-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin: 2.5rem 0;
}

.tech-row.reverse { direction: rtl; }
.tech-row.reverse > * { direction: ltr; }

.tech-row figure {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 32px -8px rgba(15,30,44,0.2);
}

.tech-row figure img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.tech-row figure figcaption {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.6rem 0.9rem;
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
}

@media (max-width: 720px) {
  .tech-row { grid-template-columns: 1fr; }
  .tech-row.reverse { direction: ltr; }
  .photo-band img { height: 260px; }
}

/* ============================================
   BEFORE / AFTER COMPARISON (topography etc.)
   ============================================ */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.before-after figure {
  margin: 0;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 8px 32px -8px rgba(15,30,44,0.2);
}

.before-after figure img {
  width: 100%;
  height: auto;
  display: block;
}

.before-after figure figcaption {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0.75rem 1rem;
  background: var(--paper-alt);
  border-top: 1px solid var(--rule);
}

.before-after figure figcaption strong {
  display: block;
  font-size: 1rem;
  font-family: var(--display);
  font-weight: 450;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

@media (max-width: 600px) {
  .before-after { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--ink);
  color: var(--paper);
  padding: 5rem 0;
}

.testimonials-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-intro .eyebrow { color: rgba(250,250,247,0.55); }

.testimonials-intro h2 {
  color: var(--paper);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(250,250,247,0.06);
  border-top: 2px solid rgba(250,250,247,0.15);
  padding: 2rem;
  position: relative;
}

.testimonial-stars {
  color: #c9a84c;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.5;
  font-weight: 350;
  color: var(--paper);
  margin-bottom: 1.5rem;
}

.testimonial-meta {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.45);
}

.testimonial-source {
  margin-top: 0.35rem;
  font-size: 0.75rem;
  color: rgba(250,250,247,0.3);
}

@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
}

/* ============================================
   UTILITIES & MISC
   ============================================ */
.divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Smooth fade-in on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.7s ease-out backwards;
}
.fade-up.delay-1 { animation-delay: 0.1s; }
.fade-up.delay-2 { animation-delay: 0.2s; }
.fade-up.delay-3 { animation-delay: 0.3s; }
