:root {
  --navy: #092d4e;
  --blue: #0a91d1;
  --sky: #a9e7ef;
  --aqua: #4ed1c0;
  --orange: #f46d22;
  --yellow: #ffd43b;
  --ink: #082844;
  --paper: #f8fcfb;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }

.hero {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 26%, rgba(255,255,255,.5) 0 12%, transparent 12.3%),
    linear-gradient(125deg, #f9f7e9 0 49%, #b8eced 49% 100%);
}

.nav {
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(8,40,68,.14);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: .02em; text-transform: uppercase; }
.brand img { width: 44px; height: 44px; object-fit: contain; }
.nav-links { display: flex; gap: 28px; align-items: center; font-weight: 800; font-size: .9rem; }
.nav-links a:last-child { background: var(--ink); color: white; padding: 12px 18px; border-radius: 999px; }

.hero-grid {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 86px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 30px;
}
.hero-copy { position: relative; z-index: 2; padding: 72px 0 52px; }
.eyebrow { display: flex; align-items: center; gap: 10px; margin: 0 0 24px; font-size: .78rem; font-weight: 900; letter-spacing: .17em; }
.eyebrow span { width: 34px; height: 4px; border-radius: 9px; background: var(--orange); }
h1 { margin: 0; max-width: 690px; font-size: clamp(4rem, 8.3vw, 7.6rem); line-height: .82; letter-spacing: -.075em; font-weight: 1000; text-transform: uppercase; }
h1 em { color: var(--orange); font-style: normal; text-shadow: 4px 4px 0 var(--navy); }
.hero-lead { max-width: 590px; margin: 30px 0; font-size: clamp(1.05rem, 1.6vw, 1.35rem); line-height: 1.55; font-weight: 650; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border-radius: 15px; font-weight: 900; transition: transform .2s ease, box-shadow .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { background: var(--orange); color: white; box-shadow: 7px 7px 0 var(--navy); }
.button-secondary { border: 2px solid var(--navy); background: rgba(255,255,255,.5); }
.trust-row { display: flex; gap: 18px; margin-top: 42px; flex-wrap: wrap; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.trust-row span { display: flex; gap: 8px; align-items: center; }
.trust-row b { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--yellow); font-size: .7rem; }

.mascot-stage { position: relative; align-self: stretch; min-height: 640px; }
.target-rings { position: absolute; width: 610px; height: 610px; left: 50%; top: 50%; transform: translate(-47%,-50%); border: 3px solid rgba(8,40,68,.13); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.18), 0 0 0 110px rgba(8,40,68,.07); }
.target-rings::before, .target-rings::after { content: ""; position: absolute; background: rgba(8,40,68,.14); }
.target-rings::before { width: 1px; height: 120%; left: 50%; top: -10%; }
.target-rings::after { height: 1px; width: 120%; top: 50%; left: -10%; }
.mascot { position: absolute; z-index: 2; width: min(650px, 108%); max-height: 84vh; object-fit: contain; object-position: center bottom; bottom: 0; left: 50%; transform: translateX(-47%); filter: drop-shadow(0 30px 24px rgba(8,40,68,.2)); }
.orbit { position: absolute; z-index: 3; border-radius: 999px; background: var(--yellow); border: 6px solid white; box-shadow: 0 8px 20px rgba(8,40,68,.12); }
.orbit-one { width: 26px; height: 26px; right: 8%; top: 19%; }
.orbit-two { width: 18px; height: 18px; left: 11%; top: 36%; background: var(--orange); }
.mini-card { position: absolute; z-index: 4; right: 0; bottom: 9%; display: flex; gap: 12px; align-items: center; background: white; padding: 14px 18px; border-radius: 18px; box-shadow: 0 16px 40px rgba(8,40,68,.18); transform: rotate(-2deg); }
.mini-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--yellow); font-size: 1.5rem; }
.mini-card small, .mini-card strong { display: block; }
.mini-card small { margin-bottom: 3px; font-size: .62rem; font-weight: 900; letter-spacing: .12em; }
.mini-card strong { max-width: 220px; font-size: 1rem; line-height: 1.18; }

