/* ============================================================
   Top Marque Sports — Main Stylesheet
   Following the mockup design system:
   Navy #0c1c36 · Silver #c6ccd8 · Gold #b8995a
   Font: Barlow Condensed (headings) · Barlow (body)
============================================================ */

/* ── CSS Custom Properties ── */
:root {
  /* Brand colours */
  --navy:        #0c1c36;
  --navy-mid:    #132040;
  --navy-card:   #1a2d52;
  --navy-lt:     #1e3460;
  --silver:      #c6ccd8;
  --silver-lt:   #e2e6ed;
  --silver-dm:   #8990a0;
  --gold:        #b8995a;
  --gold-lt:     #d4b978;
  --white:       #ffffff;
  --off:         #f5f6f8;

  /* Text */
  --text:        #0c1c36;
  --text-mid:    #3a4d6a;
  --text-muted:  #7a8a9e;
  --border:      #dde1e9;
  --border-dk:   #1e3460;

  /* Spacing */
  --section-pad: 80px 60px;
  --max-width:   1440px;

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Transitions */
  --transition:  0.2s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Accessibility: skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 20px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  z-index: 9999;
  border-radius: 0 0 2px 0;
}
.skip-link:focus { top: 0; }

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

ul { list-style: none; }

a { text-decoration: none; color: inherit; }

/* ── Typography helpers ── */
.font-display { font-family: var(--font-display); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .92;
}

/* ── Eyebrow ── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.eyebrow-rule {
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  flex-shrink: 0;
}
.eyebrow-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.eyebrow.light .eyebrow-text { color: var(--silver-dm); }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--silver-lt), var(--silver));
  padding: 14px 34px;
  border-radius: 2px;
  transition: opacity var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.btn-primary:hover {
  opacity: .92;
  transform: translateY(-1px);
}
.btn-primary.btn-large { padding: 16px 44px; font-size: 13px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--silver-lt);
  background: transparent;
  border: 1.5px solid rgba(198,204,216,.35);
  padding: 14px 34px;
  border-radius: 2px;
  transition: border-color var(--transition), color var(--transition);
  cursor: pointer;
}
.btn-ghost:hover {
  border-color: rgba(198,204,216,.7);
  color: var(--white);
}

/* ── Section helpers ── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-link-all {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  white-space: nowrap;
  margin-bottom: 8px;
  transition: color var(--transition), border-color var(--transition);
}
.section-link-all:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* ── Nav wordmark ── */
.nav-wordmark { display: flex; flex-direction: column; gap: 1px; }
.nw1 {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--silver-lt);
  line-height: 1;
}
.nw2 {
  font-family: var(--font-display);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--silver-dm);
  line-height: 1;
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(12,28,54,.96);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 60px;
  gap: 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
  text-decoration: none;
  width: 240px;
  height: 60px;
}

.nav-logo img {
  /* If logo image unavailable, show text fallback */
  min-width: 52px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-dm);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--silver-lt); }
.nav-link.active {
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(135deg, var(--silver-lt), var(--silver));
  padding: 10px 26px;
  border-radius: 2px;
  transition: opacity var(--transition);
}
.nav-cta:hover { opacity: .9; }

/* Mobile hamburger — hidden by default */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver-lt);
  transition: all var(--transition);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 860px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px; /* offset for fixed nav */
  padding: var(--section-pad);
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-logo{
  padding: 50px;
  object-fit: contain;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg,
      rgba(12,28,54,.88) 0%,
      rgba(12,28,54,.72) 38%,
      rgba(12,28,54,.40) 62%,
      rgba(12,28,54,.22) 100%
    ),
    linear-gradient(180deg,
      rgba(12,28,54,.15) 0%,
      rgba(12,28,54,.55) 100%
    );
}
.hero-grid-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 88px 88px;
}
.hero-divider {
  position: absolute;
  left: 52%;
  top: 10%; bottom: 10%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(198,204,216,.18) 25%,
    rgba(198,204,216,.18) 75%,
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px;
  max-width: 660px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.hero-eyebrow .eyebrow-text { color: var(--silver-dm); font-size: 12px; }

/* SEO h1 — visually minimal, semantically correct */
.hero-seo-h1 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(226,230,237,.5);
  margin-bottom: 12px;
  line-height: 1.4;
}

/* Visual display heading */
.hero-display {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 72px;
  letter-spacing: -.02em;
  line-height: .90;
  color: var(--white);
  margin-bottom: 26px;
}
.line-agency {
  color: var(--silver-lt);
}
.line-players {
  font-style: italic;
  color: var(--silver);
}
.hero-p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  color: rgba(226,230,237,.72);
  max-width: 460px;
  margin-bottom: 38px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* TMS logo right side */
.hero-logo-area {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.hero-tms {
  font-family: var(--font-display);
  font-size: 150px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.04em;
  line-height: .85;
  background: linear-gradient(
    135deg,
    #e8ecf2 0%,
    #c6ccd8 30%,
    #8990a0 60%,
    #c6ccd8 80%,
    #e8ecf2 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.5));
  margin-bottom: 18px;
  user-select: none;
}
.hero-wordmark { text-align: center; }
.hero-wm-rule {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(198,204,216,.3), transparent);
  margin: 0 auto 12px;
}
.hero-wm-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .52em;
  text-transform: uppercase;
  color: var(--silver-dm);
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 36px; left: 60px;
  z-index: 3;
  display: flex;
  gap: 8px;
  align-items: center;
}
.ind {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(198,204,216,.28);
}
.ind.active {
  width: 24px;
  border-radius: 3px;
  background: var(--gold);
}

/* Scroll cue */
.hero-scroll {
  position: absolute;
  bottom: 34px; right: 60px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(198,204,216,.5), rgba(198,204,216,.05));
}
.scroll-text {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(137,144,160,.5);
  writing-mode: vertical-rl;
}

/* ════════════════════════════════════════
   STATS BAR
════════════════════════════════════════ */
.stats-bar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(30,52,96,.8);
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 28px 44px;
  border-right: 1px solid rgba(255,255,255,.05);
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}
.stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.stat:hover::before { transform: scaleX(1); }
.stat:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  background: linear-gradient(135deg, var(--silver-lt), var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-dm);
}

