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

    :root {
      --navy: #0b1f3a;
      --navy-mid: #122848;
      --navy-light: #1a3560;
      --gold: #C9A227;
      --gold-bright: #F5C842;
      --gold-dim: #a07d10;
      --white: #ffffff;
      --off-white: #f4f1ea;
      --text-muted: #8fa3bc;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Barlow', sans-serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(11, 31, 58, 0.92);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 68px;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo img {
      width: 46px;
      height: 46px;
      object-fit: contain;
    }

    .nav-logo-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800;
      font-size: 20px;
      color: var(--white);
      letter-spacing: 0.08em;
      line-height: 1.1;
    }

    .nav-logo-text span {
      display: block;
      font-size: 11px;
      font-weight: 500;
      color: var(--gold);
      letter-spacing: 0.2em;
    }

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

    .nav-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      padding: 8px 16px;
      border-radius: 4px;
      transition: color 0.2s, background 0.2s;
    }

    .nav-links a:hover, .nav-links a.active {
      color: var(--gold);
      background: rgba(201,162,39,0.08);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

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

    .hero-gradient {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(11,31,58,0.3) 0%,
        rgba(11,31,58,0.15) 40%,
        rgba(11,31,58,0.75) 70%,
        rgba(11,31,58,0.97) 100%
      );
    }

    .hero-accent {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 5px;
      background: var(--gold);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 0 60px 70px;
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
    }

    .hero-left {}

    .hero-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.3em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .hero-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(56px, 8vw, 100px);
      font-weight: 900;
      line-height: 0.9;
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: -0.01em;
    }

    .hero-title em {
      font-style: italic;
      color: var(--gold);
    }

    .hero-sub {
      font-size: 16px;
      color: var(--text-muted);
      margin-top: 18px;
      max-width: 400px;
      line-height: 1.6;
    }

    .hero-buttons {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }

    .btn-gold {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--navy);
      padding: 13px 28px;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-gold:hover {
      background: var(--gold-bright);
      transform: translateY(-2px);
    }

    .btn-outline {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      background: transparent;
      color: var(--white);
      padding: 13px 28px;
      border-radius: 4px;
      border: 2px solid rgba(255,255,255,0.3);
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, transform 0.15s;
      display: inline-block;
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
      transform: translateY(-2px);
    }

    .hero-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 16px;
      flex-shrink: 0;
    }

    .hero-stat {
      text-align: right;
    }

    .hero-stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 52px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }

    .hero-stat-label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.15em;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .hero-divider {
      width: 1px;
      height: 50px;
      background: rgba(201,162,39,0.3);
      margin: 0 auto;
    }

    /* ── SECTION BASE ── */
    .section {
      padding: 90px 60px;
    }

    .section-label {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.35em;
      color: var(--gold);
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    .section-heading {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(36px, 5vw, 56px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.95;
      color: var(--white);
      letter-spacing: -0.01em;
    }

    .section-heading em {
      font-style: italic;
      color: var(--gold);
    }

    /* ── COACH SECTION ── */
    .coach-section {
      background: var(--navy-mid);
      border-top: 1px solid rgba(201,162,39,0.15);
      border-bottom: 1px solid rgba(201,162,39,0.15);
    }

    .coach-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .coach-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(201,162,39,0.12);
      border: 1px solid rgba(201,162,39,0.3);
      border-radius: 30px;
      padding: 6px 16px;
      margin-bottom: 24px;
    }

    .badge-icon {
      width: 16px;
      height: 16px;
      background: var(--gold);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .coach-badge-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.2em;
      color: var(--gold);
      text-transform: uppercase;
    }

    .coach-name {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 900;
      text-transform: uppercase;
      line-height: 0.92;
      color: var(--white);
      margin-bottom: 20px;
    }

    .coach-name em {
      font-style: italic;
      color: var(--gold);
    }

    .coach-bio {
      font-size: 16px;
      line-height: 1.75;
      color: var(--text-muted);
      margin-bottom: 32px;
    }

    .coach-bio strong {
      color: var(--white);
      font-weight: 600;
    }

    .coach-stats {
      display: flex;
      gap: 40px;
    }

    .coach-stat {}

    .coach-stat-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 44px;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }

    .coach-stat-label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-top: 4px;
    }

    .coach-img-wrap {
      position: relative;
    }

    .coach-img-frame {
      width: 100%;
      aspect-ratio: 4/5;
      background: var(--navy-light);
      border-radius: 8px;
      overflow: hidden;
      border: 2px solid rgba(201,162,39,0.2);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .coach-img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .coach-placeholder {
      text-align: center;
      color: var(--text-muted);
    }

    .coach-placeholder svg {
      opacity: 0.2;
      margin-bottom: 12px;
    }

    .coach-placeholder p {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px;
      letter-spacing: 0.15em;
      opacity: 0.5;
    }

    .coach-corner {
      position: absolute;
      bottom: -16px;
      right: -16px;
      width: 80px;
      height: 80px;
      background: var(--gold);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .coach-corner img {
      width: 52px;
      height: 52px;
      object-fit: contain;
    }

    /* ── NEWS SECTION ── */
    .news-section {
      background: var(--navy);
    }

    .news-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .news-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 48px;
    }

    .news-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 24px;
    }

    .news-card {
      background: var(--navy-mid);
      border: 1px solid rgba(201,162,39,0.15);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color 0.25s, transform 0.25s;
      cursor: pointer;
    }

    .news-card:hover {
      border-color: rgba(201,162,39,0.5);
      transform: translateY(-4px);
    }

    .news-card-img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
    }

    .news-card-img-placeholder {
      width: 100%;
      height: 240px;
      background: var(--navy-light);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-muted);
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      letter-spacing: 0.15em;
    }

    .news-card-body {
      padding: 28px;
    }

    .news-tag {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,162,39,0.35);
      border-radius: 3px;
      padding: 3px 10px;
      margin-bottom: 14px;
    }

    .news-card-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 26px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 10px;
    }

    .news-card-desc {
      font-size: 14px;
      line-height: 1.65;
      color: var(--text-muted);
    }

    .news-side {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .news-small {
      background: var(--navy-mid);
      border: 1px solid rgba(201,162,39,0.15);
      border-radius: 8px;
      padding: 22px 24px;
      flex: 1;
      transition: border-color 0.25s, transform 0.25s;
      cursor: pointer;
    }

    .news-small:hover {
      border-color: rgba(201,162,39,0.5);
      transform: translateY(-3px);
    }

    .news-small-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 20px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 8px;
    }

    .news-small-desc {
      font-size: 13px;
      line-height: 1.6;
      color: var(--text-muted);
    }

    /* ── LINKS SECTION ── */
    .links-section {
      background: var(--navy-mid);
      border-top: 1px solid rgba(201,162,39,0.15);
    }

    .links-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .links-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .links-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .link-card {
      background: var(--navy);
      border: 1px solid rgba(201,162,39,0.2);
      border-radius: 8px;
      padding: 36px 28px;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      transition: border-color 0.25s, transform 0.25s, background 0.25s;
    }

    .link-card:hover {
      border-color: var(--gold);
      background: rgba(201,162,39,0.05);
      transform: translateY(-4px);
    }

    .link-icon {
      width: 44px;
      height: 44px;
      background: rgba(201,162,39,0.1);
      border-radius: 8px;
      border: 1px solid rgba(201,162,39,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .link-icon svg {
      width: 22px;
      height: 22px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .link-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 22px;
      font-weight: 800;
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 0.02em;
    }

    .link-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.55;
      flex: 1;
    }

    .link-arrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.15em;
      color: var(--gold);
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .link-arrow::after {
      content: '→';
      font-size: 16px;
    }

    /* ── FOOTER ── */
    .footer {
      background: #060f1c;
      border-top: 3px solid var(--gold);
      padding: 48px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer-brand img {
      width: 50px;
      object-fit: contain;
    }

    .footer-brand-text {
      font-family: 'Barlow Condensed', sans-serif;
    }

    .footer-brand-name {
      font-size: 20px;
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      letter-spacing: 0.05em;
    }

    .footer-brand-sub {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.25em;
      color: var(--gold);
      text-transform: uppercase;
    }

    .footer-links {
      display: flex;
      gap: 24px;
    }

    .footer-links a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-copy {
      font-size: 13px;
      color: var(--text-muted);
      opacity: 0.5;
    }

    /* ── GOLD LINE DIVIDER ── */
    .gold-rule {
      width: 60px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      margin-top: 16px;
    }

    @media (max-width: 900px) {
      .navbar { padding: 0 20px; }
      .hero-content { padding: 0 24px 60px; flex-direction: column; align-items: flex-start; }
      .hero-right { flex-direction: row; align-items: center; }
      .section { padding: 60px 24px; }
      .coach-inner { grid-template-columns: 1fr; gap: 48px; }
      .coach-img-wrap { order: -1; }
      .coach-img-frame { aspect-ratio: 16/9; }
      .news-grid { grid-template-columns: 1fr; }
      .links-grid { grid-template-columns: 1fr; }
      .footer { flex-direction: column; text-align: center; padding: 40px 24px; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }
