  :root {
    --sun: #F5C842;
    --sun-light: #FEF3C0;
    --sun-dark: #D4A017;
    --sky: #2A6FA8;
    --sky-light: #E0EEF8;
    --sky-mid: #5B9EC9;
    --sky-dark: #1A4F7A;
    --red: #D42B1E;
    --red-light: #FDE8E6;
    --white: #FFFDF5;
    --ink: #111820;
    --muted: #6B7E8F;
    --sand: #F7F0E0;
    --border: rgba(42,111,168,0.12);
    --shadow: 0 4px 24px rgba(28,43,58,0.08);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--white);
    color: var(--ink);
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2.5rem;
    background: rgba(255,253,245,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--ink);
  }

  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--ink);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .nav-logo .amp { color: var(--sun-dark); font-style: italic; }

  nav ul { list-style: none; display: flex; gap: 2rem; }

  nav ul a {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  nav ul a:hover { color: var(--sky); }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 2.5rem 4rem;
    gap: 3rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--sky-light) 0%, var(--white) 55%, var(--sun-light) 100%);
  }

  /* decorative wavy background */
  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -120px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,200,66,0.25) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -80px;
    width: 380px; height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42,111,168,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-text { position: relative; z-index: 1; }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-light);
    border: 1.5px solid var(--red);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--ink);
    margin-bottom: 0.5rem;
  }

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

  .hero-title .big-go {
    display: block;
    font-size: clamp(4.5rem, 10vw, 8rem);
    line-height: 0.9;
    color: var(--ink);
    letter-spacing: -0.02em;
  }

  .hero-desc {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 400px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
  }

  .hero-stats {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-stat {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: var(--shadow);
  }

  .hero-stat-icon { font-size: 1.4rem; }

  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--sky-dark);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* PHOTO SIDE */
  .hero-photo {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
  }

  .photo-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
  }

  .photo-frame img {
    width: 100%;
    border-radius: 24px 24px 80px 24px;
    display: block;
    box-shadow: 8px 12px 40px rgba(28,43,58,0.18);
    border: 4px solid var(--white);
  }



  /* ─── COUNTDOWN ─── */
  .countdown-bar {
    background: var(--ink);
    padding: 1.8rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .countdown-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,253,245,0.6);
  }

  .countdown-units {
    display: flex;
    gap: 0.8rem;
    align-items: center;
  }

  .cd-unit { text-align: center; }

  .cd-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--sun);
    line-height: 1;
    min-width: 2.5ch;
  }

  .cd-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,253,245,0.5);
    margin-top: 0.2rem;
  }

  .cd-sep {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: rgba(245,200,66,0.4);
    font-weight: 900;
    padding-bottom: 0.5rem;
  }

  .race-date-pill {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border: 1.5px solid var(--sun);
    color: var(--sun);
    border-radius: 100px;
  }

  /* ─── SECTIONS ─── */
  section { padding: 6rem 2.5rem; }

  .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sky);
    margin-bottom: 1rem;
  }

  .section-eyebrow .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--sky-dark);
    margin-bottom: 1rem;
  }

  .section-title em { font-style: italic; color: var(--red); }

  /* ─── MISSION / ABOUT ─── */
  .mission-section {
    background: var(--sand);
  }

  .mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }

  .mission-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1.5px solid var(--border);
    position: relative;
    overflow: hidden;
  }

  .mission-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--red), var(--sun));
  }

  .mission-person-num {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--sky-light);
    position: absolute;
    top: 0.5rem; right: 1rem;
    line-height: 1;
    pointer-events: none;
  }

  .mission-card-header {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.2rem;
  }

  .mission-portrait {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 25%;
    border: 3px solid var(--sun);
    box-shadow: 0 4px 12px rgba(26, 79, 122, 0.15);
    flex-shrink: 0;
  }

  .mission-card-header .mission-name {
    margin-bottom: 0.1rem;
  }

  .mission-card-header .mission-meta {
    margin-bottom: 0;
  }

  .mission-tag {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--sky);
    line-height: 1.35;
    margin: 0.15rem 0 0.35rem;
  }

  .mission-tag em {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 700;
    color: var(--red);
  }

  .journey-intro {
    max-width: 720px;
    margin: 1.5rem 0 3rem;
    padding: 2rem 2.2rem;
    background: var(--sand);
    border-left: 4px solid var(--sun);
    border-radius: 8px;
  }

  .journey-label {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--sky-dark);
    margin-bottom: 0.6rem;
  }

  .journey-intro p {
    font-size: 1rem;
    color: var(--ink);
    line-height: 1.75;
    margin: 0;
  }

  .mission-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--sky-dark);
    margin-bottom: 0.2rem;
  }

  .mission-meta {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky-mid);
    margin-bottom: 1.2rem;
  }

  .mission-bio {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
  }

  .mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .m-stat {
    background: var(--sky-light);
    border-radius: 10px;
    padding: 0.7rem 0.9rem;
  }

  .m-stat-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sky-dark);
  }

  .m-stat-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.1rem;
  }

  .mission-why {
    grid-column: 1 / -1;
  }

  .mission-why-inner {
    background: linear-gradient(135deg, var(--sky-dark), var(--sky));
    border-radius: 20px;
    padding: 2.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
  }

  .mission-why-inner::before {
    content: '113km';
    position: absolute;
    right: -10px; bottom: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    pointer-events: none;
  }

  .mission-why-inner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    font-style: italic;
    color: var(--sun);
    margin-bottom: 0.8rem;
  }

  .mission-why-inner p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255,253,245,0.85);
    max-width: 600px;
  }

  /* ─── RACE ─── */
  .race-section { background: var(--white); }

  .race-legs {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .leg-card {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .leg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(28,43,58,0.12);
  }

  .leg-card.swim { background: linear-gradient(145deg, #dff0fb, #b8daef); border-color: #5B9EC9; }
  .leg-card.bike { background: linear-gradient(145deg, #fff3c4, #fde580); border-color: #D4A017; }
  .leg-card.run  { background: linear-gradient(145deg, #d6eddc, #a8d9b0); border-color: #3a8a52; }

  .leg-sport-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  }

  .leg-label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sky-dark);
    margin-bottom: 0.5rem;
    opacity: 0.7;
  }

  .leg-distance {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: var(--sky-dark);
  }

  .leg-unit {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky-dark);
    opacity: 0.6;
    margin-bottom: 1rem;
  }

  .leg-desc {
    font-size: 0.88rem;
    color: var(--sky-dark);
    line-height: 1.7;
    opacity: 0.75;
  }

  .leg-total {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--ink);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    border: none;
  }

  .leg-total .leg-total-label { color: rgba(255,253,245,0.7); }
  .leg-total .leg-total-num { color: var(--sun); }

  .leg-total-icon { font-size: 2.5rem; }

  .leg-total-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--sky-dark);
    line-height: 1;
  }

  .leg-total-label {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.5;
  }

  /* ─── SPONSOR ─── */
  .sponsor-section { background: var(--white); }

  .sponsor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }

  .sponsor-tier {
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--border);
    position: relative;
    background: var(--white);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .sponsor-tier:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(28,43,58,0.1);
  }

  .sponsor-tier.featured {
    background: linear-gradient(160deg, var(--sky-light), #d4eaf8);
    border-color: var(--sky-mid);
  }

  .sponsor-tier.featured::after {
    content: '⭐ Most popular';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--sky);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
  }

  .tier-sport-icon { font-size: 2.2rem; margin-bottom: 0.8rem; display: block; }

  .tier-name {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sky-mid);
    margin-bottom: 0.5rem;
  }

  .tier-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--sky-dark);
    line-height: 1;
    margin-bottom: 0.2rem;
  }

  .tier-unit {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
  }

  .tier-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
  }

  .tier-perks li {
    font-size: 0.88rem;
    color: var(--muted);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .tier-perks li::before {
    content: '✓';
    color: var(--sky);
    font-weight: 900;
    flex-shrink: 0;
  }

  .cta-btn {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 1.5rem;
    border: 2px solid var(--sky);
    color: var(--sky-dark);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    background: transparent;
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }

  .cta-btn:hover { background: var(--sky); color: var(--white); }

  .cta-btn.primary {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
  }

  .cta-btn.primary:hover { background: #b52318; border-color: #b52318; }

  /* FUNDRAISER */
  .fundraiser-total {
    margin-top: 3rem;
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: var(--sand);
  }

  .ft-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
  }

  .ft-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--sky-dark);
    line-height: 1;
  }

  .ft-bar-wrap { flex: 1; min-width: 200px; }

  .ft-bar-track {
    height: 8px;
    background: var(--sky-light);
    border-radius: 100px;
    position: relative;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .ft-bar-fill {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    background: linear-gradient(90deg, var(--sky-mid), var(--sky-dark));
    border-radius: 100px;
    width: 0%;
    transition: width 2s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .ft-goal {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
  }

  /* ─── BANK ─── */
  .bank-section { background: var(--sky-light); }

  .bank-card {
    border: 2px solid var(--sky-mid);
    border-radius: 20px;
    padding: 3rem;
    max-width: 560px;
    margin: 3rem auto 0;
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .bank-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

  .bank-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--sky-dark);
    margin-bottom: 0.5rem;
  }

  .bank-sub {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 2rem;
  }

  .bank-account-name {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
  }

  .bank-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--sky-dark);
    background: var(--sky-light);
    border: 1.5px solid var(--sky-mid);
    border-radius: 10px;
    padding: 1rem 1.5rem;
    margin-bottom: 0.8rem;
    display: block;
  }

  .bank-ref {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
  }

  .bank-note {
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    line-height: 1.7;
  }

  /* ─── SOCIAL FEED ─── */
  .feed-section { background: var(--sand); }

  .feed-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .feed-connect-note {
    font-size: 0.8rem;
    color: var(--muted);
    font-style: italic;
    max-width: 380px;
    line-height: 1.5;
  }

  .feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .feed-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .feed-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(28,43,58,0.12);
  }

  .feed-card-header {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 1.2rem 0.8rem;
  }

  .feed-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .feed-avatar.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
  .feed-avatar.fb { background: #1877F2; }

  .feed-author { font-size: 0.8rem; font-weight: 700; color: var(--ink); }
  .feed-date { font-size: 0.68rem; color: var(--muted); }

  .feed-card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    background: var(--sky-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
  }

  .feed-card-body { padding: 1rem 1.2rem 1.2rem; }

  .feed-card-text {
    font-size: 0.88rem;
    color: var(--ink);
    line-height: 1.65;
    margin-bottom: 0.8rem;
  }

  .feed-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 700;
  }

  .feed-card-tags {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
  }

  .feed-tag {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--sky-light);
    color: var(--sky-dark);
    border-radius: 100px;
    padding: 0.2rem 0.6rem;
  }

  .feed-placeholder {
    background: var(--white);
    border: 2px dashed var(--border);
    border-radius: 18px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--muted);
    grid-column: 1 / -1;
  }

  .feed-placeholder h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    font-style: italic;
    color: var(--sky-mid);
    margin-bottom: 0.5rem;
  }

  .feed-placeholder p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  .feed-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky);
    text-decoration: none;
    border: 2px solid var(--sky);
    border-radius: 10px;
    padding: 0.6rem 1.2rem;
    transition: all 0.2s;
  }

  .feed-cta:hover { background: var(--sky); color: var(--white); }

  /* ─── UPDATES ─── */
  .updates-section { background: var(--white); }

  .updates-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .update-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.8rem 2rem;
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 2rem;
    align-items: start;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
  }

  .update-date {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sky-mid);
    padding-top: 0.15rem;
    line-height: 1.5;
  }

  .update-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sky-dark);
    margin-bottom: 0.4rem;
  }

  .update-body {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
  }

  .update-tag {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--sky-light);
    color: var(--sky-dark);
    border-radius: 100px;
    padding: 0.2rem 0.7rem;
    margin-top: 0.7rem;
    margin-right: 0.3rem;
  }

  /* ─── FOOTER ─── */
  /* ─── SPONSORS WALL ─── */
  .sponsors-section {
    background: var(--sand);
    text-align: center;
    padding: 4rem 2.5rem;
  }

  .sponsors-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .sponsor-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    padding: 0.55rem 1.1rem;
    box-shadow: var(--shadow);
  }

  .sponsor-pill-emoji { font-size: 1rem; }

  .sponsor-pill-name {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--sky-dark);
  }

  .sponsor-pill-km {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    background: var(--sky-light);
    padding: 0.15rem 0.55rem;
    border-radius: 100px;
  }

  .sponsors-empty {
    font-size: 0.9rem;
    color: var(--muted);
    font-style: italic;
    margin-top: 1.5rem;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--ink);
    padding: 2rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: var(--white);
  }

  .footer-logo span { color: var(--sun); font-style: italic; }

  .footer-copy {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,253,245,0.4);
  }

  .footer-links { display: flex; gap: 1.5rem; }

  .footer-links a {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,253,245,0.55);
    text-decoration: none;
    transition: color 0.2s;
  }

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

  /* ─── REVEAL ─── */
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .reveal.visible { opacity: 1; transform: none; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .sponsor-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 6rem; }
    .hero-photo { order: -1; }
    .photo-frame { max-width: 320px; margin: 0 auto; }
    .mission-grid { grid-template-columns: 1fr; }
    .race-legs { grid-template-columns: 1fr; }
    .sponsor-grid { grid-template-columns: 1fr; }
  }

  @media (max-width: 640px) {
    nav { padding: 1rem 1.2rem; }
    nav ul { gap: 1rem; }
    nav ul li:nth-child(n+4) { display: none; }
    section { padding: 4rem 1.2rem; }
    .countdown-bar { flex-direction: column; align-items: flex-start; }
    .update-item { grid-template-columns: 1fr; gap: 0.5rem; }
    .fundraiser-total { flex-direction: column; }
    .progress-row { grid-template-columns: 130px 1fr 55px; }
  }