/* ════════════════════════════════════════
   WHO WE ARE (merged)
════════════════════════════════════════ */
.who-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.who-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.who-h2 {
  font-size: 68px;
  color: var(--navy);
  margin-bottom: 24px;
}
.who-h2 em { font-style: italic; color: var(--text-mid); display: block; }
.who-p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 16px;
  max-width: 520px;
}
.who-pulls {
  display: flex;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.who-pull { display: flex; flex-direction: column; gap: 3px; }
.pull-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1;
  color: var(--navy);
}
.pull-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.who-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  list-style: none;
}
.val {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 5px 14px;
  border-radius: 1px;
}

/* Agent photo grid */
.above-grid-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.agt-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border));
}
.agt-pill {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(184,153,90,.08);
  border: 1px solid rgba(184,153,90,.2);
  padding: 5px 12px;
  border-radius: 1px;
  white-space: nowrap;
}
.photo-grid-frame {
  position: relative;
  border: 1.5px solid rgba(184,153,90,.35);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(12,28,54,.18), 0 4px 16px rgba(12,28,54,.10);
}
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--gold);
}
.photo-cell {
  position: relative;
  height: 300px;
  overflow: hidden;
  background: var(--navy-card);
}
.cell-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.cell-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(12,28,54,.96), transparent);
}
.cell-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  background: rgba(184,153,90);
  border: 1px solid rgba(184,153,90,.35);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 1px;
}
.cell-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px 16px;
  z-index: 2;
}
.cell-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--silver-lt);
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: 4px;
}
.cell-role {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver-dm);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cell-role::before {
  content: '';
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.grid-footer {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.grid-footer-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-dm);
  display: flex;
  align-items: center;
  gap: 10px;
}
.grid-footer-label::before {
  content: '';
  display: block;
  width: 18px; height: 1px;
  background: var(--gold);
}
.grid-footer-cta {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-lt);
  border-bottom: 1px solid rgba(198,204,216,.2);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.grid-footer-cta:hover {
  color: var(--white);
  border-color: rgba(198,204,216,.5);
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services-section {
  background: var(--off);
  border-bottom: 1px solid var(--border);
}
.services-section h2 {
  font-size: 46px;
  color: var(--navy);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.svc-card {
  background: var(--white);
  padding: 32px 28px;
  transition: background var(--transition);
}
.svc-card:hover { background: var(--off); }
.svc-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: .02em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.svc-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.svc-link {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.svc-link::after { content: '→'; }
.svc-link:hover { gap: 10px; }

/* ════════════════════════════════════════
   SOCIAL
════════════════════════════════════════ */
.social-section { border-bottom: 1px solid var(--border); }
.social-section h2 {
  font-size: 38px;
  color: var(--navy);
}
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icon-btn {
  width: 36px; height: 36px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  transition: border-color var(--transition), color var(--transition);
}
.social-icon-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.social-feed-placeholder {
  padding: 60px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  border-radius: 2px;
  display: flex;
  gap: 10px;
  overflow-x: scroll;
}

/* ════════════════════════════════════════
   CTA BAND
════════════════════════════════════════ */
.cta-band {
  background: var(--navy);
  border-top: 1px solid var(--border-dk);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,52,96,.6) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-eyebrow { color: var(--gold); }
.cta-eyebrow .eyebrow-rule { background: var(--gold); }
.cta-eyebrow .eyebrow-text { color: var(--gold); }
.cta-h2 {
  font-size: 56px;
  color: var(--white);
  margin-bottom: 12px;
}
.cta-h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--silver-lt), var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(226,230,237,.65);
  max-width: 480px;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dk);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 60px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}
.footer-about {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(137,144,160,.7);
  max-width: 280px;
}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--silver-dm);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: 13px;
  font-weight: 300;
  color: rgba(137,144,160,.7);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-link:hover { color: var(--silver-lt); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer-copy {
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(137,144,160,.4);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(137,144,160,.4);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--silver-dm); }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --section-pad: 72px 40px; }
  .hero-content { padding: 0 40px; }
  .who-inner { gap: 56px; }
}

@media (max-width: 960px) {
  .hero-divider { display: none; }
  .hero-logo-area { display: none; }
  .hero-content { max-width: 100%; padding: 0 32px; }
  /*.line-agency { font-size: 40px; }*/
  /*.line-built, .line-players, .line-for { font-size: 60px; }*/
  .stat { border-bottom: 1px solid rgba(255,255,255,.05); }
  .who-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .nav-logo{width: 150px;}
}

@media (max-width: 640px) {
  :root { --section-pad: 56px 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; }
  .nav-hamburger { display: flex; }
  .hero { margin-top: 72px; }
  .hero-content { padding: 0 24px; }
  /*.line-agency { font-size: 32px; }*/
  /*.line-built, .line-players, .line-for { font-size: 48px; }*/
  .hero-p { font-size: 14px; }
  .services-grid { grid-template-columns: 1fr; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .photo-cell { height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .who-h2 { font-size: 48px; }
  .social-feed-placeholder {overflow-x: scroll; justify-content: flex-start; padding: 0px;}
}


/* ════════════════════════════════════════════════════════
   OUR TEAM PAGE
   All classes prefixed ot- to avoid conflicts with
   existing main.css rules
════════════════════════════════════════════════════════ */

/* ── 1. PAGE HERO ────────────────────────────────────── */
.ot-hero {
  position: relative;
  height: 50vh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: 72px; /* offset for fixed nav */
}

.ot-hero img {
  position: absolute;
  object-position: center 30%;
  opacity: 20%;
}

/* Diagonal grid texture — matches site-wide pattern */
/*.ot-hero::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background-image:*/
/*    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),*/
/*    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);*/
/*  background-size: 80px 80px;*/
/*  pointer-events: none;*/
/*}*/

/* Right-side atmospheric fade */
.ot-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 50%;
  background: linear-gradient(to left, rgba(26,45,82,.5), transparent);
  pointer-events: none;
}

/* Ghost "TEAM" watermark — bottom-right */
.ot-hero-ghost {
  position: absolute;
  right: 40px;
  bottom: -30px;
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.ot-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 60px 48px;
}

.ot-breadcrumb {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-dm);
  margin-bottom: 14px;
}
.ot-breadcrumb a {
  color: rgba(137,144,160,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.ot-breadcrumb a:hover { color: var(--silver-dm); }

.ot-hero-h1 {
  font-family: var(--font-display);
  font-size: 100px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .85;
  color: var(--white);
}
.ot-hero-h1 em {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--silver-lt), var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ot-hero-sub {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(226,230,237,.6);
  max-width: 500px;
}

/* ── 2. INTRO ─────────────────────────────────────────── */
.ot-intro {
  border-bottom: 1px solid var(--border);
}

.ot-intro-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 60px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 72px;
  align-items: start;
}

.ot-intro-h2 {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .9;
  color: var(--navy);
  margin-bottom: 20px;
}
.ot-intro-h2 em {
  font-style: italic;
  color: var(--text-mid);
  display: block;
}

.ot-intro-p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 14px;
  max-width: 540px;
}

