/* =========================================================================
   Goal Line Gold — Site Stylesheet
   Premium sports card display brand. Navy + gold + shamrock green palette
   sampled from the Phase 2 logo. Mobile-first, no frameworks.
   ========================================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Brand palette — sampled directly from logo SVGs */
  --navy-deep:      #06182a;   /* primary dark surface */
  --navy-rich:      #0a2e4f;   /* mid navy, cards on dark backgrounds */
  --navy-soft:      #143559;   /* hovers, subtle elevation */
  --gold:           #d8aa32;   /* primary accent (CTAs, dividers) */
  --gold-bright:    #edc036;   /* hover, highlights */
  --gold-warm:      #b8902a;   /* pressed states */
  --green-deep:     #0d584d;   /* rare secondary accent */
  --green-shamrock: #0f8044;   /* logo green — use sparingly */
  --cream:          #f7f3e8;   /* warm light background */
  --bone:           #ede7d3;   /* divider/secondary on light */
  --white:          #ffffff;
  --ink:            #11161d;   /* near-black for body text on light */

  /* Functional aliases */
  --bg-page:        var(--cream);
  --bg-dark:        var(--navy-deep);
  --bg-card-dark:   var(--navy-rich);
  --text-on-light:  var(--ink);
  --text-on-dark:   #f5f1e3;
  --text-muted-d:   rgba(245, 241, 227, 0.66);
  --text-muted-l:   rgba(17, 22, 29, 0.62);
  --border-on-dark: rgba(216, 170, 50, 0.22);
  --border-on-light: rgba(17, 22, 29, 0.10);

  /* Typography */
  --font-display: 'Bebas Neue', 'Oswald', 'Arial Narrow', sans-serif;
  --font-head:    'Oswald', 'Helvetica Neue', sans-serif;
  --font-body:    'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-script:  'Playfair Display', Georgia, serif;

  /* Layout */
  --container-max: 1200px;
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.5rem;
  --gap-lg: 2.5rem;
  --gap-xl: 4rem;
  --gap-xxl: 6rem;

  /* Radius + shadow */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --shadow-card: 0 8px 24px rgba(6, 24, 42, 0.18);
  --shadow-lift: 0 14px 36px rgba(6, 24, 42, 0.28);
  --shadow-gold: 0 6px 18px rgba(216, 170, 50, 0.28);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-on-light);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
/* Honor EXIF orientation from phone camera photos (so portrait shots taken
   in landscape sensor orientation display the right way up). */
img { image-orientation: from-image; }
a { color: var(--navy-deep); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--gold-warm); }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* Headings */
h1, h2, h3, h4 { margin: 0 0 var(--gap-sm); font-family: var(--font-head); font-weight: 600; line-height: 1.15; letter-spacing: 0.5px; }
h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 6vw, 4.8rem); letter-spacing: 1.5px; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 var(--gap-sm); }

/* Utility */
.container { width: 100%; max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gap-md); }
.eyebrow { display: inline-block; font-family: var(--font-head); font-size: 0.85rem; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-warm); margin-bottom: var(--gap-sm); }
.section { padding: var(--gap-xl) 0; }
.section--dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section-head { max-width: 720px; margin: 0 auto var(--gap-lg); text-align: center; }
.section-head p { color: var(--text-muted-l); font-size: 1.05rem; }
.section--dark .section-head p { color: var(--text-muted-d); }
.section--dark .eyebrow { color: var(--gold-bright); }
.text-center { text-align: center; }

/* Gold rule divider */
.rule-gold {
  width: 64px; height: 3px; margin: 0 auto var(--gap-md);
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold-bright) 60%, transparent);
  border: 0;
}

/* ---------- 3. Top navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--border-on-dark);
  box-shadow: 0 2px 12px rgba(6, 24, 42, 0.4);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.65rem var(--gap-md);
  max-width: var(--container-max); margin: 0 auto;
}
.nav__brand {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none;
}
.nav__brand img {
  height: 56px; width: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
}
.nav__menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.nav__menu a {
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 400;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-on-dark); padding: 0.6rem 0.9rem; border-radius: var(--radius-sm);
  position: relative;
}
.nav__menu a:hover, .nav__menu a.active { color: var(--gold-bright); }
.nav__menu a.active::after {
  content: ''; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 0.25rem;
  height: 2px; background: var(--gold);
}
.nav__cta {
  background: var(--gold); color: var(--navy-deep) !important;
  padding: 0.65rem 1.1rem !important; border-radius: var(--radius-sm);
  font-weight: 600 !important; letter-spacing: 1.5px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav__cta:hover { background: var(--gold-bright); transform: translateY(-1px); }

/* Mobile hamburger */
.nav__toggle {
  display: none;
  background: transparent; border: 0; padding: 0.5rem;
  color: var(--text-on-dark);
}
.nav__toggle svg { width: 28px; height: 28px; }

