/* =========================================================
   Chennimalai Marathon — Main Stylesheet
========================================================= */
:root {
  --navy: #0d1f47;
  --navy-dark: #0a1836;
  --green: #1f6d3f;
  --green-dark: #14502e;
  --orange: #f5a623;
  --orange-dark: #e6960f;
  --text-dark: #1c2b3a;
  --text-gray: #5a6472;
  --light-gray: #f2f2f2;
  --border-gray: #e5e7eb;
  --blue-icon: #2f7fd6;
  --pink-icon: #e05a8a;
  --purple-icon: #8b5fc9;
  --font-display: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; }

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); margin: 0; overflow-wrap: break-word; word-break: break-word; }
p { overflow-wrap: break-word; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
table { max-width: 100%; }

.container-custom { max-width: 1680px; margin: 0 auto; padding: 0 40px; }

/* =========================================================
   HEADER / NAV
========================================================= */
.site-header { background: #ffffff; padding: 18px 0; border-bottom: 1px solid var(--border-gray); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; max-width: 1680px; margin: 0 auto; padding: 0 40px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo{
    width:80px;
    height:80px;
    flex-shrink:0;
    display:flex;
    align-items:center;
    justify-content:center;
    background:none;
    border:none;
    border-radius:0;
    overflow:hidden;
}

.brand-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}
.brand-text h1 { font-size: 24px; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; line-height: 1.1; }
.brand-tagline { font-size: 13px; font-style: italic; color: var(--text-gray); display: flex; align-items: center; gap: 8px; margin-top: 4px; }
.brand-tagline::before, .brand-tagline::after { content: ''; width: 22px; height: 2px; display: inline-block; }
.brand-tagline::before { background: var(--orange); }
.brand-tagline::after { background: var(--green); }

.main-nav { display: flex; align-items: center; gap: 38px; }
.main-nav a { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: 0.5px; color: var(--navy); padding-bottom: 6px; border-bottom: 2px solid transparent; white-space: nowrap; transition: color .2s ease, border-color .2s ease; }
.main-nav a:hover { color: var(--green); }
.main-nav a.active { color: var(--green); border-bottom-color: var(--green); }

.btn-register { background: var(--orange); color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.5px; padding: 14px 26px; border-radius: 6px; display: inline-flex; align-items: center; gap: 10px; border: none; cursor: pointer; transition: background .2s ease; white-space: nowrap; }
.btn-register:hover { background: var(--orange-dark); color: var(--navy); }
.nav-toggle { display: none; align-items: center; justify-content: center; width: 44px; height: 44px; flex-shrink: 0; flex-basis: 44px; background: none; border: none; padding: 0; font-size: 26px; line-height: 1; color: var(--navy); cursor: pointer; position: relative; z-index: 1000; }
.mobile-register-btn { display: none; }