/* Values pills */
.ot-values {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 36px;
  list-style: none;
}
.ot-val {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 5px 13px;
  border-radius: 1px;
}

/* Timeline */
.ot-timeline {
  display: flex;
  flex-direction: column;
  list-style: none;
}
.ot-tl-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  position: relative;
  padding-bottom: 22px;
}
.ot-tl-row:last-child { padding-bottom: 0; }
/* Vertical connector line */
.ot-tl-row::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 18px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--border), transparent);
}
.ot-tl-row:last-child::before { display: none; }

.ot-tl-year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  padding-top: 3px;
  letter-spacing: .04em;
}
.ot-tl-dot {
  position: absolute;
  left: 32px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1.5px var(--gold);
}
.ot-tl-body { padding-left: 16px; }
.ot-tl-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.ot-tl-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Mission box */
.ot-mission {
  background: var(--navy);
  border-radius: 3px;
  border-left: 3px solid var(--gold);
  padding: 32px 28px;
  position: sticky;
  top: 88px; /* clears fixed nav */
}
.ot-mission-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver-dm);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ot-mission-label::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.ot-mission-quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
  color: var(--silver-lt);
  margin-bottom: 18px;
  border: none;
  padding: 0;
}
.ot-mission-attr {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-dm);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.ot-mission-attr::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
}

.ot-diff-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--silver-dm);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ot-diff-label::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--gold);
}
.ot-diff-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.ot-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(137,144,160,.85);
}
.ot-diff-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── 3. DIRECTORS & AGENTS ───────────────────────────── */
.ot-directors {
  background: var(--navy);
  padding: var(--section-pad);
}

.ot-directors-header {
  max-width: var(--max-width);
  margin: 0 auto 0 0;
  padding: 56px 60px 40px 0px;
}

/* Faded heading — matches mockup's very low-opacity grey */
.ot-directors-h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .9;
  color: var(--silver-lt);
}
.ot-directors-h2 em {
  font-style: italic;
  color: var(--silver-dm);
  display: block;
}

/* 2×2 grid — 3px gap filled by navy bg gives subtle divider */
.ot-directors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: rgba(255,255,255,.04);
}

/* Director card */
.ot-dc {
  background: var(--navy-card);
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

/* Gold left accent line */
.ot-dc::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent 8%, var(--gold) 50%, transparent 92%);
  z-index: 2;
}

/* Photo panel */
.ot-dc-photo {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Unique bg tone per card */
.ot-dc-bg-1 { background: linear-gradient(165deg, #243560 0%, #1a2d52 50%, #0f1e3a 100%); }
.ot-dc-bg-2 { background: linear-gradient(165deg, #1e3460 0%, #152848 50%, #0c1c36 100%); }
.ot-dc-bg-3 { background: linear-gradient(165deg, #243560 0%, #1e3460 50%, #132040 100%); }
.ot-dc-bg-4 { background: linear-gradient(165deg, #1a2d52 0%, #152848 50%, #0c1c36 100%); }

.ot-dc-photo-bg {
  position: absolute;
  inset: 0;
}
.ot-dc-photo-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.ot-dc-photo-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--navy-card), transparent);
  z-index: 1;
}
.ot-dc-photo-ph {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(137,144,160,.25);
  border: 1px dashed rgba(137,144,160,.12);
  padding: 7px 12px;
  border-radius: 1px;
}

/* Real photo img */
.ot-dc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*object-position: center top;*/
  position: absolute;
  inset: 0;
  display: block;
}

/* Card body */
.ot-dc-body {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ot-dc-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(184,153,90,.1);
  border: 1px solid rgba(184,153,90,.3);
  color: var(--gold-lt);
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 1px;
  margin-bottom: 12px;
}

.ot-dc-name {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--silver-lt);
  letter-spacing: -.01em;
  line-height: .88;
  margin-bottom: 5px;
}

.ot-dc-role {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-dm);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ot-dc-role::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.ot-dc-bio {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(137,144,160,.85);
  margin-bottom: 18px;
  flex-grow: 1;
}

/* Stats strip using <dl> for semantics */
.ot-dc-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 14px;
  margin-bottom: 14px;
}
.ot-dc-stat {
  flex: 1;
  padding-right: 14px;
  border-right: 1px solid rgba(255,255,255,.06);
  margin-right: 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ot-dc-stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
/* dt = label, dd = number — reversed visually via order */
.ot-dc-stat-lbl {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver-dm);
  order: 2;
}
.ot-dc-stat-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
  background: linear-gradient(135deg, var(--silver-lt), var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  order: 1;
}

.ot-dc-badges {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  list-style: none;
}
.ot-badge {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--silver-dm);
  border: 1px solid rgba(137,144,160,.18);
  padding: 3px 8px;
  border-radius: 1px;
}

.ot-dc-clubs {
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.05);
}
.ot-dc-clubs-lbl {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(137,144,160,.35);
  margin-bottom: 4px;
}
.ot-dc-clubs-list {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(137,144,160,.55);
}

/* ── 4. SUPPORT STAFF ────────────────────────────────── */
.ot-staff {
  background: var(--off);
  padding: 72px 60px;
  border-bottom: 1px solid var(--border);
  max-width: 100%;
}

.ot-staff img{width: 100%; height: 100%; object-fit: cover;}

.ot-staff-h2 {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .9;
  color: var(--navy);
  margin-bottom: 36px;
}
.ot-staff-h2 em {
  font-style: italic;
  color: var(--text-mid);
  display: block;
}

.ot-staff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ot-sc {
  background: var(--white);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Coloured top accent per role */
.ot-sc-top { height: 3px; }
.ot-sc-top-1 { background: var(--navy); }
.ot-sc-top-2 { background: var(--navy-card); }
.ot-sc-top-3 { background: var(--navy-lt); }
.ot-sc-top-4 { background: var(--navy-mid); }

.ot-sc-photo {
  height: 180px;
  background: var(--off);
  border-bottom: 1px solid var(--border);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Crosshair placeholder */
/*.ot-sc-photo::before,*/
/*.ot-sc-photo::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  background: var(--border);*/
/*}*/
/*.ot-sc-photo::before { width: 1px; top: 0; bottom: 0; left: 50%; }*/
/*.ot-sc-photo::after  { height: 1px; left: 0; right: 0; top: 50%; }*/

.ot-sc-photo-lbl {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ot-sc-body { padding: 16px 18px 20px; }
.ot-sc-dept {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.ot-sc-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: .02em;
  line-height: .95;
  margin-bottom: 4px;
}
.ot-sc-cred {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-style: italic;
}
.ot-sc-bio {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ── 5. PLAYER GALLERY ───────────────────────────────── */
.ot-players {
  background: var(--navy);
  padding: 64px 60px 72px;
}

.ot-players-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ot-players-h2 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .9;
  color: var(--silver-lt);
}
.ot-players-h2 em {
  font-style: italic;
  color: var(--silver-dm);
  display: block;
}

.ot-players-note {
  font-size: 12px;
  font-weight: 300;
  color: var(--silver-dm);
  font-style: italic;
  padding-bottom: 6px;
}

/* Filter tab bar */
.ot-filter-bar {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  margin-top: 20px;
}

.ot-filt {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 1px;
  cursor: pointer;
  border: none;
  transition: background var(--transition), color var(--transition);
}
.ot-filt.active {
  background: var(--white);
  color: var(--navy);
}
.ot-filt:not(.active) {
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.1);
  color: var(--silver-dm);
}
.ot-filt:not(.active):hover {
  background: rgba(255,255,255,.1);
  color: var(--silver-lt);
}

/* Player grid — 5 columns */
.ot-player-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
}

.ot-pt {
  height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  cursor: pointer;
}

.ot-pt-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg, #1e3460 0%, #1a2d52 50%, #0c1c36 100%);
}

.ot-pt-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/*.ot-pt-grid {*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background-image:*/
/*    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),*/
/*    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);*/
/*  background-size: 24px 24px;*/
/*  pointer-events: none;*/
/*}*/

.ot-pt-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 65%;
  background: linear-gradient(to top, rgba(12,28,54,.95) 0%, transparent 100%);
}