@media (max-width: 860px) {
  .nav-links a:not(:last-child) { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 60px 0 0; }
  .mascot-stage { min-height: 590px; }
  .mascot { max-height: 610px; }
  .target-rings { width: 480px; height: 480px; }
}

@media (max-width: 520px) {
  .nav { width: min(100% - 24px, 1180px); padding: 13px 0; }
  .brand span { font-size: .72rem; max-width: 150px; }
  .brand img { width: 38px; height: 38px; }
  .nav-links a:last-child { padding: 10px 14px; font-size: .75rem; }
  .hero-grid { width: min(100% - 28px, 1180px); }
  h1 { font-size: clamp(3.2rem, 18vw, 5rem); }
  .hero-lead { margin: 22px 0; }
  .button { width: 100%; }
  .trust-row { margin-top: 28px; display: grid; gap: 8px; }
  .mascot-stage { min-height: 500px; }
  .mascot { width: 125%; }
  .mini-card { right: 0; bottom: 4%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}

.ticker { overflow: hidden; background: var(--navy); color: white; border-top: 7px solid var(--yellow); }
.ticker div { width: 100%; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; row-gap: 10px; padding: 20px 28px; font-size: clamp(.85rem, 1.3vw, 1rem); font-weight: 900; letter-spacing: .13em; text-align: center; }
.ticker span { display: inline-flex; align-items: center; white-space: nowrap; }
.ticker span:not(:last-child)::after { content: "●"; margin: 0 28px; color: var(--orange); font-size: .7rem; letter-spacing: 0; }

@media (max-width: 600px) {
  .ticker { border-top-width: 5px; }
  .ticker div { gap: 9px 18px; padding: 16px 14px; font-size: .75rem; letter-spacing: .08em; line-height: 1.25; }
  .ticker span:not(:last-child)::after { display: none; }
}

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 120px 0; }
.section-heading { margin-bottom: 52px; }
.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.kicker { margin: 0 0 16px; color: var(--orange); font-size: .75rem; font-weight: 1000; letter-spacing: .19em; text-transform: uppercase; }
h2 { margin: 0; font-size: clamp(2.8rem, 6vw, 5.7rem); line-height: .94; letter-spacing: -.055em; font-weight: 1000; text-transform: uppercase; }
.split-heading > p { margin: 0; font-size: 1.1rem; line-height: 1.65; font-weight: 600; }

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { position: relative; min-height: 390px; padding: 28px; border-radius: 30px; overflow: hidden; transition: transform .25s ease; }
.step-card:hover { transform: translateY(-8px) rotate(-.5deg); }
.step-blue { background: var(--navy); color: white; }
.step-yellow { background: var(--yellow); }
.step-orange { background: var(--orange); color: white; }
.step-number { position: absolute; top: 24px; right: 26px; font-size: .85rem; font-weight: 1000; }
.step-icon { display: grid; place-items: center; width: 92px; height: 92px; margin: 44px auto 50px; border-radius: 50%; background: rgba(255,255,255,.18); border: 2px solid currentColor; font-size: 2.4rem; }
.target-icon { position: relative; box-shadow: inset 0 0 0 17px var(--yellow), inset 0 0 0 20px var(--navy), inset 0 0 0 34px var(--yellow); }
.target-icon i { width: 10px; height: 10px; background: var(--orange); border-radius: 50%; }
.step-card h3 { margin: 0 0 14px; font-size: 1.55rem; font-weight: 1000; text-transform: uppercase; }
.step-card p { margin: 0; line-height: 1.55; font-weight: 600; opacity: .92; }

.schedule-bar { margin-top: 18px; display: grid; grid-template-columns: 1fr 1.3fr auto; align-items: center; gap: 20px; padding: 24px 28px; border: 2px solid var(--navy); border-radius: 24px; background: white; box-shadow: 8px 8px 0 var(--aqua); }
.schedule-bar div { padding-right: 18px; border-right: 1px solid rgba(8,40,68,.18); }
.schedule-bar small, .schedule-bar strong { display: block; }
.schedule-bar small { margin-bottom: 6px; color: var(--orange); font-size: .68rem; font-weight: 1000; letter-spacing: .15em; }
.schedule-bar strong { font-size: .95rem; }
.schedule-bar a { display: flex; align-items: center; gap: 14px; padding: 14px 17px; border-radius: 14px; background: var(--navy); color: white; font-size: .82rem; font-weight: 900; }
.schedule-bar a span { color: var(--yellow); font-size: 1.3rem; }