/* =========================================================
   INNER PAGE HERO BANNER (About / FAQ / Contact / Sponsors)
========================================================= */
.inner-hero { position: relative; min-height: 320px; display: flex; align-items: center; background-size: cover; background-position: center; overflow: hidden; background-color: var(--navy-dark); }
.inner-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,24,54,0.90) 0%, rgba(10,24,54,0.65) 45%, rgba(10,24,54,0.35) 100%); z-index: 1; }
.inner-hero-content { position: relative; z-index: 2; max-width: 1680px; margin: 0 auto; padding: 0 40px; width: 100%; color: #fff; }
.breadcrumb { font-size: 14px; font-weight: 600; letter-spacing: 0.5px; margin-bottom: 18px; }
.breadcrumb i { font-size: 12px; margin-right: 4px; }
.breadcrumb .current { color: var(--orange); }
.inner-hero h2 { font-size: 52px; font-weight: 800; line-height: 1.05; margin-bottom: 18px; }
.inner-hero .accent-green { color: #7ed99a; }
.inner-hero-divider { width: 70px; height: 3px; background: var(--orange); margin-bottom: 22px; }
.inner-hero p.lead { font-size: 17px; max-width: 460px; line-height: 1.6; color: #e7ecf3; }

.faq-hero, .contact-hero, .sponsors-hero { text-align: left; }
.hero-centered .inner-hero-content { text-align: center; max-width: 900px; margin: 0 auto; }
.hero-centered p.lead { max-width: 700px; margin: 0 auto; }

.center-divider { display: flex; align-items: center; justify-content: flex-start; gap: 10px; margin-bottom: 20px; }
.hero-centered .center-divider { justify-content: center; }
.center-divider .line { height: 2px; width: 90px; }
.center-divider .line.orange { background: var(--orange); }
.center-divider .line.green { background: var(--green); }
.center-divider i { color: #fff; font-size: 14px; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer { background: var(--navy); color: #fff; padding: 30px 0; }
.footer-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    max-width:1680px;
    margin:0 auto;
    padding:0 40px;
    flex-wrap:wrap;
}
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand-logo{
    width:65px;
    height:65px;
    border:none;
}

.footer-brand-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}
.footer-brand-text h3 { font-size: 19px; font-weight: 700; color: #fff; line-height: 1.2; }
.footer-brand-tagline { font-size: 12px; font-style: italic; color: #c7cedb; display: flex; align-items: center; gap: 6px; margin-top: 4px; }
.footer-brand-tagline::before, .footer-brand-tagline::after { content: ''; width: 16px; height: 2px; display: inline-block; }
.footer-brand-tagline::before { background: var(--orange); }
.footer-brand-tagline::after { background: var(--green); }
.footer-nav{
    display:flex;
    gap:28px;
    flex-wrap:wrap;
    margin-left:80px;
}
.footer-nav a { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.5px; color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.footer-nav a i { font-size: 13px; color: var(--orange); opacity: 0.9; }
.footer-nav a.active { color: var(--orange); border-bottom: 2px solid var(--orange); padding-bottom: 4px; }
.footer-meta { display: flex; align-items: center; gap: 20px; }
.footer-divider { width: 1px; align-self: stretch; background: rgba(255,255,255,0.25); }
.footer-copy { font-size: 13px; color: #d7dce6; text-align: right; line-height: 1.5; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff; }
.footer-copy-bar { background: var(--light-gray); padding: 18px 40px; text-align: center; font-size: 13px; color: var(--text-gray); }
.footer-copy-bar strong { color: var(--navy); }
.footer-copy-bar .footer-credit-link { color: var(--navy); font-weight: 600; text-decoration: none; }
.footer-copy-bar .footer-credit-link:hover { text-decoration: underline; }

/* =========================================================
   HOME PAGE — HERO
========================================================= */
.home-hero { position: relative; min-height: 600px; background: linear-gradient(120deg,#13315c 0%, #1f6d3f 100%); background-size: cover; background-position: center; display: flex; align-items: center; overflow: hidden; }
.home-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(10,24,54,0.6) 0%, rgba(10,24,54,0.2) 55%, rgba(10,24,54,0.05) 100%); z-index: 1; }
.home-hero-content { position: relative; z-index: 2; max-width: 1680px; margin: 0 auto; padding: 0 40px; width: 100%; color: #fff; }
.home-hero h2 { font-size: 50px; font-weight: 800; line-height: 1.15; margin-bottom: 18px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.home-hero .accent-orange { color: var(--orange); }
.home-hero p.lead { font-size: 17px; max-width: 480px; line-height: 1.6; margin-bottom: 30px; text-shadow: 0 1px 6px rgba(0,0,0,0.3); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-watch { border: 2px solid #fff; color: #fff; background: transparent; font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: 0.5px; padding: 13px 26px; border-radius: 6px; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; transition: background .2s ease, color .2s ease; }
.btn-watch:hover { background: rgba(255,255,255,0.15); }

.countdown-box { position: absolute; top: 40px; right: 40px; z-index: 2; background: rgba(20,50,35,0.9); border-radius: 8px; padding: 16px 20px; text-align: center; }
.countdown-label { color: #fff; font-size: 12px; letter-spacing: 1px; font-weight: 600; margin-bottom: 10px; }
.countdown-label i { color: var(--orange); margin-right: 4px; }
.countdown-blocks { display: flex; gap: 10px; }
.countdown-block { background: rgba(255,255,255,0.08); border-radius: 4px; padding: 8px 12px; min-width: 56px; }
.countdown-block .num { color: var(--orange); font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: 1; }
.countdown-block .unit { color: #fff; font-size: 10px; letter-spacing: 0.5px; margin-top: 4px; }

.info-strip { background: var(--green-dark); padding: 26px 0; }
.info-strip-inner { max-width: 1680px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.info-item { display: flex; align-items: center; gap: 14px; color: #fff; }
.info-item i { font-size: 22px; color: var(--orange); }
.info-item .info-label { font-size: 12px; letter-spacing: 0.5px; color: #d9e5db; text-transform: uppercase; margin-bottom: 3px; }
.info-item .info-value { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.info-item .info-value .highlight { color: var(--orange); }

/* =========================================================
   SECTION HEADING (shared)
========================================================= */
.section { padding: 70px 0; }
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading .divider-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 14px; }
.section-heading .divider-row .line { display: none; }
.section-heading .divider-row i { color: var(--green); font-size: 16px; }
.section-heading h3 { font-size: 30px; font-weight: 800; letter-spacing: 0.5px; color: var(--navy); }

.race-cats { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 36px; }
.race-card { background: #fff; border: 1px solid var(--border-gray); border-radius: 10px; box-shadow: 0 4px 18px rgba(0,0,0,0.05); padding: 28px 60px; display: flex; align-items: center; gap: 20px; min-width: 300px; transition: transform .25s ease, box-shadow .25s ease; }
.race-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,0,0,0.1); }
.race-icon { width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; flex-shrink: 0; }
.race-icon.green { background: var(--green); }
.race-icon.blue { background: var(--blue-icon); }
.race-card .km { font-family: var(--font-display); font-weight: 800; font-size: 22px; }
.race-card .km.green-text { color: var(--green); }
.race-card .km.blue-text { color: var(--blue-icon); }
.race-card .run-type { font-weight: 600; color: var(--text-dark); font-size: 15px; margin-bottom: 8px; }
.race-card .age { font-size: 13px; color: var(--text-gray); border-top: 1px solid var(--border-gray); padding-top: 8px; display: flex; align-items: center; gap: 6px; }
.btn-view-details { display: block; margin: 0 auto; background: var(--green-dark); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 14px; padding: 14px 30px; border-radius: 6px; width: max-content; max-width: 100%; border: none; cursor:pointer; transition: background .2s ease; }
.btn-view-details:hover { background: var(--green); }

.why-section { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.why-list h3 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 26px; }
.why-list ul { list-style: none; padding: 0; margin: 0; }
.why-list li { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; font-size: 15px; color: var(--text-dark); }
.why-list .check-icon { width: 26px; height: 26px; border-radius: 50%; border: 2px solid var(--green); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.why-images { flex: 1; min-width: 320px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.why-images .why-img { border-radius: 6px; width: 100%; height: 160px; object-fit: cover; background: linear-gradient(135deg,#dfe9df,#c9d8cf); display:flex; align-items:center; justify-content:center; color:var(--text-gray); font-size:12px; }

.stats-bar { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06); border-radius: 10px; display: flex; justify-content: space-around; padding: 30px 20px; margin-top: 50px; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; }
.stat-item i { font-size: 26px; color: var(--orange); margin-bottom: 8px; }
.stat-item .num { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--navy); }
.stat-item .label { font-size: 13px; color: var(--text-gray); }

.cta-bar { background: var(--green-dark); padding: 30px 0; }
.cta-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    gap: 20px;
}
.cta-left i { font-size: 32px; color: #cfe8d7; }
.cta-left h4 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.cta-left p { font-size: 14px; color: #d9e5db; margin: 0; }
.btn-register-arrow { background: var(--orange); color: var(--navy); font-family: var(--font-display); font-weight: 700; font-size: 14px; padding: 14px 28px; border-radius: 6px; display: inline-flex; align-items: center; gap: 10px; border: none; white-space: nowrap; cursor:pointer; transition: background .2s ease; }
.btn-register-arrow:hover { background: var(--orange-dark); }

/* =========================================================
   ABOUT PAGE
========================================================= */
.about-cta {
    max-width: 1680px;
    margin: 0 auto;
    padding: 26px 40px;
}

.about-cta .cta-bar-inner {
    padding: 0;
}

.about-hero {
    position: relative;
    min-height: 420px;
    background: linear-gradient(120deg,#0d1f47 0%,#1f6d3f 100%);
    background-size: cover;
    background-position: center;
    padding: 55px 0;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(10,24,54,.75) 0%,
        rgba(10,24,54,.25) 55%,
        rgba(10,24,54,.05) 100%);
    z-index: 1;
}

/* NEW */
.about-hero .container-custom{
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* LEFT CONTENT */
.about-hero .inner-hero-content{
    width: 58%;
    max-width: 560px;
}

/* RIGHT QUOTE BOX */
.about-hero .quote-box{
    width: 320px;
    margin-top: 10px;
    margin-left: auto;
}

.about-hero h2{
    font-size:42px;
    font-weight:800;
    line-height:1.12;
    color:#fff;
    margin-bottom:16px;
}

.about-hero .accent-green{
    color:#7ed99a;
}

.about-hero p.lead{
    font-size:15.5px;
    line-height:1.6;
    color:#e7ecf3;
    max-width:480px;
    text-align:justify;
}

.about-hero .hero-mini-divider{
    width:40px;
    height:2px;
    background:#d6e94d;
    margin-top:14px;
}
.quote-box { position: relative; z-index: 2; margin: -30px 40px 0 auto; background: rgba(10,24,54,0.75); border: 1px solid rgba(255,255,255,0.25); border-radius: 8px; padding: 26px 28px; max-width: 300px; color: #fff; }
.quote-box .quote-mark { color: var(--orange); font-size: 32px; line-height: 1; margin-bottom: 10px; display: block; }
.quote-box p { font-style: italic; font-size: 15.5px; line-height: 1.55; margin-bottom: 14px; }
.quote-box .divider { width: 30px; height: 2px; background: var(--green); margin-bottom: 10px; }
.quote-box .author { font-weight: 700; color: var(--green); font-size: 15px; }
.quote-box .author-title { font-size: 12.5px; color: #c7cedb; }

.founder-card { background: #fff; box-shadow: 0 4px 24px rgba(0,0,0,0.08); border-radius: 10px; margin-top: -50px; position: relative; z-index: 3; padding: 26px 40px; display: flex; flex-direction: column; gap: 22px; transition: box-shadow .25s ease; }
.founder-card:hover { box-shadow: 0 10px 34px rgba(0,0,0,0.12); }
.founder-intro { display: flex; align-items: center; gap: 20px; }
.founder-photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg,#dfe9df,#c9d8cf); display:flex; align-items:center; justify-content:center; color:var(--text-gray); font-size:34px; }
.founder-quote-label { color: var(--green); font-weight: 700; font-size: 13.5px; letter-spacing: 0.5px; margin-bottom: 8px; }
.founder-quote-label i { margin-right: 4px; font-size: 12px; }
.founder-card p.founder-desc { font-size: 13.5px; color: var(--text-gray); line-height: 1.55; text-align: justify; }

/* Founder / Co-Founder / Title Sponsor / Co-Sponsor — four equal cards */
.people-row { display: grid; grid-template-columns: repeat(4, 1fr); align-items: stretch; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--border-gray); }
.person-col { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 76px; border-left: 1px solid var(--border-gray); padding: 6px 20px; box-sizing: border-box; width: 100%; }
.person-col:first-child { border-left: none; }
.person-photo { width: 64px; height: 64px; min-width: 64px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: linear-gradient(135deg,#dfe9df,#c9d8cf); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 22px; }
.person-info { min-width: 0; }
.person-label { font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 4px; }
.person-name { font-weight: 800; font-size: 14px; color: var(--text-dark); line-height: 1.3; }

.combined-section{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:50px;
}

/* .combined-section{
    display:grid;
    grid-template-columns:42% 38% 20%;
    gap:24px;
    align-items:center;
} */

.combined-col{
    width: 100%;
    min-width: 0;
}

.race-col{
     flex: 1; 
    /* width:100%; */
}

.runners-col{
    width:fit-content;
    max-width:520px;
    justify-self:start;
}

.map-col{
    flex:0 0 260px;
    display:flex;
    justify-content:flex-end; 
}

.race-cats-stacked { display: flex; flex-direction: row; gap: 18px; }
.race-cats-stacked .race-card { padding: 20px 18px; min-width: auto; width: 100%; gap: 12px; }
.race-cats-stacked .race-icon { width: 46px; height: 46px; font-size: 18px; }
.race-cats-stacked .km { font-size: 19px; }
.race-cats-stacked .run-type { font-size: 13.5px; }
.race-cats-stacked .age { font-size: 11.5px; }
.runners-col h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.runners-col > p { font-size: 14.5px; color: var(--text-gray); line-height: 1.6; margin-bottom: 30px; max-width: 420px; text-align: justify; }
.runners-stats {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 420px;
}
.runners-stats .stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.runners-stats i { color: var(--green); font-size: 20px; }
.runners-stats .num { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--navy); display: block; }
.runners-stats .lbl { font-size: 12px; color: var(--text-gray); }
/* .india-map{
    width:100%;
    max-width:280px;
    height:auto;
    object-fit:contain;
    display:block;
} */
.india-map{
    width:100%;
    max-width:260px;
    height:auto;
    display:block;
}

.movement-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 0; }
.movement-item { flex: 1; display: flex; align-items: flex-start; text-align: left; gap: 14px; padding: 0 20px; border-right: 1px solid var(--border-gray); }
.movement-item:last-child { border-right: none; }
.movement-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0; font-size: 20px; color: #fff; flex-shrink: 0; }
.movement-item h5 { font-size: 13px; font-weight: 800; color: var(--navy); letter-spacing: 0.3px; margin-bottom: 6px; }
.movement-item p { font-size: 12.5px; color: var(--text-gray); line-height: 1.5; }

/* =========================================================
   FAQ PAGE
========================================================= */
.faq-list { background: #fff; border-radius: 12px; box-shadow: 0 6px 30px rgba(0,0,0,0.06); padding: 30px; max-width: 1080px; margin: 40px auto 0; position: relative; z-index: 3; }
.faq-item { border: 1px solid var(--border-gray); border-radius: 8px; margin-bottom: 14px; overflow: hidden; }
.faq-question { display: flex; align-items: center; gap: 16px; padding: 18px 22px; cursor: pointer; background: #fff; transition: background .15s ease; }
.faq-item:not(.open) .faq-question:hover { background: #f8fafc; }
.faq-question .q-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; flex-shrink: 0; }
.faq-question h4 { flex: 1; font-size: 15.5px; font-weight: 700; color: var(--navy); }
.faq-question .chevron { color: var(--text-gray); font-size: 15px; transition: transform .2s ease; }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-item.open .faq-question { background: #eef4fb; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .25s ease; background: #eef4fb; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 22px 20px 74px; font-size: 14px; color: var(--text-gray); line-height: 1.6; margin: 0; }

/* =========================================================
   CONTACT PAGE
========================================================= */
.contact-body { padding: 70px 0; text-align: center; }
.contact-icon { display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; margin: 0 auto 16px; border-radius: 50%; background: #e3ecfb; color: var(--blue-icon); font-size: 20px; }
.contact-icon.green { background: #e5f3ea; color: var(--green); }
.contact-block h4 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.contact-block a.email, .contact-block .email-inline { color: var(--green); font-weight: 700; font-size: 16px; }
.contact-block a.email i { font-size: 14px; margin-right: 4px; }
.contact-divider { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 28px auto; max-width: 300px; }
.contact-divider .line { height: 2px; flex: 1; }
.contact-divider .line.orange { background: var(--orange); }
.contact-divider .line.green { background: var(--green); }
.contact-divider .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--navy); }
.contact-block p.query-text { font-size: 15px; color: var(--text-dark); }

/* =========================================================
   SPONSORS PAGE (placeholder — content to be added later)
========================================================= */
.sponsors-empty { padding: 90px 0; text-align: center; }
.sponsors-empty-box { max-width: 640px; margin: 0 auto; padding: 60px 40px; border: 2px dashed var(--border-gray); border-radius: 14px; transition: border-color .25s ease; }
.sponsors-empty-box:hover { border-color: var(--orange); }
.sponsors-empty-box i { font-size: 42px; color: var(--orange); margin-bottom: 20px; display: block; }
.sponsors-empty-box h3 { font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.sponsors-empty-box p { font-size: 15px; color: var(--text-gray); line-height: 1.6; }

/* =========================================================
   PRIZES PAGE
========================================================= */
.prizes-hero { padding: 50px 0 20px; }
.prizes-hero-inner { max-width: 1680px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; gap: 40px; }
.prizes-hero-text { flex: 0 0 420px; }
.km-toggle { display: flex; gap: 14px; margin-bottom: 30px; }
.km-pill { font-family: var(--font-display); font-weight: 700; font-size: 15px; padding: 12px 30px; border-radius: 30px; border: 2px solid var(--navy); background: #fff; color: var(--navy); cursor: pointer; transition: background .2s ease, color .2s ease; }
.km-pill i { margin-right: 6px; }
.km-pill.active { background: var(--navy); color: #fff; }
.prizes-hero-text h2 { font-family: var(--font-display); font-weight: 800; font-size: 44px; color: var(--navy); line-height: 1.1; letter-spacing: 0.5px; }
.prizes-heading-divider { width: 60px; height: 3px; background: var(--orange); margin: 18px 0 22px; }
.prizes-subtext { font-size: 16px; color: var(--text-gray); line-height: 1.6; }
.prizes-hero-media { flex: 1; position: relative; min-width: 320px; }
.prizes-hero-img { width: 100%; height: 300px; border-radius: 16px; background: linear-gradient(120deg,#0d1f47,#1f6d3f); position: relative; }
.prizes-info-card { position: relative; margin: -50px auto 0; width: 92%; max-width: 100%; background: #fff; border-radius: 12px; box-shadow: 0 10px 34px rgba(0,0,0,0.12); padding: 22px 30px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; box-sizing: border-box; transition: box-shadow .25s ease; }
.prizes-info-card:hover { box-shadow: 0 14px 40px rgba(0,0,0,0.16); }
.prizes-info-item { display: flex; align-items: center; gap: 12px; }
.prizes-info-item i { font-size: 22px; color: var(--navy); }
.pi-label { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--text-gray); margin-bottom: 2px; }
.pi-value { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--navy); }

.prize-categories { display: flex; gap: 30px; align-items: flex-start; flex-wrap: wrap; justify-content: center; }
.prize-cat-col { flex: 1; min-width: 300px; transition: opacity .25s ease; }
.prize-cat-col.kids-col { flex: 0 0 340px; }
.prize-cat-col.money-col { flex: 0 1 520px; max-width: 520px; }
.prize-cat-col.km-hidden { display: none; }
.prize-cat-heading { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.prize-cat-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; }
.prize-cat-icon.pink { background: #fbe3ec; color: var(--pink-icon); }
.prize-cat-icon.blue { background: #e3ecfb; color: var(--blue-icon); }
.prize-cat-icon.green { background: #e5f3ea; color: var(--green); }
.prize-cat-heading h4 { font-size: 17px; font-weight: 800; letter-spacing: 0.3px; }
.pink-text { color: var(--pink-icon); }
.blue-text { color: var(--blue-icon); }
.green-text { color: var(--green); }
.prize-table-card { background: #fff; border-radius: 10px; box-shadow: 0 4px 18px rgba(0,0,0,0.06); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.prize-table-card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,0,0,0.1); }
.prize-table { width: 100%; border-collapse: collapse; }
.prize-table thead th { background: var(--navy); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.3px; text-align: left; padding: 14px 16px; white-space: nowrap; }
.prize-table thead th i { font-size: 12px; margin-right: 4px; }
.prize-table tbody td { padding: 18px 16px; border-bottom: 1px solid var(--border-gray); font-size: 14px; }
.prize-table tbody tr:last-child td { border-bottom: none; }
.age-chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 20px; font-size: 13px; font-weight: 600; }
.age-chip.pink { background: #fbe3ec; color: var(--pink-icon); }
.age-chip.blue { background: #e3ecfb; color: var(--blue-icon); }
.age-chip.green { background: #e5f3ea; color: var(--green); }
.amt { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.amt.gold { color: var(--orange); }
.amt.silver { color: #8b95a1; }
.amt.bronze { color: #c0392b; }
.amt.free { color: var(--green); font-weight: 800; }
.fee-cell-note { display: inline-block; font-family: var(--font-body); font-weight: 500; font-size: 10.5px; color: var(--text-gray); margin-left: 4px; }
.fee-note { font-size: 13px; color: var(--text-gray); line-height: 1.6; margin: 16px 0 0; }
.pi-fee-tag { font-family: var(--font-body); font-weight: 500; font-size: 10px; color: var(--text-gray); margin-left: 4px; }
.medal-gold { color: #f2b632; }
.medal-silver { color: #b9c0c9; }
.medal-bronze { color: #cd7f32; }
.kids-prize { color: var(--text-dark); line-height: 1.5; }
.prize-table-card.prize-table-card--simple { overflow-x: hidden; }
.prize-table.prize-table--simple { min-width: 0; width: 100%; table-layout: fixed; }
.prize-table.prize-table--simple thead th:first-child,
.prize-table.prize-table--simple tbody td:first-child { width: 34%; font-family: var(--font-display); font-weight: 700; color: var(--navy); }
.kids-prize i { color: var(--green); margin-left: 6px; }

.prizes-quote-banner { background-color: var(--navy-dark); background: linear-gradient(100deg, rgba(10,24,54,0.95) 0%, rgba(10,24,54,0.75) 55%, rgba(20,50,35,0.85) 100%); border-radius: 14px; padding: 34px 44px; position: relative; overflow: hidden; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.prizes-quote-banner .quote-mark { position: relative; z-index: 1; color: var(--orange); font-size: 26px; }
.prizes-quote-banner p { position: relative; z-index: 1; color: #fff; font-style: italic; font-size: 19px; flex: 1; min-width: 260px; margin: 0; }
.prizes-quote-banner .quote-author { position: relative; z-index: 1; color: var(--orange); font-weight: 700; font-size: 15px; white-space: nowrap; }

/* =========================================================
   REGISTRATION PAGE
========================================================= */
.register-section { min-height: calc(100vh - 98px); display: flex; }
.register-inner { display: flex; width: 100%; }
.register-form-panel { flex: 0 0 46%; max-width: 560px; display: flex; align-items: center; justify-content: center; padding: 50px 40px; background: #fff; }
.register-image-panel { flex: 1; position: relative; background: linear-gradient(160deg,#0d1f47 0%, #1f6d3f 100%); overflow: hidden; }
.register-image-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.08), transparent 40%),
    linear-gradient(0deg, rgba(10,24,54,0.55), rgba(10,24,54,0.15));
}
/* Professional badge overlay (replaces the old oversized emoji) */
.register-image-badge {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10,24,54,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 16px 22px;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.register-image-badge .badge-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.register-image-badge .badge-title { font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: 0.3px; }
.register-image-badge .badge-sub { font-size: 12.5px; color: #d9e5db; margin-top: 2px; }

.register-card { width: 100%; max-width: 460px; }
.register-card h2 { font-size: 26px; font-weight: 800; color: var(--navy); text-align: center; letter-spacing: 0.5px; }
.register-card h2 .step-icon { color: var(--orange); font-size: 20px; margin-right: 6px; }
.register-card .form-divider { width: 46px; height: 3px; background: var(--orange); margin: 12px auto 30px; }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px);} to { opacity:1; transform:translateY(0);} }

/* Step badge — "STEP 1 OF 2" pill */
.step-badge {
  display: inline-block; background: var(--green-dark); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 11.5px;
  letter-spacing: 0.5px; padding: 7px 16px; border-radius: 30px; margin-bottom: 22px;
}

/* Stepper — "Personal Details ---- Additional Details" */
.register-stepper { display: flex; align-items: center; margin-bottom: 30px; }
.stepper-item { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.stepper-label { font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--text-gray); white-space: nowrap; }
.stepper-item.active .stepper-label { color: var(--green-dark); }
.stepper-item.completed .stepper-label { color: var(--navy); }
.stepper-check {
  width: 18px; height: 18px; border-radius: 50%; background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0;
}
.stepper-track { flex: 1; height: 3px; background: var(--border-gray); border-radius: 3px; margin: 0 14px; position: relative; }
.stepper-track-fill { height: 100%; width: 46%; background: var(--green-dark); border-radius: 3px; position: relative; }
.stepper-track-fill.full { width: 100%; }
.stepper-track-fill::after {
  content: ''; position: absolute; top: 50%; right: -5px; transform: translateY(-50%);
  width: 11px; height: 11px; border-radius: 50%; background: var(--green-dark); border: 2px solid #fff;
}

/* Form headings */
.form-title { font-size: 26px; font-weight: 800; color: var(--navy); letter-spacing: 0.3px; text-align: left; }
.form-title-underline { width: 46px; height: 3px; background: var(--orange); margin: 10px 0 18px; }
.form-subtitle { font-size: 14px; color: var(--text-gray); margin-bottom: 28px; line-height: 1.5; }

.required-star { color: #fe5410; font-size: 12px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: 12.5px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px; }
.form-group label i { color: var(--orange); font-size: 11px; margin-right: 3px; }
.input-wrap { position: relative; display: flex; align-items: center; }
.input-wrap i { position: absolute; left: 14px; color: var(--text-gray); font-size: 14px; }
.input-wrap input, .input-wrap select {
  width: 100%;
  padding: 13px 14px 13px 40px;
  border: 1.5px solid var(--border-gray);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: #fff;
  appearance: none;
}
.input-wrap input::placeholder { color: #9aa3ad; }
.input-wrap select { padding-right: 30px; }
.input-wrap input:focus, .input-wrap select:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(31,109,63,0.12); }
.input-wrap.has-error input, .input-wrap.has-error select { border-color: #d9455f; }
.field-error { font-size: 12px; color: #d9455f; min-height: 16px; margin-top: -2px; }
.field-hint { font-size: 12px; color: var(--green-dark); margin-top: -2px; }

.btn-continue {
  width: 100%; background: var(--green-dark); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 15px; letter-spacing: 0.3px; padding: 15px; border: none;
  border-radius: 8px; display: flex; align-items: center; justify-content: center; gap: 10px;
  cursor: pointer; margin-top: 6px; transition: background .2s ease, opacity .2s ease;
}
.btn-continue:hover { background: var(--green); }
.btn-continue:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-google {
  width: 100%; background: var(--navy); color: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 15px; padding: 15px; border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px; cursor: pointer;
  margin-top: 10px; transition: background .2s ease, opacity .2s ease;
}
.btn-google:hover { background: #132a5c; }
.btn-google:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-google .g-badge { background:#fff; color:#4285F4; width:20px; height:20px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:11px; font-weight:800; font-family: var(--font-display); }

.step-label { font-size: 12.5px; font-weight: 700; color: var(--navy); letter-spacing: 0.3px; margin-bottom: 10px; display:block; }
.step-label i { color: var(--orange); font-size: 11px; margin-right: 3px; }

/* Section label — "YOUR CATEGORY" / "Gender" */
.section-label {
  display: block; font-family: var(--font-display); font-size: 12px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.6px; text-transform: uppercase; margin-bottom: 12px;
}

/* Category summary box */
.category-box {
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding: 16px 18px; border: 1.5px solid var(--green); border-radius: 10px;
  background: #f5faf6; margin-bottom: 8px;
}
.category-icon {
  width: 42px; height: 42px; border-radius: 50%; background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0;
}
.category-info { flex: 1; }
.category-name { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--navy); }
.category-age { font-size: 12.5px; color: var(--text-gray); margin-top: 2px; }
.category-check {
  width: 26px; height: 26px; border-radius: 50%; background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0;
}

/* Category / gender option boxes */
.option-box {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 14px 16px; border: 1.5px solid var(--border-gray); border-radius: 8px;
  margin-bottom: 14px; cursor: pointer; background: #fff; font-family: var(--font-display);
  font-weight: 700; font-size: 14.5px; color: var(--text-dark); transition: border-color .15s ease, background .15s ease;
}
.option-box .radio-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border-gray); flex-shrink: 0; position: relative; }
.option-box .radio-dot.filled::after { content:''; position:absolute; inset:3px; border-radius:50%; background: currentColor; }
.option-box i.opt-icon { font-size: 16px; }

.option-box.locked { cursor: default; }
.option-box.green-line { border-color: var(--green); color: var(--green); }
.option-box.green-line .radio-dot { border-color: var(--green); color: var(--green); }
.option-box.orange-line { border-color: var(--orange-dark); color: var(--orange-dark); }
.option-box.orange-line .radio-dot { border-color: var(--orange-dark); color: var(--orange-dark); }
.option-box.blue-line { border-color: var(--blue-icon); color: var(--blue-icon); }
.option-box.blue-line .radio-dot { border-color: var(--blue-icon); color: var(--blue-icon); }
.option-box.pink-line { border-color: var(--pink-icon); color: var(--pink-icon); }
.option-box.pink-line .radio-dot { border-color: var(--pink-icon); color: var(--pink-icon); }
.option-box.purple-line { border-color: var(--purple-icon); color: var(--purple-icon); }
.option-box.purple-line .radio-dot { border-color: var(--purple-icon); color: var(--purple-icon); }
.option-box.selectable:hover { background: #f8fafc; }
.option-box.selectable.selected-gender { background: currentColor; }
.option-box.selectable.selected-gender { color: #fff; }
.option-box.selectable.selected-gender.blue-line { background: var(--blue-icon); border-color: var(--blue-icon); }
.option-box.selectable.selected-gender.pink-line { background: var(--pink-icon); border-color: var(--pink-icon); }
.option-box.selectable.selected-gender.purple-line { background: var(--purple-icon); border-color: var(--purple-icon); }
.option-box.selectable.selected-gender .radio-dot { border-color: #fff; color: #fff; }
.option-box.selectable.selected-gender .radio-dot.filled::after { background: #fff; }

.gender-row { display: flex; gap: 12px; margin-bottom: 6px; }
.gender-row .option-box { flex-direction: row; justify-content: center; gap: 8px; font-size: 13.5px; padding: 15px 10px; margin-bottom: 0; }

.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-gray); margin-bottom: 20px; cursor: pointer; }
.back-link:hover { color: var(--navy); }

/* Emergency contact fitness confirmation checkbox */
.confirm-checkbox {
  display: flex; align-items: flex-start; gap: 12px; width: 100%;
  background: #fdf7ec; border: 1.5px solid #f4dfa8; border-radius: 10px;
  padding: 16px 18px; margin: 22px 0 6px; cursor: pointer;
}
.confirm-checkbox input[type="checkbox"] { display: none; }
.confirm-checkmark {
  width: 20px; height: 20px; border-radius: 5px; background: #fff; border: 1.5px solid var(--text-gray); color: transparent;
  display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; margin-top: 1px;
}
.confirm-checkbox input[type="checkbox"]:checked + .confirm-checkmark {
  background: var(--green-dark); border-color: var(--green-dark); color: #fff;
}
/* Ensure the tick icon always inherits the checkmark's own color (transparent → white),
   even when the checkbox is nested inside a .form-group (which otherwise forces icon color to orange). */
.confirm-checkbox .confirm-checkmark i { color: inherit; }
.confirm-text { font-size: 13.5px; color: var(--text-dark); line-height: 1.5; }

/* Info box — "Why do we need this information?" */
.info-box {
  display: flex; align-items: flex-start; gap: 16px; background: #f6f9f6;
  border-radius: 12px; padding: 22px 24px; margin-top: 26px;
}
.info-box-icon {
  width: 30px; height: 30px; border-radius: 50%; background: var(--green-dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; margin-top: 2px;
}
.info-box-content { flex: 1; }
.info-box-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 10px; }
.info-box-list { list-style: none; margin: 0; padding: 0; }
.info-box-list li { font-size: 13.5px; color: var(--text-gray); line-height: 1.9; }

/* T-Shirt need toggle — reuses .confirm-checkbox visual language, fitted to a form-group column */
.tshirt-toggle-checkbox { margin: 0 0 4px; padding: 12px 14px; }
.tshirt-toggle-checkbox .confirm-text i { color: var(--orange); margin-right: 4px; }
.tshirt-description { margin: 6px 0 0; }
.tshirt-description-title { font-family: var(--font-display); font-weight: 700; font-size: 12.5px; color: var(--navy); margin-bottom: 3px; }
.tshirt-description-text { font-size: 12px; color: var(--text-gray); line-height: 1.5; margin: 0; }

/* Payment summary box — mirrors .category-box styling */
.payment-summary-box {
  width: 100%; border: 1.5px solid var(--green); border-radius: 10px;
  background: #f5faf6; padding: 16px 18px; margin-bottom: 20px;
}
.payment-summary-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--text-dark); padding: 6px 0;
}
.payment-summary-row span:last-child { font-family: var(--font-display); font-weight: 600; color: var(--navy); }
.payment-summary-total {
  border-top: 1.5px dashed var(--border-gray); margin-top: 4px; padding-top: 12px;
}
.payment-summary-total span { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 16px; }

.reg-success { text-align: center; padding: 20px 0; }
.reg-success i { font-size: 54px; color: var(--green); margin-bottom: 18px; }
.reg-success h3 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.reg-success p { font-size: 14px; color: var(--text-gray); line-height: 1.6; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1200px) {
  .movement-grid { flex-wrap: wrap; }
  .movement-item { flex: 1 1 30%; border-right: none; margin-bottom: 24px; }
  .people-row { grid-template-columns: 1fr 1fr; row-gap: 22px; }
  .person-col:nth-child(3) { border-left: none; }
  .combined-section { flex-wrap: wrap; }
  .race-col { flex: 1 1 100%; }
  .map-col { flex: 1 1 100%; justify-content: center; margin-left: 0; }
  .register-image-panel { display: none; }
  .register-form-panel { flex: 1 1 100%; max-width: 100%; }
}

/* Nav collapses to the hamburger menu at 1200px. The full logo + 6 links +
   CTA button need more room than was available between 992px and 1200px,
   which was causing the header itself to overflow horizontally there. */
@media (max-width: 1200px) {
  .main-nav {
    position: fixed; top: 0; right: -320px; height: 100vh; width: 300px; background: #fff;
    flex-direction: column; align-items: flex-start; padding: 90px 30px; box-shadow: -6px 0 30px rgba(0,0,0,0.15);
    transition: right .3s ease; z-index: 999; gap: 26px;
  }
  .main-nav.open { right: 0; }
  .nav-toggle { display: flex; }
  .header-register-btn { display: none; }
  .mobile-register-btn { display: inline-flex; margin-top: 10px; }
}

/* Just above the 1200px breakpoint, the full nav (6 links + register button)
   was landing flush against the wordmark with zero gap. Tighten the nav's
   own link spacing in this band only, so everything keeps a visible gap. */
@media (min-width: 1201px) and (max-width: 1360px) {
  .main-nav { gap: 20px; }
  .header-inner { gap: 12px; }
}

@media (max-width: 992px) {
  .about-hero .container-custom { flex-wrap: wrap; }
  .about-hero .inner-hero-content { width: 100%; max-width: 100%; }
  .about-hero .quote-box { width: 100%; max-width: 420px; margin: 20px auto 0; }
  .home-hero h2, .inner-hero h2, .about-hero h2 { font-size: 34px; }
  .countdown-box { display: none; }
  .people-row { grid-template-columns: 1fr; row-gap: 4px; }
  .founder-intro { flex-direction: column; text-align: left; }
  .person-col { border-left: none; justify-content: flex-start; text-align: left; min-height: auto; padding: 14px 0; }
  .person-col:not(:last-child) { border-bottom: 1px solid var(--border-gray); padding-bottom: 18px; }
  .movement-item { flex: 1 1 45%; }
}

@media (max-width: 768px) {
  .container-custom, .header-inner, .footer-inner, .cta-bar-inner, .info-strip-inner, .home-hero-content, .inner-hero-content { padding: 0 20px; }
  .footer-copy-bar { padding: 18px 20px; }
  .home-hero h2 { font-size: 28px; }
  .inner-hero h2 { font-size: 30px; }
  .about-hero h2 { font-size: 28px; }
  .section { padding: 50px 0; }
  .section-heading { margin-bottom: 28px; }
  .founder-card { padding: 24px 22px; }
  .contact-body { padding: 50px 0; }
  .why-section { flex-direction: column; }
  .race-cats { flex-direction: column; align-items: center; }
  .movement-item { flex: 1 1 100%; border-right: none !important; padding-bottom: 20px; border-bottom: 1px solid var(--border-gray); }
  .movement-item:last-child { border-bottom: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
    align-items: center;
    gap: 18px 0;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 0;
  }
  .footer-nav a { justify-content: center; width: 100%; }
  .footer-meta { flex-direction: column; }
  .footer-divider { display: none; }
  .footer-copy { text-align: center; }
  .quote-box { display: none; }
  .faq-answer p { padding-left: 22px; }
  .form-row { grid-template-columns: 1fr; }
  .register-form-panel { padding: 40px 24px; }
}

@media (max-width: 360px) {
  .register-form-panel { padding: 32px 16px; }
  .stepper-label { font-size: 11.5px; }
  .stepper-track { margin: 0 8px; }
  .gender-row .option-box { font-size: 12.5px; padding: 13px 8px; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); max-width: 280px; }
}

@media (max-width: 576px) {
  .prize-cat-col { min-width: 0; width: 100%; }
  .runners-col { width: 100%; max-width: 100%; }
  .runners-stats { flex-wrap: wrap; justify-content: flex-start; row-gap: 16px; }
  .faq-list { margin: 24px 16px 0; padding: 18px; }
  .race-cats-stacked { flex-direction: column; }
}

@media (max-width: 480px) {
  .info-strip-inner { flex-direction: column; }
  .cta-bar-inner { flex-direction: column; text-align: center; }
  .km-toggle { gap: 10px; }
  .km-pill { padding: 10px 20px; font-size: 13px; }
  .prize-cat-col { min-width: 0; width: 100%; }
  .gender-row { flex-direction: column; }
  .about-hero h2 { font-size: 24px; }
  .founder-card { padding: 20px 18px; }
  .faq-list { padding: 16px; }
}

/* Prizes page responsive additions */
@media (max-width: 1200px) {
  .prizes-hero-inner { flex-direction: column; align-items: stretch; }
  .prizes-hero-text { flex: 1 1 auto; }
  .prizes-info-card { width: 100%; }
}
@media (max-width: 992px) {
  .prize-categories { flex-direction: column; }
  .prize-cat-col.kids-col { flex: 1 1 auto; }
  .prize-cat-col.money-col { flex: 1 1 auto; max-width: 100%; }
}
@media (max-width: 768px) {
  .prizes-hero-text h2 { font-size: 32px; }
  .prizes-info-card { flex-direction: column; align-items: flex-start; margin-top: -30px; }
  .prizes-hero-img { height: 220px; }
  .prize-table thead th, .prize-table tbody td { padding: 12px 10px; font-size: 12.5px; }
  .prizes-quote-banner { flex-direction: column; align-items: flex-start; text-align: left; }
  .prizes-hero-inner { padding: 0 20px; }
  .prizes-hero-media { min-width: 0; }
}

/* Narrow-phone overflow fixes (320px–425px) */
@media (max-width: 480px) {
  .race-cats .race-card { min-width: 100%; }
  .race-card { padding: 24px 28px; }
  .why-images { min-width: 0; }
  .why-list { min-width: 0 !important; }
  .prizes-quote-banner { padding: 24px 20px; }
  .prizes-quote-banner p { min-width: 0; font-size: 16px; }
  .prize-table-card { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .prize-table { min-width: 400px; }
  .prize-table thead th, .prize-table tbody td { padding: 10px 8px; font-size: 11.5px; }
  .prizes-hero-text h2 { font-size: 25px; }
}

/* Header branding — keep logo, wordmark, tagline and decorative lines
   reading as one balanced unit, with a guaranteed gap to the hamburger
   button, across every phone/tablet width down to 320px. Replaces the
   old max-width:480 and max-width:400 rules, which left the wordmark
   touching the hamburger button in the 401-480px and ~500-520px bands. */
@media (max-width: 600px) {
  .header-inner { gap: 10px; }
  .brand { gap: 10px; min-width: 0; }
  .brand-text { min-width: 0; }
  .brand-logo { width: 56px; height: 56px; }
  .brand-text h1 { font-size: 17px; letter-spacing: 0.3px; }
  .brand-tagline { font-size: 11px; gap: 6px; margin-top: 3px; }
  .brand-tagline::before, .brand-tagline::after { width: 16px; }
  .nav-toggle { width: 40px; height: 40px; font-size: 22px; }
}

@media (max-width: 360px) {
  .brand-logo { width: 48px; height: 48px; }
  .brand-text h1 { font-size: 14.5px; }
  .brand-tagline { font-size: 10px; gap: 5px; }
  .brand-tagline::before, .brand-tagline::after { width: 13px; }
}

/* =========================================================
   WATCH VIDEO MODAL
========================================================= */
.video-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 24, 54, 0.88);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-modal-overlay.open {
  display: flex;
}
.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}
.video-modal-frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-modal-frame-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease;
}
.video-modal-close:hover {
  background: rgba(255,255,255,0.2);
}
@media (max-width: 600px) {
  .video-modal-close { top: -40px; width: 32px; height: 32px; font-size: 14px; }
}