.ot-pt-body {
  position: relative;
  z-index: 2;
  padding: 10px 12px 14px;
  width: 100%;
}

.ot-pt-cap {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}
.ot-pt-cap::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.ot-pt-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--silver-lt);
  letter-spacing: .03em;
  line-height: 1;
  margin-bottom: 3px;
}

.ot-pt-club {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--silver-dm);
}

.ot-pt-pos {
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(137,144,160,.5);
  margin-top: 2px;
}

/* ── OUR TEAM RESPONSIVE ─────────────────────────────── */
@media (max-width: 1100px) {
  .ot-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .ot-mission { position: static; }
  .ot-directors-grid { grid-template-columns: 1fr; }
  .ot-dc { grid-template-columns: 200px 1fr; }
  .ot-player-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .ot-hero { height: 50vh; }
  .ot-hero-h1 { font-size: 72px; }
  .ot-hero-ghost { font-size: 140px; }
  .ot-intro-inner { padding: 48px 24px; }
  .ot-staff-grid { grid-template-columns: repeat(2, 1fr); }
  .ot-player-grid { grid-template-columns: repeat(2, 1fr); }
  .ot-dc { grid-template-columns: 1fr 1fr; }
  .ot-dc-photo { height: 100%; }
  .ot-directors-header { padding: 40px 24px 28px 0px; }
  .ot-staff { padding: 48px 24px; }
  .ot-players { padding: 48px 24px 56px; }
  .ot-players-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .ot-hero-content { padding: 0 24px 36px; }
  .ot-hero-h1 { font-size: 56px; }
  .ot-staff-grid { grid-template-columns: 1fr; }
  .ot-player-grid { grid-template-columns: repeat(1, 1fr); }
  .ot-filter-bar { gap: 4px; }
  .ot-filt { padding: 6px 12px; font-size: 9px; }
  .nav-logo {width: 150px;}
  .hero-bg-img {object-fit: cover}
  .stats-inner{grid-template-columns: repeat(2, 1fr);}
}

/* ════════════════════════════════════════════════════════
   SHARED PAGE HERO
   Used by Services, Contact and News pages.
   Classes prefixed pg- to avoid conflicts.
════════════════════════════════════════════════════════ */

.pg-hero {
  position: relative;
  min-height: 33vh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: 72px; /* fixed nav offset */
}

.pg-hero--news{
  min-height: 50vh
}

.pg-hero__bg {
  position: absolute;
  inset: 0;
}

.pg-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /*object-position: center 30%;*/
  display: block;
}

.news-hero__img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /*object-position: center 30%;*/
  display: block;
}

.pg-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(12,28,54,.92) 0%,
      rgba(12,28,54,.78) 40%,
      rgba(12,28,54,.55) 65%,
      rgba(12,28,54,.35) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(12,28,54,.1) 0%,
      rgba(12,28,54,.6) 100%
    );
}

/* Diagonal grid texture */
/*.pg-hero::before {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background-image:*/
/*    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),*/
/*    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);*/
/*  background-size: 80px 80px;*/
/*  z-index: 1;*/
/*  pointer-events: none;*/
/*}*/

.pg-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 60px 48px;
  max-width: 800px;
}

.pg-breadcrumb {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-dm);
  margin-bottom: 14px;
}
.pg-breadcrumb a {
  color: rgba(137,144,160,.5);
  text-decoration: none;
  transition: color var(--transition);
}
.pg-breadcrumb a:hover { color: var(--silver-dm); }

.pg-hero__h1 {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .88;
  color: var(--white);
  margin-bottom: 14px;
}
.pg-hero__h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--silver-lt), var(--silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/* News hero — italic first */
.pg-hero__h1--italic em {
  display: inline;
}

.pg-hero__sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(226,230,237,.65);
  max-width: 520px;
}


/* ════════════════════════════════════════════════════════
   SERVICES PAGE
   Classes prefixed sv-
════════════════════════════════════════════════════════ */

/* ── What We Offer — numbered rows ── */
.sv-offers {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.sv-offers__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

.sv-offers__h2 {
  font-size: 46px;
  color: var(--navy);
  margin-bottom: 44px;
}

.sv-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-row {
  display: grid;
  grid-template-columns: 80px 1fr 300px;
  gap: 28px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.sv-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Large silver numeral */
.sv-row__num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--silver-lt), var(--silver-dm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-top: 4px;
}

.sv-row__label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.sv-row__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: .02em;
  line-height: 1;
  margin-bottom: 12px;
}