@media (max-width: 880px) {
  .nav__menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--navy-deep);
    border-top: 1px solid var(--border-on-dark);
    padding: var(--gap-sm) 0;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .2s, transform .2s var(--ease);
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__menu a { padding: 0.85rem var(--gap-md); border-radius: 0; }
  .nav__menu a.active::after { display: none; }
  .nav__menu a.active { background: rgba(216,170,50,0.08); }
  .nav__cta { margin: 0.5rem var(--gap-md); text-align: center; }
  .nav__toggle { display: inline-flex; align-items: center; }
}

/* ---------- 4. Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse at top right, rgba(15, 128, 68, 0.18), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(216, 170, 50, 0.12), transparent 55%),
    linear-gradient(180deg, var(--navy-deep) 0%, #050f1c 100%);
  color: var(--text-on-dark);
  padding: clamp(4rem, 9vw, 8rem) 0 clamp(4rem, 9vw, 7rem);
}
.hero::before {
  /* subtle gold sparkle texture */
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(216,170,50,0.25) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.18; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: var(--gap-xl);
  align-items: center;
  max-width: var(--container-max); margin: 0 auto; padding: 0 var(--gap-md);
}
.hero__title { margin-bottom: var(--gap-md); }
.hero__title .accent { color: var(--gold-bright); }
.hero__lede { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--text-muted-d); margin-bottom: var(--gap-lg); max-width: 560px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--gap-sm); }
.hero__visual {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero__visual img {
  max-width: 460px; width: 100%;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.55));
}
@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--gap-lg); text-align: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__cta { justify-content: center; }
  .hero__visual img { max-width: 320px; }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 500;
  font-size: 1rem; letter-spacing: 2px; text-transform: uppercase;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius-sm); border: 2px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold); color: var(--navy-deep) !important;
  box-shadow: var(--shadow-gold);
}
.btn--primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(216,170,50,0.4); }
.btn--secondary {
  background: transparent; color: var(--gold-bright) !important;
  border-color: var(--gold);
}
.btn--secondary:hover { background: var(--gold); color: var(--navy-deep) !important; }
.btn--dark {
  background: var(--navy-deep); color: var(--gold-bright) !important;
  border-color: var(--navy-deep);
}
.btn--dark:hover { background: var(--navy-rich); border-color: var(--navy-rich); }
.btn--ghost {
  background: transparent; color: var(--navy-deep) !important;
  border-color: var(--navy-deep);
}
.btn--ghost:hover { background: var(--navy-deep); color: var(--gold-bright) !important; }
.btn--sm { padding: 0.6rem 1.05rem; font-size: 0.85rem; }

/* ---------- 6. Cards / grid ---------- */
.grid {
  display: grid;
  gap: var(--gap-md);
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card__media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--navy-rich) 0%, var(--navy-deep) 100%);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  font-family: var(--font-head); font-size: 1.1rem; letter-spacing: 2px; text-transform: uppercase;
  text-align: center; padding: var(--gap-md);
  border-bottom: 3px solid var(--gold);
}
.card__media::before {
  content: ''; position: absolute; inset: 12px;
  border: 1px solid rgba(216, 170, 50, 0.45);
  border-radius: var(--radius-sm); pointer-events: none;
}
.card__body { padding: var(--gap-md); flex: 1; display: flex; flex-direction: column; }
.card__title { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 0.4rem; color: var(--navy-deep); }
.card__price { font-family: var(--font-head); font-weight: 600; color: var(--gold-warm); font-size: 1.3rem; margin-bottom: var(--gap-sm); }
.card__meta { font-size: 0.9rem; color: var(--text-muted-l); margin-bottom: var(--gap-md); flex: 1; }
.card__actions { display: flex; gap: var(--gap-xs); }

/* Feature blocks (e.g. "The Difference") */
.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap-lg);
}
@media (max-width: 880px) { .features { grid-template-columns: 1fr; gap: var(--gap-md); } }
.feature {
  text-align: center; padding: var(--gap-md);
}
.feature__icon {
  width: 64px; height: 64px; margin: 0 auto var(--gap-sm);
  display: flex; align-items: center; justify-content: center;
  background: rgba(216, 170, 50, 0.12);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
}
.feature__icon svg { width: 28px; height: 28px; }
.feature h3 { color: inherit; margin-bottom: 0.5rem; }
.section--dark .feature h3 { color: var(--gold-bright); }
.section:not(.section--dark) .feature h3 { color: var(--navy-deep); }
.feature p { font-size: 0.97rem; color: var(--text-muted-l); }
.section--dark .feature p { color: var(--text-muted-d); }

