/* ============================================================
   OTTA site components
   ============================================================ */

/* Layout helpers */
.container       { width: 100%; max-width: var(--content-default); margin: 0 auto; padding-inline: clamp(var(--space-4), 4vw, var(--space-8)); }
.container-wide  { width: 100%; max-width: var(--content-wide);    margin: 0 auto; padding-inline: clamp(var(--space-4), 4vw, var(--space-8)); }
.container-narrow{ width: 100%; max-width: var(--content-narrow);  margin: 0 auto; padding-inline: clamp(var(--space-4), 4vw, var(--space-8)); }

.section { padding-block: clamp(var(--space-12), 8vw, var(--space-24)); }
.section-tight  { padding-block: clamp(var(--space-10), 6vw, var(--space-16)); }
.section-dark   { background: var(--otta-panel); color: #f1f2f4; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #ffffff; }
.section-navy   { background: var(--otta-navy); color: #f1f2f4; }
.section-navy h1, .section-navy h2, .section-navy h3 { color: #ffffff; }
.section-offset { background: var(--color-surface); }

/* Eyebrow label */
.eyebrow {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--otta-red);
  margin-bottom: var(--space-3);
}
.section-dark .eyebrow, .section-navy .eyebrow { color: #ff6448; }

/* Heading tones */
.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.h-hero {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-hero);
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.h-section {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lede {
  font-size: var(--text-lg);
  line-height: 1.5;
  color: var(--color-text-muted);
  max-width: 60ch;
}
.section-dark .lede, .section-navy .lede { color: #c8cdd5; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--otta-red);
  color: #ffffff;
}
.btn-primary:hover { background: var(--otta-red-hover); transform: translateY(-1px); }
.btn-primary:active { background: var(--otta-red-active); transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-ghost:hover { border-color: var(--otta-red); color: var(--otta-red); }
.section-dark .btn-ghost, .section-navy .btn-ghost, .hero .btn-ghost, .cta-band .btn-ghost, .page-hero .btn-ghost, .err-hero .btn-ghost { color: #ffffff; border-color: rgba(255,255,255,0.55); }
.section-dark .btn-ghost:hover, .section-navy .btn-ghost:hover, .hero .btn-ghost:hover, .cta-band .btn-ghost:hover, .page-hero .btn-ghost:hover, .err-hero .btn-ghost:hover { border-color: var(--otta-red); color: #ffffff; background: rgba(229,63,33,0.12); }

.btn-lg { padding: var(--space-4) var(--space-6); font-size: var(--text-base); }

/* ============================================================
   Header / nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
}
[data-theme="dark"] .site-header { background: rgba(26, 30, 36, 0.88); border-bottom-color: var(--color-divider); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: -0.01em;
  color: var(--color-text);
}
.brand-mark img { display: block; height: 30px; width: auto; }
.brand-mark .brand-svg { display: none; }
.brand-mark span { display: none; }

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
}
@media (min-width: 1024px) { .nav-links { display: flex; } }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-links a {
  color: var(--color-text-muted);
  padding-block: var(--space-2);
  position: relative;
}
.nav-links a:hover, .nav-links a.is-active { color: var(--color-text); }
.nav-links a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--otta-red); border-radius: var(--radius-full);
}

.nav-cta { display: inline-flex; align-items: center; gap: var(--space-3); }
.nav-toggle {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}
@media (min-width: 1024px) { .nav-toggle { display: none !important; } }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
  padding: var(--space-4) clamp(var(--space-4), 4vw, var(--space-8));
}
.mobile-drawer.is-open { display: block; }
.mobile-drawer ul { list-style: none; display: grid; gap: var(--space-2); }
.mobile-drawer a {
  display: block;
  padding: var(--space-3) var(--space-2);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-sm);
}
.mobile-drawer a:hover { background: var(--color-surface); color: var(--otta-red); }
.mobile-drawer .btn { width: 100%; margin-top: var(--space-3); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  background: var(--otta-panel);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 70% 30%, rgba(229,63,33,0.18), transparent 70%),
    linear-gradient(180deg, #1a1e24 0%, #14171c 100%);
  z-index: -2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
  padding-block: clamp(var(--space-16), 12vw, var(--space-32));
}
@media (min-width: 880px) { .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: var(--space-12); } }

.hero h1 {
  font-size: var(--text-hero);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #ffffff;
  margin-bottom: var(--space-5);
}
.hero .lede { color: #d4d8de; font-size: var(--text-lg); margin-bottom: var(--space-8); max-width: 52ch; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }

.hero-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(229,63,33,0.18));
  pointer-events: none;
}

/* ============================================================
   Stat strip
   ============================================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
@media (min-width: 720px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat {
  display: grid;
  gap: var(--space-2);
  padding: var(--space-6) var(--space-4);
  border-top: 2px solid var(--otta-red);
  background: var(--color-surface);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}
.section-dark .stat, .section-navy .stat { background: rgba(255,255,255,0.04); }
.stat .stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--color-text);
}
.section-dark .stat .stat-number, .section-navy .stat .stat-number { color: #ffffff; }
.stat .stat-label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
}
.section-dark .stat .stat-label, .section-navy .stat .stat-label { color: #c8cdd5; }

/* ============================================================
   Two-col / origin band
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 880px) { .two-col { grid-template-columns: 1fr 1fr; gap: var(--space-12); } }
.two-col.text-first { }
.two-col.image-first .col-text { order: 1; }
.two-col.image-first .col-image { order: 0; }

.col-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
}
.col-image img { width: 100%; height: 100%; object-fit: cover; }

.col-image.contain { background: #14171c; }
.col-image.contain img { object-fit: contain; }

/* ============================================================
   Engagement cards (Rev-Share + Managed Services)
   ============================================================ */
.engagement-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 880px) { .engagement-grid { grid-template-columns: 1fr 1fr; } }

.engagement-card {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-8);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.engagement-card.is-lead {
  background: var(--otta-panel);
  color: #ffffff;
  border-color: var(--otta-panel);
}
.engagement-card.is-lead h3, .engagement-card.is-lead p { color: #ffffff; }
.engagement-card.is-lead .badge {
  background: var(--otta-red);
  color: #ffffff;
}
.engagement-card .badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  background: var(--color-surface-2);
  color: var(--color-text);
  border-radius: var(--radius-full);
  width: max-content;
}
.engagement-card h3 {
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
}
.engagement-card ul { display: grid; gap: var(--space-2); list-style: none; }
.engagement-card li {
  padding-left: var(--space-5);
  position: relative;
  font-size: var(--text-base);
  color: inherit;
}
.engagement-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  background: var(--otta-red);
  border-radius: 2px;
}
.engagement-card.is-lead li::before { background: #ffffff; }

/* ============================================================
   Tiles (3-up service / inventory)
   ============================================================ */
.tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 720px) { .tile-grid.cols-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 880px) { .tile-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 880px) { .tile-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .tile-grid.cols-5 { grid-template-columns: repeat(5, 1fr); } }

.tile {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-interactive), transform var(--transition-interactive);
}
.section-dark .tile, .section-navy .tile {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
}
.tile:hover { border-color: var(--otta-red); transform: translateY(-2px); }
.tile h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--color-text);
}
.section-dark .tile h4, .section-navy .tile h4 { color: #ffffff; }
.tile p { font-size: var(--text-sm); color: var(--color-text-muted); margin: 0; }
.section-dark .tile p, .section-navy .tile p { color: #c8cdd5; }
.tile .tile-num {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--otta-red);
  letter-spacing: 0.02em;
}

/* ============================================================
   Quote / Chris positioning block
   ============================================================ */
.pullquote {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-10) 0;
  border-top: 2px solid var(--otta-red);
  border-bottom: 1px solid var(--color-divider);
}
.pullquote p {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--color-text);
  max-width: 32ch;
}
.section-dark .pullquote p, .section-navy .pullquote p { color: #ffffff; }
.pullquote cite {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.section-dark .pullquote cite, .section-navy .pullquote cite { color: var(--otta-red); font-weight: 600; letter-spacing: 0.02em; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--otta-panel);
  color: #c8cdd5;
  padding-block: var(--space-16);
}
.footer-grid {
  display: grid;
  gap: var(--space-8);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-grid h5 {
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-3);
}
.footer-grid a { color: #c8cdd5; display: block; padding-block: var(--space-1); font-size: var(--text-sm); }
.footer-grid a:hover { color: #ffffff; }
.footer-brand { max-width: 38ch; font-size: var(--text-sm); }
.footer-brand .footer-brand-mark { display: inline-flex; align-items: center; gap: 10px; margin-bottom: var(--space-4); }
.footer-brand .footer-brand-mark img { display: block; height: 28px; width: auto; }
.footer-brand .footer-brand-mark svg { height: 28px; width: auto; }
.footer-brand .footer-brand-mark svg polygon { fill: var(--otta-red); }
.footer-brand .footer-brand-mark .wm { font-weight: 700; font-size: 18px; color: #ffffff; letter-spacing: -0.01em; }
.footer-bottom {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: #8a8f99;
}
.footer-social {
  display: inline-flex;
  gap: var(--space-3);
  align-items: center;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #c8cdd5;
  transition: background 180ms ease, color 180ms ease;
}
.footer-social a:hover {
  background: var(--otta-red);
  color: #ffffff;
}
.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* ============================================================
   Contact form
   ============================================================ */
.form-grid {
  display: grid;
  gap: var(--space-5);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .form-grid.cols-2 { grid-template-columns: 1fr 1fr; } }
.form-field { display: grid; gap: var(--space-2); }
.form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.form-field .req { color: var(--otta-red); }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg);
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: var(--text-base);
  font-family: inherit;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--otta-red);
  box-shadow: 0 0 0 3px rgba(229,63,33,0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-help { font-size: var(--text-xs); color: var(--color-text-muted); }

.form-success {
  display: none;
  padding: var(--space-6);
  border-radius: var(--radius-md);
  background: rgba(67, 122, 34, 0.10);
  border: 1px solid rgba(67, 122, 34, 0.4);
  color: #2e5c10;
}
.form-success.is-visible { display: block; }

/* ============================================================
   Page hero (interior)
   ============================================================ */
.page-hero {
  background: var(--otta-navy);
  color: #ffffff;
  padding-block: clamp(var(--space-16), 10vw, var(--space-24));
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 90% at 90% 30%, rgba(229,63,33,0.18), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: var(--space-4);
  max-width: 22ch;
}
.page-hero .lede { color: #c8cdd5; max-width: 58ch; margin-bottom: var(--space-8); }
.page-hero .eyebrow { color: #ff6448; }

/* ============================================================
   Inline announcement / press strip
   ============================================================ */
.press-band {
  background: var(--color-surface);
  padding-block: var(--space-8);
  border-top: 1px solid var(--color-divider);
  border-bottom: 1px solid var(--color-divider);
}
.press-band-inner {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 720px) { .press-band-inner { grid-template-columns: auto 1fr auto; } }
.press-band .chip {
  background: var(--otta-red);
  color: #ffffff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  width: max-content;
}
.press-band p { margin: 0; font-size: var(--text-sm); color: var(--color-text); }

/* ============================================================
   Section header (eyebrow + title + lede)
   ============================================================ */
.section-head {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  max-width: 50ch;
}

/* ============================================================
   Inventory list (women's sports, leagues, etc.)
   ============================================================ */
.inventory-row {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--color-divider);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .inventory-row { grid-template-columns: 240px 1fr; gap: var(--space-8); } }
.inventory-row h4 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--otta-red);
  letter-spacing: -0.01em;
}
.inventory-row p { font-size: var(--text-base); color: var(--color-text); margin: 0; max-width: 60ch; }

/* ============================================================
   Vignette cards (case examples)
   ============================================================ */
.vignette {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-6);
  background: #ffffff;
  color: var(--otta-navy);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--otta-red);
}
.vignette h4 { color: var(--otta-navy); }
.vignette dd { color: var(--otta-navy); }
.vignette .chip {
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  width: max-content;
}
.vignette h4 { font-size: var(--text-lg); }
.vignette dl {
  display: grid;
  gap: var(--space-2);
  grid-template-columns: 1fr;
  margin-top: var(--space-2);
}
.vignette dt {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 700;
  color: var(--color-text-muted);
}
.vignette dd {
  font-size: var(--text-sm);
  margin-bottom: var(--space-2);
}

/* ============================================================
   Final CTA band
   ============================================================ */
.cta-band {
  background: var(--otta-red);
  color: #ffffff;
  padding-block: clamp(var(--space-12), 8vw, var(--space-20));
}
.cta-band .container { text-align: center; }
.cta-band h2 {
  color: #ffffff;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-4);
  letter-spacing: -0.025em;
}
.cta-band p { color: rgba(255,255,255,0.9); max-width: 50ch; margin: 0 auto var(--space-8); font-size: var(--text-lg); }
.cta-band .btn-primary {
  background: #ffffff;
  color: var(--otta-red);
}
.cta-band .btn-primary:hover { background: #f1f2f4; color: var(--otta-red-active); }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.6); color: #ffffff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #ffffff; color: #ffffff; }

/* ============================================================
   Utility
   ============================================================ */
.text-center { text-align: center; }
.divider-line {
  height: 2px; width: 60px; background: var(--otta-red); border-radius: var(--radius-full);
}
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.flex-row { display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center; }

/* ============================================================
   Team page — bio cards + initial avatars
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 720px) { .team-grid { grid-template-columns: 1fr 1fr; } }

.bio-card {
  display: grid;
  gap: var(--space-4);
  padding: var(--space-8);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--otta-red);
}
.bio-card .bio-head {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--otta-navy);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.avatar-red { background: var(--otta-red); }
.avatar-photo {
  background: var(--otta-navy);
  overflow: hidden;
  padding: 0;
}
.avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avatar-lg {
  width: 96px; height: 96px; font-size: 1.75rem;
}
.bio-card h3 {
  font-size: var(--text-lg);
  letter-spacing: -0.015em;
  margin: 0;
}
.bio-card .bio-title {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
  margin: var(--space-1) 0 0;
}
.bio-card p { margin: 0; }
.bio-card .credentials {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  color: var(--otta-red);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.bio-card .bio-source {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.bio-card .bio-source a { color: var(--color-text-muted); text-decoration: underline; text-underline-offset: 3px; }
.bio-card .bio-source a:hover { color: var(--otta-red); }

/* ============================================================
   About — timeline / milestone strip
   ============================================================ */
.timeline {
  display: grid;
  gap: var(--space-6);
  position: relative;
  margin-top: var(--space-10);
}
@media (min-width: 720px) {
  .timeline {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--space-8);
  }
}
.milestone {
  position: relative;
  padding: var(--space-6);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border-top: 3px solid var(--otta-red);
}
.section-dark .milestone, .section-navy .milestone {
  background: rgba(255,255,255,0.04);
}
.milestone .year {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--otta-red);
  display: block;
  margin-bottom: var(--space-2);
}
.milestone h4 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: var(--color-text);
}
.section-dark .milestone h4, .section-navy .milestone h4 { color: #ffffff; }
.milestone p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}
.section-dark .milestone p, .section-navy .milestone p { color: #c8cdd5; }

/* ============================================================
   Newsroom — post list
   ============================================================ */
.news-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-divider);
}
.news-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-3);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-divider);
  transition: background var(--transition-interactive);
}
@media (min-width: 720px) {
  .news-item { grid-template-columns: 180px 1fr auto; gap: var(--space-8); align-items: start; }
}
.news-meta {
  display: grid;
  gap: var(--space-1);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.news-meta .news-date {
  font-weight: 600;
  color: var(--color-text);
}
.news-meta .news-tag {
  font-size: var(--text-xs);
  color: var(--otta-red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.news-body h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.news-body h3 a:hover { color: var(--otta-red); }
.news-body p { font-size: var(--text-base); color: var(--color-text-muted); margin: 0; max-width: 64ch; }

.news-item .news-arrow {
  align-self: center;
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  color: var(--color-text-muted);
}
.news-item:hover .news-arrow { background: var(--otta-red); border-color: var(--otta-red); color: #ffffff; }

/* Article (single newsroom post) */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}
.article-meta .chip {
  background: var(--otta-red);
  color: #ffffff;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}
.article-body {
  max-width: 68ch;
  font-size: var(--text-base);
  line-height: 1.7;
}
.article-body h2 {
  font-size: var(--text-xl);
  letter-spacing: -0.02em;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}
.article-body h3 {
  font-size: var(--text-lg);
  letter-spacing: -0.015em;
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}
.article-body p { margin-bottom: var(--space-5); }
.article-body ul {
  display: grid;
  gap: var(--space-3);
  margin: var(--space-4) 0 var(--space-6);
  padding-left: var(--space-5);
}
.article-body ul li { padding-left: var(--space-3); }
.article-body blockquote {
  margin: var(--space-8) 0;
  padding: var(--space-6);
  background: var(--color-surface);
  border-left: 4px solid var(--otta-red);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: normal;
}
.article-body blockquote p {
  font-size: var(--text-lg);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-3);
}
.article-body blockquote cite {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}
.boilerplate {
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-divider);
}
.boilerplate h3 {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.boilerplate p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 80ch;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--otta-red);
  margin-bottom: var(--space-6);
}
.back-link:hover { color: var(--otta-red-active); }

/* ============================================================
   PARTNER LOGO WALL (about.html)
   ============================================================ */
.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-10);
  margin-bottom: var(--space-8);
  padding: var(--space-8) var(--space-6);
  background: #ffffff;
  border-radius: var(--radius-lg, 12px);
  border: 1px solid rgba(43, 51, 63, 0.08);
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}
.partner-logo img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.75);
  transition: filter 200ms ease;
}
.partner-logo img:hover {
  filter: grayscale(0%) opacity(1);
}
@media (max-width: 900px) {
  .partner-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
}
@media (max-width: 540px) {
  .partner-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============== FAQ ============== */
.faq-list { display: flex; flex-direction: column; gap: var(--space-3); max-width: 880px; margin: 0 auto; }
.faq-item { background: #ffffff; border: 1px solid var(--color-border); border-radius: 14px; overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item:hover { border-color: rgba(229,63,33,0.45); }
.faq-item[open] { border-color: rgba(229,63,33,0.55); box-shadow: 0 4px 22px rgba(43,51,63,0.06); }
.faq-item > summary { list-style: none; cursor: pointer; padding: var(--space-4) var(--space-5); display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); user-select: none; }
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary h3 { margin: 0; font-size: 1.0625rem; line-height: 1.4; color: var(--otta-navy); font-weight: 600; }
.faq-item > summary::after { content: "+"; font-size: 1.5rem; font-weight: 300; color: var(--otta-red); line-height: 1; flex-shrink: 0; transition: transform .25s ease; }
.faq-item[open] > summary::after { content: "\2013"; transform: rotate(0deg); }
.faq-answer { padding: 0 var(--space-5) var(--space-5); }
.faq-answer p { margin: 0; color: var(--color-text-secondary); font-size: 0.9875rem; line-height: 1.65; }