.sv-row__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.72;
  color: var(--text-mid);
}

/* Aside box */
.sv-row__aside {
  background: var(--off);
  border-left: 3px solid var(--navy);
  padding: 18px 20px;
  border-radius: 1px;
  margin-top: 4px;
}

.sv-row__aside-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.sv-row__aside-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}
.sv-row__aside-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-mid);
}
.sv-row__aside-list li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── The TMS Process ── */
.sv-process {
  background: var(--navy);
  border-bottom: 1px solid rgba(30,52,96,.8);
}

.sv-process__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

.sv-process__h2 {
  font-size: 42px;
  color: var(--silver-lt);
  margin-bottom: 40px;
}

.sv-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 2px;
  overflow: hidden;
}

.sv-step {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
  background: var(--navy-card);
}
.sv-step--last { border-right: none; }

/* Connector arrow — sits between steps */
.sv-step__arrow {
  position: absolute;
  right: -18px;
  top: 36px;
  width: 36px;
  height: 36px;
  background: var(--navy);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--silver-dm);
  z-index: 1;
}

.sv-step__num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  background: linear-gradient(135deg, var(--silver-lt), var(--silver-dm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -.03em;
}

.sv-step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--silver-lt);
  margin-bottom: 10px;
}

.sv-step__text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(137,144,160,.8);
  margin-bottom: 14px;
}