/* ---------- 7. Forms ---------- */
.form { display: grid; gap: var(--gap-md); }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--navy-deep); }
.field input, .field textarea, .field select {
  background: var(--white);
  border: 1px solid var(--border-on-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-size: 1rem; color: var(--text-on-light);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(216,170,50,0.18);
}
.field textarea { resize: vertical; min-height: 120px; }

/* Radio tile group (used by configurator) */
.tile-group { display: grid; gap: var(--gap-xs); }
.tile {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 2px solid var(--border-on-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s var(--ease);
}
.tile:hover { border-color: var(--gold); background: rgba(216,170,50,0.04); }
.tile input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.tile__label { font-family: var(--font-head); font-size: 1rem; color: var(--navy-deep); letter-spacing: 0.5px; }
.tile__price { font-family: var(--font-head); font-weight: 600; font-size: 1.15rem; color: var(--gold-warm); }
.tile.is-selected { border-color: var(--gold); background: rgba(216,170,50,0.08); box-shadow: var(--shadow-gold); }
.tile.is-selected .tile__price { color: var(--navy-deep); }

/* Quantity stepper */
.qty {
  display: inline-flex; align-items: center;
  border: 2px solid var(--border-on-light); border-radius: var(--radius-sm);
  background: var(--white);
}
.qty button {
  background: transparent; border: 0; width: 38px; height: 40px;
  font-size: 1.3rem; font-weight: 600; color: var(--navy-deep);
}
.qty button:hover { background: rgba(216,170,50,0.12); }
.qty input {
  width: 56px; text-align: center; border: 0; background: transparent;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 600; color: var(--navy-deep);
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Order total summary */
.order-total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 1rem 1.2rem;
  background: var(--navy-deep); color: var(--text-on-dark);
  border-radius: var(--radius-md);
  margin: var(--gap-md) 0;
}
.order-total__label { font-family: var(--font-head); letter-spacing: 2px; text-transform: uppercase; font-size: 0.95rem; }
.order-total__value { font-family: var(--font-display); font-size: 2rem; color: var(--gold-bright); letter-spacing: 1px; }

/* PayPal container */
#paypal-button-container {
  margin-top: var(--gap-md);
  min-height: 50px;
}
.paypal-note {
  margin-top: var(--gap-sm);
  font-size: 0.85rem; color: var(--text-muted-l); text-align: center;
}

/* Conditional sub-selector (e.g. slab brand under "Graded Slab Frame" tier) */
.subgroup {
  display: none;
  margin: var(--gap-sm) 0 0 1.25rem;
  padding: var(--gap-sm) var(--gap-md);
  background: rgba(216, 170, 50, 0.06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.subgroup.is-visible { display: block; }
.subgroup__label {
  display: block;
  font-family: var(--font-head); font-size: 0.85rem; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--navy-deep); margin-bottom: 0.5rem;
}
.subgroup__tiles {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem;
}
@media (max-width: 600px) { .subgroup__tiles { grid-template-columns: repeat(2, 1fr); } }

.brand-tile {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 0.65rem 0.4rem;
  background: var(--white);
  border: 2px solid var(--border-on-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 1px;
  color: var(--navy-deep);
  transition: border-color .15s, background .15s, transform .15s var(--ease);
  text-align: center;
}
.brand-tile:hover { border-color: var(--gold); background: rgba(216,170,50,0.04); }
.brand-tile input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.brand-tile.is-selected { border-color: var(--gold); background: rgba(216,170,50,0.12); color: var(--navy-deep); }

/* Volume discount info callout (above the configurator's quantity step) */
.discount-info {
  margin: var(--gap-md) 0;
  padding: 0.85rem 1.1rem;
  background: linear-gradient(90deg, rgba(15,128,68,0.12), rgba(216,170,50,0.10));
  border: 1px solid rgba(15, 128, 68, 0.25);
  border-radius: var(--radius-md);
  font-size: 0.92rem; color: var(--navy-deep);
}
.discount-info strong { color: var(--green-shamrock); font-family: var(--font-head); letter-spacing: 1px; text-transform: uppercase; font-size: 0.85rem; }

/* Savings line in order summary */
.summary-line.is-savings .lbl { color: var(--green-shamrock); font-weight: 500; }
.summary-line.is-savings .val { color: var(--green-shamrock); font-weight: 600; }

/* Strikethrough subtotal when discount applied */
.order-total__strike {
  display: block;
  font-family: var(--font-head); font-size: 1rem; font-weight: 400;
  color: var(--text-muted-d);
  text-decoration: line-through;
  letter-spacing: 0;
  margin-bottom: 0.15rem;
}
.savings-pill {
  display: inline-block;
  font-family: var(--font-head); font-size: 0.75rem; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500;
  background: var(--green-shamrock); color: var(--white);
  padding: 0.2rem 0.55rem; border-radius: 3px;
  margin-left: 0.5rem; vertical-align: middle;
}

/* ---------- 8. Footer ---------- */
.site-footer {
  background: #04101e;
  color: var(--text-on-dark);
  padding: var(--gap-xl) 0 var(--gap-md);
  border-top: 3px solid var(--gold);
}
.site-footer__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
}
@media (max-width: 880px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer img.footer-logo { height: 80px; width: auto; margin-bottom: var(--gap-sm); }
.site-footer h4 { font-family: var(--font-head); color: var(--gold-bright); font-size: 0.95rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: var(--gap-sm); }
.site-footer p, .site-footer li { color: var(--text-muted-d); font-size: 0.92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.site-footer a { color: var(--text-on-dark); }
.site-footer a:hover { color: var(--gold-bright); }
.site-footer__bottom {
  border-top: 1px solid var(--border-on-dark); padding-top: var(--gap-md);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--gap-sm);
  font-size: 0.85rem; color: var(--text-muted-d);
}

/* External-link icon for store callouts */
.ext-link::after {
  content: '↗'; margin-left: 0.35em;
  display: inline-block; transform: translateY(-1px);
  color: var(--gold-bright);
}

/* ---------- 8b. Testimonials ---------- */
.testimonial-stats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: var(--gap-lg);
  margin-bottom: var(--gap-lg);
  padding: var(--gap-md) var(--gap-lg);
  background: var(--white);
  border: 1px solid var(--border-on-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.testimonial-stat { text-align: center; }
.testimonial-stat__value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  color: var(--gold-warm); letter-spacing: 1px;
  line-height: 1;
}
.testimonial-stat__label {
  display: block; margin-top: 0.3rem;
  font-family: var(--font-head); font-size: 0.78rem;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-muted-l);
}
.testimonial-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--gap-md);
}
@media (max-width: 880px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--gap-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex; flex-direction: column;
  border-top: 3px solid var(--gold);
}
.testimonial__quote {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--text-on-light);
  margin-bottom: var(--gap-md);
  flex: 1;
}
.testimonial--featured .testimonial__quote {
  font-size: 1.2rem; line-height: 1.65;
  font-family: var(--font-script); font-style: italic;
  color: var(--navy-deep);
}
.testimonial__quote::before {
  content: '"';
  display: inline-block;
  font-family: var(--font-display); font-size: 2.4rem;
  color: var(--gold); line-height: 0;
  margin-right: 0.2em; vertical-align: -0.2em;
}
.testimonial__attribution {
  display: flex; align-items: center; gap: 0.6rem;
  border-top: 1px solid var(--border-on-light);
  padding-top: var(--gap-sm);
}
.testimonial__handle {
  font-family: var(--font-head); font-size: 0.95rem; font-weight: 500;
  color: var(--navy-deep);
}
.testimonial__badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(15, 128, 68, 0.12); color: var(--green-shamrock);
  padding: 0.25rem 0.55rem; border-radius: 3px;
}
.testimonial__badge svg { width: 12px; height: 12px; }

/* ---------- 9. Banner / call-to-action strip ---------- */
.cta-strip {
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy-rich) 100%);
  color: var(--text-on-dark);
  padding: var(--gap-lg) 0;
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.cta-strip h2 { color: var(--gold-bright); margin-bottom: var(--gap-sm); }
.cta-strip p { max-width: 640px; margin: 0 auto var(--gap-md); color: var(--text-muted-d); }

/* ---------- 10. Misc ---------- */
.badge {
  display: inline-block;
  font-family: var(--font-head); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--green-shamrock); color: var(--white);
  padding: 0.25rem 0.55rem; border-radius: 3px;
  vertical-align: middle; margin-left: 0.4rem;
}
.text-gold { color: var(--gold-bright); }
.text-cream { color: var(--cream); }
.mt-md { margin-top: var(--gap-md); }
.mt-lg { margin-top: var(--gap-lg); }
.mb-0 { margin-bottom: 0; }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