.benefits { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; border-top: 1px solid rgba(8,40,68,.16); }
.benefits-intro { position: sticky; top: 50px; align-self: start; }
.benefits-intro h2 { font-size: clamp(3rem, 5.1vw, 5rem); }
.benefits-intro > p:last-child { margin: 28px 0 0; max-width: 460px; line-height: 1.65; font-size: 1.08rem; font-weight: 600; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.benefit-card { min-height: 290px; display: flex; flex-direction: column; padding: 26px; border: 2px solid var(--navy); border-radius: 26px; box-shadow: 6px 6px 0 var(--navy); }
.benefit-card > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: white; color: var(--navy); border: 2px solid var(--navy); font-size: .75rem; font-weight: 1000; }
.benefit-card h3 { margin: auto 0 12px; font-size: 1.55rem; font-weight: 1000; text-transform: uppercase; }
.benefit-card p { margin: 0; line-height: 1.5; font-weight: 600; }
.benefit-yellow { background: var(--yellow); }
.benefit-aqua { background: var(--aqua); }
.benefit-orange { background: var(--orange); color: white; }
.benefit-blue { background: #78ccec; }

.federation-section { background: #ecf7fa; padding: 110px max(20px, calc((100vw - 1180px) / 2)); border-top: 1px solid rgba(8,40,68,.14); }
.federation-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 46px; }
.federation-heading h2 { font-size: clamp(3rem, 5.2vw, 5.2rem); }
.federation-source { display: flex; align-items: flex-start; gap: 12px; max-width: 330px; padding: 16px 18px; border-radius: 18px; background: white; border: 1px solid rgba(8,40,68,.14); }
.live-dot { width: 11px; height: 11px; margin-top: 4px; flex: 0 0 auto; border-radius: 50%; background: #21af75; box-shadow: 0 0 0 6px rgba(33,175,117,.13); }
.federation-source p { margin: 0; font-size: .83rem; font-weight: 800; }
.federation-source a { text-decoration: underline; text-underline-offset: 3px; }
.federation-source small { display: block; margin-top: 4px; color: #587486; font-weight: 600; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.news-card { min-height: 300px; display: flex; flex-direction: column; padding: 25px; border-radius: 24px; background: white; border: 2px solid var(--navy); box-shadow: 6px 6px 0 var(--aqua); transition: transform .2s ease, box-shadow .2s ease; }
.news-card:hover, .news-card:focus-visible { transform: translateY(-7px); box-shadow: 9px 12px 0 var(--yellow); }
.news-card > span { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 50%; background: var(--yellow); font-size: .72rem; font-weight: 1000; }
.news-card time { margin: 33px 0 14px; color: var(--orange); font-size: .7rem; font-weight: 1000; letter-spacing: .11em; text-transform: uppercase; }
.news-card h3 { margin: 0; font-size: 1.45rem; line-height: 1.12; font-weight: 1000; text-transform: uppercase; }
.news-card b { margin-top: auto; padding-top: 24px; font-size: .76rem; }
.news-fallback { grid-column: 1 / -1; padding: 34px; border-radius: 24px; background: white; border: 2px dashed var(--navy); }
.news-fallback p { margin: 0; }
.federation-links { margin-top: 22px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.federation-links a { position: relative; padding: 18px 52px 18px 18px; border-radius: 16px; background: var(--navy); color: white; }
.federation-links small, .federation-links strong { display: block; }
.federation-links small { margin-bottom: 5px; color: var(--aqua); font-size: .61rem; font-weight: 1000; letter-spacing: .14em; }
.federation-links strong { font-size: .9rem; }
.federation-links span { position: absolute; right: 18px; top: 50%; transform: translateY(-50%); color: var(--yellow); font-size: 1.35rem; }

.challenge-section { width: min(1180px, calc(100% - 40px)); margin: 0 auto 120px; display: grid; grid-template-columns: .65fr 1.35fr; border-radius: 38px; overflow: hidden; background: var(--navy); color: white; }
.challenge-copy { padding: 56px; }
.challenge-copy h2 { max-width: 500px; font-size: clamp(2.6rem, 4.6vw, 4.8rem); }
.challenge-copy > p:last-child { max-width: 480px; margin: 28px 0 0; line-height: 1.6; font-weight: 600; }
.challenge-game { padding: 30px; background: linear-gradient(145deg, #a9e7ef, #57d1c2); color: var(--navy); }
.score-row { height: 46px; display: flex; align-items: center; gap: 14px; padding: 0 14px; border-radius: 14px; background: rgba(255,255,255,.65); font-size: .75rem; font-weight: 1000; text-transform: uppercase; }
.score-row > div { flex: 1; display: flex; gap: 7px; }
.score-row i { width: 12px; height: 12px; border: 2px solid var(--navy); border-radius: 50%; }
.score-row i.hit { background: var(--orange); }
.game-field { position: relative; height: 350px; margin-top: 18px; overflow: hidden; border-radius: 24px; background: repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.27) 0 1px, transparent 2px 65px); border: 1px solid rgba(8,40,68,.16); cursor: crosshair; }
.game-field::before, .game-field::after { content: ''; position: absolute; background: rgba(8,40,68,.12); }
.game-field::before { width: 1px; height: 100%; left: 50%; }
.game-field::after { height: 1px; width: 100%; top: 50%; }
.game-field p { position: absolute; left: 18px; bottom: 14px; margin: 0; padding: 7px 12px; border-radius: 999px; background: white; font-size: .75rem; font-weight: 900; }
.moving-target { position: absolute; z-index: 2; width: 76px; height: 76px; padding: 0; border: 0; border-radius: 50%; cursor: pointer; background: white; box-shadow: 0 10px 30px rgba(8,40,68,.2), inset 0 0 0 10px white, inset 0 0 0 18px var(--navy), inset 0 0 0 27px white, inset 0 0 0 35px var(--orange); transition: left .23s ease, top .23s ease, transform .2s ease; }
.moving-target:hover, .moving-target:focus-visible { transform: scale(1.1); outline: 5px solid rgba(255,212,59,.65); }
.moving-target.locked { transform: scale(.94); outline: 7px solid rgba(255,212,59,.9); box-shadow: 0 0 0 14px rgba(255,255,255,.4), 0 10px 30px rgba(8,40,68,.2), inset 0 0 0 10px white, inset 0 0 0 18px var(--navy), inset 0 0 0 27px white, inset 0 0 0 35px var(--orange); }
.moving-target span { position: absolute; width: 10px; height: 10px; left: 33px; top: 33px; border-radius: 50%; background: var(--yellow); }
.pos-a { left: 15%; top: 17%; }
.pos-b { left: 70%; top: 56%; }
.pos-c { left: 49%; top: 12%; }
.pos-d { left: 21%; top: 62%; }
.pos-e { left: 72%; top: 15%; }

.safety-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; background: #e7f8f6; }
.safety-visual { position: relative; display: grid; place-items: center; overflow: hidden; background: var(--yellow); }
.safety-target { width: 450px; height: 450px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); border: 52px solid white; box-shadow: 0 0 0 52px var(--navy), 0 0 0 104px var(--aqua); }
.safety-target i { width: 70px; height: 70px; border-radius: 50%; background: var(--yellow); border: 10px solid var(--navy); }
.safety-badge { position: absolute; right: 12%; bottom: 12%; width: 118px; height: 118px; display: grid; place-items: center; text-align: center; border-radius: 50%; background: white; border: 4px solid var(--navy); color: var(--navy); font-size: 1.1rem; font-weight: 1000; transform: rotate(7deg); box-shadow: 6px 6px 0 var(--orange); }
.safety-copy { max-width: 640px; padding: 100px 60px; align-self: center; }
.safety-copy h2 { font-size: clamp(3rem, 5.3vw, 5.2rem); }
.safety-copy > p:not(.kicker) { margin: 28px 0; font-size: 1.05rem; line-height: 1.7; font-weight: 600; }
.safety-copy ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-weight: 800; }
.safety-copy li { display: flex; align-items: center; gap: 12px; }
.safety-copy li span { width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--aqua); border: 2px solid var(--navy); }
.safety-copy li.quiet-detail { margin-top: 4px; color: #9eb9c9; font-size: .86rem; font-weight: 650; }
.safety-copy li.quiet-detail span { background: white; color: var(--navy); }

.heritage-section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; display: grid; grid-template-columns: 190px 1fr auto; align-items: center; gap: 60px; }
.heritage-section > img { width: 180px; height: 180px; object-fit: contain; filter: drop-shadow(7px 8px 0 rgba(78,209,192,.7)); }
.heritage-section h2 { font-size: clamp(3rem, 5.2vw, 5.2rem); }
.heritage-section p:last-child { max-width: 680px; margin: 22px 0 0; line-height: 1.65; font-weight: 600; }
.heritage-section > strong { color: var(--orange); font-size: clamp(5rem, 10vw, 9rem); letter-spacing: -.08em; line-height: .8; }
.heritage-section > strong span { display: block; margin-top: 8px; color: var(--navy); font-size: 1rem; letter-spacing: .18em; text-align: right; text-transform: uppercase; }

.location-section { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 650px; background: var(--yellow); border-top: 2px solid var(--navy); border-bottom: 2px solid var(--navy); }
.location-copy { padding: 95px max(30px, calc((100vw - 1180px) / 2)); padding-right: 60px; align-self: center; }
.location-copy h2 { max-width: 560px; font-size: clamp(3rem, 5.3vw, 5.3rem); }
.location-address { margin: 30px 0 0; }
.location-address strong, .location-address span { display: block; }
.location-address strong { font-size: 1.2rem; }
.location-address span { margin-top: 5px; font-weight: 700; }
.entrance-note { display: flex; gap: 14px; align-items: flex-start; max-width: 560px; margin: 27px 0; padding: 18px; border-radius: 18px; background: white; border: 2px solid var(--navy); box-shadow: 5px 5px 0 var(--orange); }
.entrance-note > span { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; background: var(--orange); color: white; font-size: 1.3rem; font-weight: 1000; }
.entrance-note p { margin: 0; font-size: .9rem; line-height: 1.5; }
.entrance-note strong { display: block; margin-bottom: 3px; }
.map-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.map-frame { position: relative; min-height: 650px; overflow: hidden; background: #cce9e5; border-left: 2px solid var(--navy); }
.map-frame iframe { width: 100%; height: 100%; min-height: 650px; display: block; border: 0; filter: saturate(.88) contrast(1.03); }
.map-pin-label { position: absolute; z-index: 2; right: 22px; top: 22px; padding: 12px 16px; border-radius: 999px; background: var(--orange); color: white; border: 3px solid white; box-shadow: 4px 4px 0 var(--navy); font-size: .78rem; font-weight: 1000; text-transform: uppercase; }

.contact-section { background: var(--navy); color: white; padding: 110px max(20px, calc((100vw - 1180px) / 2)); }
.contact-card { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
.contact-card h2 { font-size: clamp(3.4rem, 6.5vw, 6.6rem); }
.contact-card > div:first-child > p:last-child { max-width: 600px; margin: 26px 0 0; color: #c8dce8; font-size: 1.05rem; line-height: 1.65; }
.contact-actions { display: grid; gap: 12px; }
.contact-link { position: relative; display: block; padding: 24px 66px 24px 24px; border: 2px solid rgba(255,255,255,.32); border-radius: 20px; transition: background .2s ease, color .2s ease; }
.contact-link:hover, .contact-link:focus-visible { background: white; color: var(--navy); }
.contact-signup { background: var(--orange); border-color: var(--orange); }
.contact-link small, .contact-link strong { display: block; }
.contact-link small { margin-bottom: 6px; font-size: .66rem; font-weight: 1000; letter-spacing: .17em; }
.contact-link strong { font-size: clamp(1.3rem, 2.3vw, 2rem); }
.contact-link > span { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.contact-details { margin-top: 70px; padding-top: 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; border-top: 1px solid rgba(255,255,255,.2); }
.contact-details small, .contact-details strong { display: block; }
.contact-details small { margin-bottom: 8px; color: var(--aqua); font-size: .65rem; font-weight: 1000; letter-spacing: .16em; }
.contact-details strong { font-size: .95rem; }

footer { min-height: 110px; padding: 24px max(20px, calc((100vw - 1180px) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 28px; background: #061d31; color: white; font-size: .78rem; }
.footer-brand img { width: 50px; height: 50px; }
footer p { margin: 0; color: #9eb9c9; }
footer > a:last-child { font-weight: 900; }

@media (max-width: 980px) {
  .split-heading, .benefits, .contact-card { grid-template-columns: 1fr; gap: 35px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: 310px; }
  .step-icon { margin-bottom: 30px; }
  .schedule-bar { grid-template-columns: 1fr 1fr; }
  .schedule-bar a { grid-column: 1 / -1; justify-content: center; }
  .benefits-intro { position: static; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { min-height: 230px; }
  .federation-links { grid-template-columns: 1fr; }
  .challenge-section { grid-template-columns: 1fr; }
  .safety-section { grid-template-columns: 1fr; }
  .safety-visual { min-height: 520px; }
  .heritage-section { grid-template-columns: 140px 1fr; gap: 35px; }
  .heritage-section > img { width: 140px; height: 140px; }
  .heritage-section > strong { grid-column: 2; }
  .location-section { grid-template-columns: 1fr; }
  .location-copy { padding: 80px max(30px, calc((100vw - 760px) / 2)); }
  .map-frame, .map-frame iframe { min-height: 520px; }
  .map-frame { border-left: 0; border-top: 2px solid var(--navy); }
  .contact-card { align-items: stretch; }
}

@media (max-width: 620px) {
  .section { width: min(100% - 28px, 1180px); padding: 82px 0; }
  .split-heading { margin-bottom: 34px; }
  h2 { font-size: clamp(2.7rem, 13vw, 4rem); }
  .steps-grid { gap: 12px; }
  .step-card { min-height: 300px; padding: 24px; border-radius: 24px; }
  .schedule-bar { grid-template-columns: 1fr; padding: 22px; }
  .schedule-bar div { border-right: 0; border-bottom: 1px solid rgba(8,40,68,.18); padding: 0 0 16px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 240px; }
  .federation-section { padding-top: 80px; padding-bottom: 80px; }
  .federation-heading { align-items: stretch; flex-direction: column; }
  .federation-source { max-width: none; }
  .challenge-section { width: min(100% - 28px, 1180px); margin-bottom: 82px; border-radius: 28px; }
  .challenge-copy { padding: 34px 26px; }
  .challenge-game { padding: 18px; }
  .game-field { height: 320px; }
  .safety-visual { min-height: 430px; }
  .safety-target { width: 280px; height: 280px; border-width: 32px; box-shadow: 0 0 0 34px var(--navy), 0 0 0 68px var(--aqua); }
  .safety-target i { width: 48px; height: 48px; border-width: 7px; }
  .safety-badge { right: 9%; width: 95px; height: 95px; font-size: .9rem; }
  .safety-copy { padding: 72px 24px; }
  .heritage-section { width: min(100% - 28px, 1180px); grid-template-columns: 1fr; padding: 80px 0; }
  .heritage-section > img { width: 125px; height: 125px; }
  .heritage-section > strong { grid-column: 1; font-size: 6rem; }
  .location-copy { padding: 72px 22px; }
  .map-actions .button { width: 100%; }
  .map-frame, .map-frame iframe { min-height: 430px; }
  .map-pin-label { right: 13px; top: 13px; font-size: .65rem; }
  .contact-section { padding-top: 80px; padding-bottom: 80px; }
  .contact-details { grid-template-columns: 1fr; gap: 20px; }
  footer { align-items: flex-start; flex-direction: column; padding-top: 34px; padding-bottom: 34px; }
}