.sv-step__tag {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Partners ── */
.sv-partners {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.sv-partners__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

.sv-partners__h2 {
  font-size: 42px;
  color: var(--navy);
  margin-bottom: 8px;
}

.sv-partners__sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.sv-partner-strip {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.sv-partner {
  flex: 0 0 160px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
}
.sv-partner:hover { border-color: var(--navy); }

/* Featured partner — navy background */
.sv-partner--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.sv-partner--featured .sv-partner__name { color: var(--silver-lt); }

.sv-partner__name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-align: center;
  line-height: 1.4;
  padding: 0 12px;
}

.sv-partner img{
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}


/* ════════════════════════════════════════════════════════
   CONTACT PAGE
   Classes prefixed ct-
════════════════════════════════════════════════════════ */

.ct-body {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.ct-body__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  align-items: start;
}

/* ── Form panel ── */
.ct-form-panel {
  padding-right: 64px;
  border-right: 1px solid var(--border);
}

.ct-form__h2 {
  font-size: 46px;
  color: var(--navy);
  margin-bottom: 32px;
}
.ct-form__h2 em {
  font-style: italic;
  color: var(--text-mid);
  display: block;
}

.ct-errors {
  background: rgba(220,50,50,.05);
  border: 1px solid rgba(220,50,50,.2);
  border-radius: 2px;
  padding: 14px 18px;
  margin-bottom: 24px;
}
.ct-errors ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ct-errors li {
  font-size: 13px;
  color: #c03030;
}

.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.ct-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.ct-input,
.ct-select,
.ct-textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: var(--off);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.ct-input { height: 46px; padding: 0 16px; }
.ct-textarea { padding: 14px 16px; resize: vertical; line-height: 1.6; }

.ct-input:focus,
.ct-select:focus,
.ct-textarea:focus {
  border-color: var(--navy);
  background: var(--white);
}
.ct-input--error { border-color: #c03030; }

.ct-select-wrap {
  position: relative;
}
.ct-select {
  height: 46px;
  padding: 0 40px 0 16px;
  appearance: none;
  cursor: pointer;
}
.ct-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: var(--text-muted);
  pointer-events: none;
}

.ct-hint {
  font-size: 11px;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 5px;
  margin-bottom: 0;
}

.ct-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.ct-checkbox {
  width: 16px;
  height: 16px;
  border: 1.5px solid var(--border);
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--navy);
  cursor: pointer;
}

.ct-consent-label {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.ct-consent-label a {
  color: var(--navy);
  text-decoration: underline;
}

.ct-consent-error {
  font-size: 11px;
  color: #c03030;
  margin-bottom: 8px;
  display: none;
}

.ct-submit {
  width: 100%;
  height: 52px;
  justify-content: center;
  margin-top: 8px;
  font-size: 13px;
}

/* ── Info sidebar ── */
.ct-info {
  padding-left: 52px;
  padding-top: 8px;
}

.ct-info__block {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
/* Last block — no border */
.ct-info__block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ct-info__label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ct-info__label::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.ct-info__value {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}
.ct-info__value:hover { color: var(--navy); }

.ct-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.ct-social-btn {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.ct-social-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.ct-agents {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.ct-agent {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ct-agent__av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy-card);
  flex-shrink: 0;
  overflow: hidden;
  border: 1.5px solid rgba(137,144,160,.15);
}
.ct-agent__av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ct-agent__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
  letter-spacing: .02em;
}
.ct-agent__role {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
}


/* ════════════════════════════════════════════════════════
   NEWS PAGE
   Classes prefixed nw-
════════════════════════════════════════════════════════ */

/* ── Featured story ── */
.nw-featured {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nw-featured__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

.nw-featured__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 8px;
}

/* Featured image panel */
.nw-feat-img {
  position: relative;
  min-height: 320px;
  background: var(--navy-card);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.nw-feat-img__src {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nw-feat-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(12,28,54,.96) 0%,
    rgba(12,28,54,.4) 50%,
    transparent 100%
  );
}
.nw-feat-img__body {
  position: relative;
  z-index: 1;
  padding: 28px 32px 32px;
}

.nw-feat-main__title {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: .01em;
  line-height: .92;
  margin-bottom: 16px;
  margin-top: 10px;
}

.nw-feat-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nw-feat-meta__av {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--navy-lt);
  flex-shrink: 0;
}
.nw-feat-meta__author {
  font-size: 12px;
  font-weight: 400;
  color: rgba(226,230,237,.65);
}
.nw-feat-meta__sep { color: rgba(137,144,160,.4); }
.nw-feat-meta__date {
  font-size: 12px;
  color: rgba(137,144,160,.5);
}

/* Sidebar */
.nw-feat-sidebar {
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.nw-feat-sidebar__hd {
  padding: 14px 18px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.nw-side-item {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: start;
  flex: 1;
}
.nw-side-item--last { border-bottom: none; }

.nw-side-item__thumb {
  height: 54px;
  background: linear-gradient(135deg, var(--off), var(--border));
  border-radius: 2px;
  flex-shrink: 0;
}

.nw-side-item__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 5px;
  margin-top: 5px;
}

.nw-side-item__date {
  font-size: 11px;
  color: var(--text-muted);
  display: block;
}

/* Category chips */
.nw-cat {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 1px;
  margin-bottom: 4px;
}
.nw-cat--gold {
  background: var(--gold);
  color: var(--navy);
}
.nw-cat--light {
  background: var(--off);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

/* ── Social section on news page ── */
.nw-social {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nw-social__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

.nw-social__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.nw-social__h2 {
  font-size: 38px;
  color: var(--navy);
}

.nw-social__icons {
  display: flex;
  gap: 10px;
  padding-bottom: 4px;
}

/* 4-col social card grid */
.nw-social__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.nw-sc {
  /*border: 1px solid var(--border);*/
  /*border-radius: 3px;*/
  padding: 16px;
  background: var(--white);
  overflow: hidden;
}

.nw-sc__head {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.nw-sc__av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-lt), var(--navy));
  flex-shrink: 0;
}
.nw-sc__name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.nw-sc__handle {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

.nw-sc__text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 12px;
}

.nw-sc__img {
  width: 100%;
  height: 140px;
  background: linear-gradient(135deg, var(--off), var(--border));
  border-radius: 2px;
  overflow: hidden;
}
.nw-sc__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ════════════════════════════════════════════════════════
   RESPONSIVE — Services, Contact, News
════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .sv-row { grid-template-columns: 64px 1fr 260px; gap: 20px; }
  .sv-steps { grid-template-columns: repeat(2, 1fr); }
  .sv-step:nth-child(2) { border-right: none; }
  .sv-step:nth-child(2) .sv-step__arrow,
  .sv-step:nth-child(4) .sv-step__arrow { display: none; }
  .ct-body__inner { grid-template-columns: 1fr 280px; }
  .nw-featured__grid { grid-template-columns: 1fr 300px; }
  .nw-social__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pg-hero { min-height: 33vh; }
  .pg-hero__h1 { font-size: 60px; }
  .sv-row { grid-template-columns: 56px 1fr; gap: 16px; }
  .sv-row__aside { display: none; } /* hide aside on smaller screens */
  .ct-body__inner { grid-template-columns: 1fr; gap: 48px; }
  .ct-form-panel { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 48px; }
  .ct-info { padding-left: 0; }
  .nw-featured__grid { grid-template-columns: 1fr; }
  .nw-feat-sidebar { border-left: none; border-top: 1px solid var(--border); }
  .nav-links {display: none;}
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; }
  .nav-hamburger{display:flex;}
  .social-feed-placeholder{overflow-x: scroll;}
  .ot-hero img{object-fit: fill;}
}

@media (max-width: 640px) {
  .pg-hero__content { padding: 0 24px 36px; }
  .pg-hero--contact .pg-hero__content {padding: 36px 24px 36px;}
  .pg-hero__h1 { font-size: 48px; }
  .sv-offers__inner,
  .sv-process__inner,
  .sv-partners__inner,
  .nw-featured__inner,
  .nw-social__inner { padding: 48px 24px; }
  .ct-body__inner { padding: 48px 24px; }
  .ct-form__row { grid-template-columns: 1fr; gap: 0; }
  .sv-steps { grid-template-columns: 1fr; }
  .sv-step { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .sv-step__arrow { display: none; }
  .nw-social__grid { grid-template-columns: 1fr; gap: 12px; }
  .sv-partner-strip { gap: 40px; }
  .sv-partner { flex: 0 0 140px; height: 54px; }
}

/* ════════════════════════════════════════════════════════
   ANIMATIONS
   Subtle fade + rise on scroll, plus hero load-in.
   Append to the bottom of main.css.
════════════════════════════════════════════════════════ */

/* ── Respect reduced motion preference first ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── Base reveal state ──────────────────────────────────
   Any element with [data-reveal] starts hidden + slightly
   lower, then animates to visible when the .is-visible
   class is added by the IntersectionObserver in main.js.
─────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Variants ────────────────────────────────────────────
   data-reveal="fade"  → fade only, no movement
   data-reveal="rise"  → default fade + rise (above)
   data-reveal="left"  → fade + slide in from left
   data-reveal="right" → fade + slide in from right
   data-reveal="scale" → fade + gentle scale up
─────────────────────────────────────────────────────── */
[data-reveal="fade"] {
  transform: none;
}

[data-reveal="left"] {
  transform: translateX(-20px);
}
[data-reveal="left"].is-visible {
  transform: translateX(0);
}

[data-reveal="right"] {
  transform: translateX(20px);
}
[data-reveal="right"].is-visible {
  transform: translateX(0);
}

[data-reveal="scale"] {
  transform: scale(0.96);
}
[data-reveal="scale"].is-visible {
  transform: scale(1);
}

/* ── Stagger support ─────────────────────────────────────
   Add data-reveal-group to a parent, then data-reveal on
   children — main.js will stagger each child's transition
   delay automatically based on its index within the group.
   Manual override: data-reveal-delay="120" (ms)
─────────────────────────────────────────────────────── */
[data-reveal][style*="--reveal-delay"] {
  transition-delay: var(--reveal-delay);
}


/* ── HERO LOAD-IN ────────────────────────────────────────
   Runs once on page load (not scroll-triggered).
   Each line/element gets a staggered delay via inline
   --hero-delay custom property set in the template,
   or via the nth-child fallback below.
─────────────────────────────────────────────────────── */

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Elements opt in with [data-hero-in] */
[data-hero-in] {
  opacity: 0;
  animation: hero-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--hero-delay, 0s);
}

[data-hero-in="fade"] {
  animation-name: hero-fade;
}

/* Reduced motion — show immediately */
@media (prefers-reduced-motion: reduce) {
  [data-hero-in] {
    opacity: 1;
    animation: none;
  }
}


/* ── Stat counter — number count-up ──────────────────────
   .stat-number gets .counted class added by main.js when
   it scrolls into view; the digits are swapped via JS,
   this just adds a subtle scale pulse on completion.
─────────────────────────────────────────────────────── */
.stat-number {
  display: inline-block;
}
.stat-number.counted {
  animation: stat-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes stat-pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .stat-number.counted { animation: none; }
}


/* ── Nav scroll state ────────────────────────────────────
   .scrolled class is toggled by main.js — gives the fixed
   nav a subtle shadow + slightly more opaque background
   once the page has scrolled past the hero.
─────────────────────────────────────────────────────── */
.nav {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav.scrolled {
  background: rgba(12,28,54,.98);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}


/* ── Card hover lift ─────────────────────────────────────
   Subtle lift on hover for service cards, director cards,
   player tiles etc. Applies broadly via shared class.
─────────────────────────────────────────────────────── */
.svc-card,
.photo-cell,
.ot-dc,
.ot-pt,
.ot-sc,
.sv-partner {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
}
.svc-card:hover,
.ot-sc:hover,
.sv-partner:hover {
  transform: translateY(-4px);
}
.photo-cell:hover .cell-img,
.ot-pt:hover .ot-pt-img,
.ot-dc:hover .ot-dc-img {
  transform: scale(1.04);
}
.cell-img,
.ot-pt-img,
.ot-dc-img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  .svc-card, .photo-cell, .ot-dc, .ot-pt, .ot-sc, .sv-partner,
  .cell-img, .ot-pt-img, .ot-dc-img {
    transition: none !important;
  }
}
/* ════════════════════════════════════════════════════════
   FLASH MESSAGES
   Site-wide success / error banner, shown once after a
   redirect (e.g. contact form submission). Sits just below
   the fixed nav, full-width, dismissible.
════════════════════════════════════════════════════════ */

.flash-wrap {
  position: fixed;
  top: 88px; /* sits just below the 72px fixed nav, with a gap */
  left: 0;
  right: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  pointer-events: none; /* clicks pass through the wrapper... */
}

.flash-msg {
  pointer-events: auto; /* ...but not through the message itself */
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 560px;
  width: 100%;
  padding: 16px 18px;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(12,28,54,.18);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.flash-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.flash-text {
  flex: 1;
}

.flash-close {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0 0 0 4px;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.flash-close:hover { opacity: 1; }

/* ── Success variant — uses brand gold as the accent ── */
.flash-success {
  background: #f3f8f3;
  border: 1.5px solid #bfe0bf;
  color: #1d5c2e;
}
.flash-success .flash-icon {
  background: #2e8b4f;
  color: #ffffff;
}
.flash-success .flash-close { color: #1d5c2e; }

/* ── Error variant ── */
.flash-error {
  background: #fdf3f3;
  border: 1.5px solid #e8bcbc;
  color: #8c2b2b;
}
.flash-error .flash-icon {
  background: #c0392b;
  color: #ffffff;
}
.flash-error .flash-close { color: #8c2b2b; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .flash-wrap {
    top: 76px;
    padding: 0 16px;
  }
  .flash-msg {
    padding: 14px 16px;
    font-size: 13px;
  }
}

/* ════════════════════════════════════════════════════════
   TESTIMONIALS SECTION
   Dark navy background — sits between the white Who We Are
   section and the off-white Services section, acting as a
   visual break while doing credibility work.
   Classes prefixed tq- to avoid any conflicts.
════════════════════════════════════════════════════════ */

.testimonials-section {
  background: var(--navy);
  border-top: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
  position: relative;
  overflow: hidden;
}

.testimonials-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.testimonials-header {
  margin-bottom: 48px;
}

.testimonials-h2 {
  font-size: 52px;
  color: var(--silver-lt);
  margin-top: 4px;
}
.testimonials-h2 em {
  font-style: italic;
  color: var(--silver-dm);
  display: block;
}

/* ── three-column card grid ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
  align-items: stretch; /* all cards same height */
}

/* ── Individual card ── */
.tq-card {
  background: var(--navy-card);
  height: 100%;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 3px;
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tq-card:hover {
  border-color: rgba(184,153,90,.3);
  box-shadow: 0 12px 40px rgba(12,28,54,.25);
}

/* Gold left accent — consistent with director cards */
.tq-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent 5%,
    var(--gold) 50%,
    transparent 95%
  );
}

/* ── Large decorative opening quote mark ── */
.tq-quote-mark {
  font-family: Georgia, serif;
  font-size: 96px;
  line-height: 1;
  color: rgba(184,153,90,.15);
  position: absolute;
  top: 12px;
  right: 24px;
  pointer-events: none;
  user-select: none;
  font-style: normal;
}

/* ── Quote body ── */
.tq-body {
  margin: 0 0 28px;
  border: none;
  padding: 0;
  flex-grow: 1;
}

.tq-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.78;
  color: rgba(226,230,237,.75);
  margin-bottom: 14px;
}
.tq-text:last-child { margin-bottom: 0; }

/* Highlighted closing line — slightly brighter */
.tq-text--highlight {
  color: rgba(226,230,237,.92);
  font-style: italic;
}

/* ── Footer: avatar + attribution ── */
.tq-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.tq-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--navy-lt);
  flex-shrink: 0;
  overflow: hidden;
  border: 1.5px solid rgba(184,153,90,.3);
}
.tq-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.tq-attribution {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tq-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--silver-lt);
  letter-spacing: .04em;
  line-height: 1;
}

.tq-club {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver-dm);
  display: flex;
  align-items: center;
  gap: 7px;
}
.tq-club::before {
  content: '';
  display: block;
  width: 12px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Cap badges */
.tq-caps {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.tq-cap {
  font-family: var(--font-display);
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 1px;
  border: 1px solid rgba(137,144,160,.2);
  color: var(--silver-dm);
  background: transparent;
}

/* Lions cap — gold tint to give it distinction */
.tq-cap--lions {
  border-color: rgba(184,153,90,.4);
  color: var(--gold-lt);
  background: rgba(184,153,90,.08);
}

/* Long-tenure badge */
.tq-cap--testimonial {
  border-color: rgba(137,144,160,.15);
  color: rgba(137,144,160,.6);
  font-style: italic;
}

/* ── CTA row below testimonials ── */
.testimonials-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.testimonials-cta__text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(226,230,237,.55);
  font-style: italic;
  max-width: 480px;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .tq-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 8px); /* keeps it same width as the others */
  }
  .testimonials-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  /* Reset the span on mobile — all cards full width */
  .tq-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .testimonials-h2 { font-size: 38px; }
  .tq-card { padding: 28px 24px 22px; }
  .tq-text { font-size: 14px; }
  .tq-quote-mark { font-size: 72px; top: 8px; right: 16px; }
}


.pn-section {
  background: var(--off);
  border-bottom: 1px solid var(--border);
}

.pn-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
}

/* ── Section header ── */
.pn-header {
  margin-bottom: 36px;
}

.pn-heading {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: .9;
  color: var(--navy);
  margin-top: 4px;
  margin-bottom: 10px;
}
.pn-heading em {
  font-style: italic;
  color: var(--text-mid);
  display: block;
}

.pn-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 520px;
}

/* ── Card grid — 3 columns, wraps naturally ── */
.pn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ── Individual card ── */
.pn-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  border-left: 3px solid var(--gold); /* default accent */
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.pn-card:hover {
  box-shadow: 0 8px 24px rgba(12,28,54,.09);
  border-color: var(--border);
}

/* Club accent colours — left border only */
.pn-card--worcester { border-left-color: #7B2D8B; } /* Worcester purple */
.pn-card--cardiff   { border-left-color: #003082; } /* Cardiff blue */
.pn-card--scotland { border-left-color: #053c64; } /* Scottish Rugby navy */
.pn-card--munster  { border-left-color: #003865; } /* Munster dark blue   */
.pn-card--ireland { border-left-color: #169b62; } /* Ireland green  */
.pn-card--wales   { border-left-color: #c8102e; } /* Wales red      */
.pn-card--italy   { border-left-color: #009246; } /* Italy green    */
.pn-card--scarlets { border-left-color: #c8102e; } /* Scarlets red */
.pn-card--default   { border-left-color: var(--gold); }

/* ── Meta row: category + club + date ── */
.pn-card__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Category badge */
.pn-cat {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 1px;
}
.pn-cat--signing {
  background: var(--navy);
  color: var(--silver-lt);
}
.pn-cat--extension {
  background: rgba(184,153,90,.12);
  color: var(--gold);
  border: 1px solid rgba(184,153,90,.3);
}
.pn-cat--international {
  background: rgba(12,28,54,.06);
  color: var(--navy);
  border: 1px solid var(--border);
}

/* Club name */
.pn-club {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Date */
.pn-date {
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  margin-left: auto; /* pushes date to the right */
  white-space: nowrap;
}

/* ── Headline ── */
.pn-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.05;
  color: var(--navy);
}

/* ── Short description ── */
.pn-card__desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
  flex-grow: 1; /* pushes link to bottom of card */
}

/* ── Read more link ── */
.pn-card__link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  margin-top: auto;
  transition: gap var(--transition), color var(--transition);
}
.pn-card__link:hover {
  gap: 10px;
  color: var(--gold);
}

/* Source watermark — bottom-right corner, very subtle */
.pn-card__source {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(12,28,54,.08);
  pointer-events: none;
  user-select: none;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .pn-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pn-grid {
    grid-template-columns: 1fr;
  }
  .pn-heading { font-size: 36px; }
}

/* ════════════════════════════════════════════════════════
   LEGAL PAGES — Privacy Policy + Terms & Conditions
   Classes prefixed legal- to avoid conflicts.
   Append to the bottom of main.css.
════════════════════════════════════════════════════════ */

/* ── Narrow the hero height for text-only legal heroes ── */
.pg-hero--legal {
  min-height: 28vh;
}

/* ── Outer wrapper ── */
.legal-body {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.legal-body__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 72px;
  align-items: start;
}

/* ════════════════════════════════════════
   SIDEBAR NAV
════════════════════════════════════════ */
.legal-nav {
  position: sticky;
  top: 96px; /* clears the 72px fixed nav with a gap */
  padding: 24px 20px;
  background: var(--off);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
}

.legal-nav__label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.legal-nav__label::before {
  content: '';
  display: block;
  width: 14px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.legal-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 20px;
  padding-left: 0;
  counter-reset: none;
}

.legal-nav__list li {
  display: block;
}

.legal-nav__list a {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 8px;
  border-radius: 1px;
  transition: color var(--transition), background var(--transition);
  line-height: 1.3;
}
.legal-nav__list a:hover {
  color: var(--navy);
  background: rgba(12,28,54,.05);
}

.legal-nav__meta {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-nav__date {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.legal-nav__switch {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.legal-nav__switch:hover { color: var(--gold); }

/* ════════════════════════════════════════
   MAIN CONTENT
════════════════════════════════════════ */
.legal-content {
  min-width: 0; /* prevents grid blowout */
}

/* Opening paragraph */
.legal-intro {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-mid);
  padding: 24px 28px;
  background: var(--off);
  border-left: 3px solid var(--navy);
  border-radius: 2px;
  margin-bottom: 40px;
}

/* Each numbered section */
.legal-section {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.legal-section:last-of-type {
  border-bottom: none;
}

/* Section heading — large italic numeral + title */
.legal-h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.01em;
  line-height: 1;
  color: var(--navy);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.legal-num {
  font-size: 52px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--silver-lt), var(--silver-dm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  /* Align the numeral baseline with the heading text */
  position: relative;
  top: 4px;
}

/* Sub-headings within a section */
.legal-h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--navy);
  margin: 22px 0 8px;
}
.legal-h3:first-child { margin-top: 0; }

/* Body text inside sections */
.legal-section p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.78;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }

/* In-text links */
.legal-section a,
.legal-intro a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.legal-section a:hover,
.legal-intro a:hover {
  color: var(--gold);
}

/* Bullet lists */
.legal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 14px 0;
}

.legal-list li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}
.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Address / contact block */
.legal-address {
  background: var(--off);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 2px;
  padding: 16px 20px;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.legal-address p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-mid);
  margin-bottom: 0 !important;
  line-height: 1.5;
}
.legal-address strong {
  color: var(--navy);
}

/* Bottom nav buttons */
.legal-footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 40px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1100px) {
  .legal-body__inner {
    grid-template-columns: 200px 1fr;
    gap: 48px;
  }
}

@media (max-width: 860px) {
  /* Sidebar moves above content on tablet/mobile */
  .legal-body__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .legal-nav {
    position: static;
    /* Horizontal scroll list on mobile */
  }
  .legal-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
  }
  .legal-nav__list a {
    font-size: 11px;
    padding: 4px 8px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 1px;
  }
  .legal-h2 {
    font-size: 24px;
    gap: 10px;
  }
  .legal-num {
    font-size: 40px;
  }
}

@media (max-width: 640px) {
  .legal-body__inner {
    padding: 48px 24px;
  }
  .pg-hero--legal {
    min-height: 24vh;
  }
  .legal-footer-links {
    flex-direction: column;
  }
  .legal-footer-links .btn-ghost {
    text-align: center;
    justify-content: center;
  }
}
