/* Baby Mamas Organisation - stylesheet v2
   Photo-led, light and sleek. Navy from the match shorts, red from the crest,
   gold from the home kit used only as a fine accent. Montserrat throughout (self-hosted in assets/fonts). */
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/montserrat-400.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/montserrat-500.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/montserrat-600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/montserrat-700.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 800; font-display: swap; src: url('../fonts/montserrat-800.woff2') format('woff2'); }

:root {
  --ink: #0a1430;
  --ink-2: #414b63;
  --ink-3: #6f7890;
  --red: #e30613;
  --red-deep: #b1030e;
  --gold: #c9a24b;
  --bg: #ffffff;
  --tint: #f3f4f8;
  --line: #e3e6ee;
  --white: #ffffff;
  --display: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --r-lg: 28px;
  --r-md: 18px;
  --r-sm: 12px;
  --wrap: 1240px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  /* aliases used by the admin stylesheet */
  --black: #0a1430; --paper: #f3f4f8; --ink-soft: #414b63;
  --shadow: 0 1px 2px rgba(10, 20, 48, .06), 0 12px 32px -12px rgba(10, 20, 48, .18);
}

*, *::before, *::after { box-sizing: border-box; }
/* Base size is 95% of the browser default; every rem-based size in the site scales from this. */
html { font-size: 95%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--body); font-size: 1rem; line-height: 1.7; color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--display); line-height: 1.08; margin: 0 0 .5em; letter-spacing: -.02em; overflow-wrap: break-word; }
p { margin: 0 0 1em; }
.wrap { width: min(100% - 3rem, var(--wrap)); margin-inline: auto; }
.narrow { max-width: 820px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip { position: absolute; left: -999px; top: .5rem; background: var(--ink); color: #fff; padding: .6rem 1rem; border-radius: 999px; z-index: 200; }
.skip:focus { left: 1rem; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 6px; }
[hidden] { display: none !important; }
.hp { position: absolute; left: -9999px; }
.muted { color: var(--ink-3); }
.small { font-size: .9rem; }

.h2 { font-size: clamp(1.75rem, 3.6vw, 2.9rem); font-weight: 800; }
.lead { font-size: 1.1rem; color: var(--ink-2); }
.kicker { font-weight: 500; color: var(--gold); margin-bottom: .8rem; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section.tint { background: var(--tint); }
.section-head { max-width: 640px; margin-bottom: 2.8rem; }
.section-head p { color: var(--ink-2); font-size: 1.12rem; margin: 0; }
.section-head.row { max-width: none; display: flex; justify-content: space-between; align-items: end; gap: 1rem; flex-wrap: wrap; }
.section-head.row .h2 { margin: 0; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .6rem; min-height: 48px; padding: .85rem 1.5rem; border-radius: 999px; border: 0; font: 600 .95rem/1.1 var(--body); text-decoration: none; cursor: pointer; transition: background-color .2s, color .2s, transform .2s var(--ease), box-shadow .2s; white-space: nowrap; }
.btn:active { transform: scale(.98); }
.btn-sm { min-height: 40px; padding: .6rem 1.1rem; font-size: .88rem; }
.btn-lg { min-height: 54px; padding: 1rem 1.9rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 20px -8px rgba(227, 6, 19, .6); }
.btn-red:hover { background: var(--red-deep); }
.btn-white { background: #fff; color: var(--ink); }
.btn-white:hover { background: var(--tint); }
.btn-glass { background: rgba(255, 255, 255, .14); color: #fff; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .35); }
.btn-glass:hover { background: rgba(255, 255, 255, .26); }
.btn-outline, .btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--ink); }
.btn-outline:hover, .btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; margin-top: 1.6rem; }
.arrow-link { display: inline-flex; align-items: center; gap: .5rem; min-height: 44px; font-weight: 500; color: var(--ink); text-decoration: none; }
.arrow-link::after { content: ""; width: 22px; height: 1.5px; background: currentColor; transition: width .25s var(--ease); }
.arrow-link:hover::after { width: 34px; }
.arrow-link:hover { color: var(--red); }
.text-link { display: inline-block; padding: .6rem 0; color: var(--red); font-weight: 600; }
.link-button { background: none; border: 0; padding: 0; font-weight: 500; color: var(--red); text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.link-button:disabled { color: var(--ink-3); text-decoration: none; cursor: not-allowed; }
.round-btn { width: 46px; height: 46px; display: inline-grid; place-items: center; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-size: 1.1rem; cursor: pointer; transition: border-color .2s, background-color .2s; }
.round-btn:hover { border-color: var(--ink); }

/* ---------- Header: floating glass pill ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; padding: 22px 24px 0; pointer-events: none; }
.header-pill { pointer-events: auto; max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; padding: 8px 8px 8px 12px; border-radius: 999px; color: #fff; background: rgba(10, 20, 48, .28); backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18); transition: background-color .3s, color .3s, box-shadow .3s; }
.site-header.solid .header-pill { background: rgba(255, 255, 255, .88); color: var(--ink); box-shadow: inset 0 0 0 1px var(--line), var(--shadow); }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em; margin-right: auto; }
.brand img { border-radius: 50%; }
.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav a:not(.btn) { text-decoration: none; font-size: .9rem; font-weight: 500; padding: .55rem .9rem; border-radius: 999px; transition: background-color .2s; }
.site-nav a:not(.btn):hover { background: rgba(255, 255, 255, .14); }
.site-header.solid .site-nav a:not(.btn):hover { background: var(--tint); }
.site-nav a[aria-current="page"]:not(.btn) { background: rgba(255, 255, 255, .2); }
.site-header.solid .site-nav a[aria-current="page"]:not(.btn) { background: var(--ink); color: #fff; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .16); cursor: pointer; position: relative; }
.site-header.solid .nav-toggle { background: var(--tint); }
.nav-toggle span:not(.sr) { position: absolute; left: 13px; right: 13px; height: 2px; background: currentColor; transition: transform .25s var(--ease); }
.nav-toggle span:nth-child(1) { top: 18px; }
.nav-toggle span:nth-child(2) { top: 25px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

/* ---------- Framed media (hero + page heroes) ---------- */
.frame { position: relative; margin: 12px; border-radius: var(--r-lg); overflow: hidden; background: var(--ink); color: #fff; isolation: isolate; }
.frame-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.frame-shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 20, 48, .45) 0%, rgba(10, 20, 48, 0) 28%, rgba(10, 20, 48, .15) 55%, rgba(10, 20, 48, .88) 100%); }

.hero-frame { min-height: calc(100svh - 24px); display: flex; align-items: flex-end; }
.hero-shade { background: linear-gradient(180deg, rgba(10, 20, 48, .5) 0%, rgba(10, 20, 48, 0) 30%), linear-gradient(90deg, rgba(10, 20, 48, .85) 0%, rgba(10, 20, 48, .35) 55%, rgba(10, 20, 48, .1) 100%); }
.hero-content { padding: 9rem 0 clamp(3rem, 7vw, 5.5rem); }
.hero-title { font-size: clamp(2.4rem, 6.2vw, 5.8rem); font-weight: 800; line-height: 1; letter-spacing: -.035em; max-width: 16ch; margin-bottom: 1.6rem; }
.hero-title span { display: block; animation: rise 1s var(--ease) both; }
.hero-title span + span { animation-delay: .15s; }
.hero-lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); max-width: 34rem; color: rgba(255, 255, 255, .86); margin-bottom: 2.2rem; animation: rise 1s .3s var(--ease) both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; animation: rise 1s .45s var(--ease) both; }
.hero-badge { position: absolute; right: 28px; bottom: 28px; display: flex; align-items: center; gap: .8rem; padding: 10px 20px 10px 10px; border-radius: 999px; background: rgba(255, 255, 255, .12); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .22); }
.hero-badge img { border-radius: 50%; }
.hero-badge p { margin: 0; line-height: 1.25; }
.hero-badge strong { display: block; font-family: var(--display); font-size: 1.05rem; }
.hero-badge span { font-size: .85rem; color: rgba(255, 255, 255, .75); }
.hero-pause { position: absolute; right: 28px; top: 50%; width: 40px; height: 40px; border-radius: 50%; border: 0; display: grid; place-items: center; color: #fff; background: rgba(255, 255, 255, .14); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .3); cursor: pointer; }
.hero-pause .i-play, .hero-pause[aria-pressed="true"] .i-pause { display: none; }
.hero-pause[aria-pressed="true"] .i-play { display: block; }
@keyframes rise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

.page-hero .frame { min-height: clamp(420px, 62vh, 620px); display: flex; align-items: flex-end; }
.page-hero-content { padding: 8rem 0 clamp(2.5rem, 5vw, 4rem); }
.page-hero .frame-shade { background: linear-gradient(90deg, rgba(10, 20, 48, .82) 0%, rgba(10, 20, 48, .5) 45%, rgba(10, 20, 48, .08) 85%), linear-gradient(180deg, rgba(10, 20, 48, .5) 0%, rgba(10, 20, 48, 0) 28%, rgba(10, 20, 48, 0) 60%, rgba(10, 20, 48, .55) 100%); }
.page-hero h1 { font-size: clamp(2.2rem, 5.6vw, 4.8rem); font-weight: 800; letter-spacing: -.02em; max-width: 18ch; margin-bottom: .6rem; text-shadow: 0 2px 30px rgba(10, 20, 48, .35); }
.page-hero p { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255, 255, 255, .85); max-width: 38rem; margin: 0; }

/* ---------- Home: statement ---------- */
.statement-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.statement-text { font-family: var(--display); font-size: clamp(1.6rem, 3.1vw, 2.6rem); font-weight: 700; line-height: 1.18; letter-spacing: -.015em; margin-bottom: 1.4rem; }
.statement-sub { color: var(--ink-2); font-size: 1.12rem; max-width: 36rem; margin-bottom: 1.8rem; }
.photo-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.photo-pair img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: var(--r-md); }
.photo-pair img:last-child { margin-top: 3.5rem; }

/* ---------- Home: bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-template-rows: repeat(2, minmax(260px, 30vh)); gap: 14px; }
.tile { position: relative; border-radius: var(--r-md); overflow: hidden; color: #fff; text-decoration: none; isolation: isolate; background: var(--ink); }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(10, 20, 48, 0) 35%, rgba(10, 20, 48, .9) 100%); }
.tile:hover img { transform: scale(1.05); }
.tile-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.5rem; }
.tile h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .3rem; }
.tile p { margin: 0; font-size: .95rem; color: rgba(255, 255, 255, .8); }
.tile-xl { grid-column: span 2; grid-row: span 2; }
.tile-xl h3 { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; }
.tile-xl p { font-size: 1.08rem; max-width: 28rem; }
.tile-xl .tile-body { padding: 2rem; }

/* ---------- Home: KTN feature ---------- */
.feature { background: var(--ink); color: #fff; padding: clamp(4rem, 8vw, 7rem) 0; margin: 0 12px; border-radius: var(--r-lg); }
.feature-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.feature-copy p:not(.kicker) { color: rgba(255, 255, 255, .78); font-size: 1.12rem; margin-bottom: 1.8rem; max-width: 30rem; }
.feature-media { position: relative; padding: 0; border: 0; border-radius: var(--r-md); overflow: hidden; cursor: pointer; aspect-ratio: 16 / 9; background: #000; }
.feature-media img { width: 100%; height: 100%; object-fit: cover; opacity: .85; transition: opacity .3s, transform .8s var(--ease); }
.feature-media:hover img { opacity: 1; transform: scale(1.03); }
.play-disc { position: absolute; left: 50%; top: 50%; width: 84px; height: 84px; margin: -42px 0 0 -42px; border-radius: 50%; display: grid; place-items: center; padding-left: 5px; background: var(--red); color: #fff; box-shadow: 0 0 0 10px rgba(227, 6, 19, .25); transition: transform .3s var(--ease); }
.feature-media:hover .play-disc { transform: scale(1.08); }
.duration { position: absolute; right: 14px; bottom: 14px; font-size: .85rem; font-weight: 500; padding: .25rem .6rem; border-radius: 999px; background: rgba(10, 20, 48, .7); color: #fff; }

/* ---------- Home: reel ---------- */
.reel-section { padding-bottom: 3rem; }
.reel-controls { display: flex; align-items: center; gap: .6rem; }
.reel-controls .arrow-link { margin-left: .8rem; }
.reel { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-inline: max(1.5rem, calc((100vw - var(--wrap)) / 2)); padding: 0 max(1.5rem, calc((100vw - var(--wrap)) / 2)) 1rem; scrollbar-width: none; }
.reel::-webkit-scrollbar { display: none; }
.reel figure { flex: 0 0 clamp(260px, 30vw, 380px); margin: 0; scroll-snap-align: start; }
.reel img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--r-md); }
.reel figcaption { font-size: .92rem; color: var(--ink-3); margin-top: .6rem; }

/* ---------- Home: partners + CTA ---------- */
.partners-band { padding: 2.5rem 0; }
.partners-row { display: flex; align-items: center; gap: 1.5rem 3rem; flex-wrap: wrap; padding: 2rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.partners-row > p { margin: 0; color: var(--ink-3); }
.partners-row ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 1rem 2.8rem; flex: 1; }
.partners-row li { font-family: var(--display); font-size: 1.35rem; font-weight: 700; }
.partners-row li a { text-decoration: none; }
.partners-row li a:hover { color: var(--red); }
.cta { padding: 1rem 0 clamp(4rem, 8vw, 7rem); }
.cta-card { position: relative; border-radius: var(--r-lg); overflow: hidden; min-height: 520px; display: flex; align-items: flex-end; color: #fff; isolation: isolate; }
.cta-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; z-index: -2; }
.cta-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(227, 6, 19, .94) 0%, rgba(227, 6, 19, .8) 38%, rgba(227, 6, 19, 0) 72%); }
.cta-body { padding: clamp(2rem, 5vw, 4rem); max-width: 560px; }
.cta-body p { font-size: 1.15rem; color: rgba(255, 255, 255, .9); margin-bottom: 1.8rem; }

/* ---------- About ---------- */
.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.prose p { color: var(--ink-2); max-width: 38rem; }
.prose .lead { color: var(--ink); }
.stack { position: relative; min-height: 560px; }
.stack img { position: absolute; object-fit: cover; border-radius: var(--r-md); box-shadow: var(--shadow); }
.stack-a { width: 72%; height: 78%; right: 0; top: 0; }
.stack-b { width: 52%; height: 52%; left: 0; bottom: 0; border: 8px solid #fff; }
.motto-band { background: var(--ink); color: #fff; margin: 0 12px; border-radius: var(--r-lg); }
.motto-grid { display: grid; grid-template-columns: auto 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.motto-grid img { width: clamp(140px, 18vw, 220px); border-radius: 50%; }
.motto-grid .h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); color: #fff; }
.motto-grid p { font-size: 1.2rem; color: rgba(255, 255, 255, .8); max-width: 34rem; margin: 0; }
.values { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; margin: 0; }
.values div { padding: 1.6rem 1.6rem 1.7rem; border-radius: var(--r-md); background: var(--tint); }
.values dt { font-family: var(--display); font-size: 1.25rem; font-weight: 700; margin-bottom: .35rem; }
.values dt::before { content: ""; display: block; width: 28px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 1rem; }
.values dd { margin: 0; color: var(--ink-2); }
.preamble { margin-top: 2rem; padding: clamp(1.8rem, 4vw, 3rem); background: #fff; border-radius: var(--r-md); box-shadow: var(--shadow); }
.preamble p { color: var(--ink-2); line-height: 1.8; }
.preamble-end { color: var(--ink) !important; font-weight: 700; margin: 0; }

/* ---------- Programmes ---------- */
.programs { display: grid; gap: clamp(3.5rem, 7vw, 6rem); }
.program { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; scroll-margin-top: 110px; }
.program:nth-child(even) .program-media { order: 2; }
.program-media img { width: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--r-lg); }
.program-body .lead { margin-bottom: 1.4rem; }
.checklist { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: .55rem; }
.checklist li { position: relative; padding-left: 2rem; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .3rem; width: 20px; height: 20px; border-radius: 50%; background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.5l2.5 2.5L14 7.5' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat; }

/* ---------- Gallery ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.chip { border: 1.5px solid var(--line); background: #fff; border-radius: 999px; padding: .55rem 1rem; font-weight: 500; font-size: .95rem; cursor: pointer; transition: all .2s; }
.chip span { color: var(--ink-3); font-weight: 400; margin-left: .2rem; }
.chip:hover { border-color: var(--ink); }
.chip[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.chip[aria-pressed="true"] span { color: rgba(255, 255, 255, .6); }
.masonry { columns: 3 300px; column-gap: 14px; }
.masonry figure { margin: 0 0 14px; break-inside: avoid; }
.masonry button { display: block; width: 100%; padding: 0; border: 0; background: none; cursor: zoom-in; border-radius: var(--r-md); overflow: hidden; }
.masonry img { width: 100%; transition: transform .6s var(--ease); }
.masonry button:hover img { transform: scale(1.04); }
.masonry figcaption { font-size: .9rem; color: var(--ink-3); padding: .5rem .2rem 0; }
.credit { color: var(--ink-3); font-size: .9rem; margin-top: 1.5rem; }
.fb-block { display: grid; grid-template-columns: 1fr minmax(0, 500px); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.fb-block iframe { width: 100%; max-width: 500px; border-radius: var(--r-md); background: #fff; }

/* ---------- Dialogs: lightbox + video ---------- */
dialog { border: 0; padding: 0; background: transparent; color: #fff; max-width: 100vw; max-height: 100vh; }
dialog::backdrop { background: rgba(6, 10, 24, .92); backdrop-filter: blur(6px); }
.lightbox { width: 100vw; height: 100vh; }
.lightbox[open] { display: grid; place-items: center; }
.lightbox figure { margin: 0; text-align: center; }
.lightbox img { max-width: 88vw; max-height: 80vh; border-radius: var(--r-sm); }
.lb-caption { margin-top: 1rem; color: rgba(255, 255, 255, .8); }
.lightbox .round-btn { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .25); color: #fff; }
.lb-prev { left: 1.25rem; } .lb-next { right: 1.25rem; }
.modal-close { position: fixed; top: 1.25rem; right: 1.25rem; width: 48px; height: 48px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .12); color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer; }
.video-modal { width: min(1100px, 92vw); overflow: visible; }
.video-modal video { width: 100%; border-radius: var(--r-md); background: #000; }
.video-credit { font-size: .9rem; color: rgba(255, 255, 255, .6); margin: .8rem 0 0; }

/* ---------- Partners ---------- */
.partner-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 14px; }
.partner { display: grid; grid-template-columns: 80px 1fr; gap: 1.4rem; padding: 2rem; border-radius: var(--r-md); background: var(--tint); }
.partner img, .partner-mark { width: 80px; height: 80px; border-radius: 20px; }
.partner img { object-fit: contain; background: #fff; }
.partner-mark { display: grid; place-items: center; background: var(--ink); color: #fff; font-family: var(--display); font-size: 1.6rem; font-weight: 800; }
.partner h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: .4rem; }
.partner p { color: var(--ink-2); }
.panel-dark { background: var(--ink); color: #fff; border-radius: var(--r-lg); padding: clamp(2rem, 5vw, 4.5rem); }
.panel-dark h2 { font-size: clamp(1.75rem, 3.6vw, 2.8rem); font-weight: 800; }
.prose.light p, .prose.light li { color: rgba(255, 255, 255, .8); }
.panel-dark .checklist { margin-bottom: 1.4rem; }

/* ---------- Layout helpers ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }

/* ---------- Forms ---------- */
.form-card { background: #fff; color: var(--ink); padding: clamp(1.6rem, 3.5vw, 2.6rem); border-radius: var(--r-lg); box-shadow: var(--shadow); }
form label { display: block; font-weight: 500; font-size: .95rem; margin-bottom: 1.1rem; }
form input[type=text], form input[type=email], form input[type=tel], form input[type=date], form input[type=password], form select, form textarea {
  display: block; width: 100%; margin-top: .45rem; padding: .9rem 1rem; font: 400 1rem var(--body); color: var(--ink); background: var(--tint); border: 1.5px solid transparent; border-radius: var(--r-sm); transition: border-color .2s, background-color .2s, box-shadow .2s; }
form input:hover, form select:hover, form textarea:hover { border-color: var(--line); }
form input:focus, form select:focus, form textarea:focus { outline: none; background: #fff; border-color: var(--ink); box-shadow: 0 0 0 4px rgba(10, 20, 48, .08); }
form [aria-invalid="true"] { border-color: var(--red); background: #fff5f5; }
form input[type=file] { margin-top: .45rem; }
.opt { color: var(--ink-3); font-weight: 400; }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
fieldset { border: 0; padding: 0; margin: 0 0 1.6rem; }
legend { font-family: var(--display); font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; padding: 0; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1rem; }
.check { display: flex !important; gap: .7rem; align-items: flex-start; font-weight: 400 !important; cursor: pointer; margin: 0 !important; }
.checks .check { padding: .85rem 1rem; border-radius: var(--r-sm); background: var(--tint); border: 1.5px solid transparent; transition: border-color .2s, background-color .2s; }
.checks .check:has(input:checked) { border-color: var(--ink); background: #fff; }
.check input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--red); flex: none; }
.consent { margin: 0 0 .4rem !important; }
.field-error { display: block; color: var(--red-deep); font-size: .88rem; font-weight: 500; margin-top: .4rem; }
.notice { padding: 1rem 1.2rem; margin-bottom: 1.5rem; border-radius: var(--r-sm); }
.notice ul { margin: .3rem 0 0; padding-left: 1.2rem; }
.notice p { margin: 0; }
.notice.error { background: #fdecec; color: #6e0209; }
.notice.success { background: #e9f6ee; color: #0f4020; }
.register-form .btn-block { margin-top: 1.4rem; }
.form-note { color: var(--ink-3); font-size: .9rem; margin: -.4rem 0 1.4rem; }
.field.is-invalid > input, .field.is-invalid > select, .field.is-invalid .input-wrap input { border-color: var(--red); background: #fff5f5; }
.field.is-valid > input, .field.is-valid > select, .field.is-valid .input-wrap input { border-color: #1f9d55; background: #fff; }
.field.is-invalid .checks .check { border-color: rgba(227, 6, 19, .35); }
.field.is-invalid .consent { color: var(--red-deep); }
.input-wrap { position: relative; display: block; }
.input-wrap input { padding-right: 2.8rem !important; }
.input-status { position: absolute; right: .9rem; top: calc(50% + .22rem); width: 18px; height: 18px; margin-top: -9px; border-radius: 50%; }
.field[data-status="checking"] .input-status { border: 2px solid var(--line); border-top-color: var(--ink); animation: spin .7s linear infinite; }
.field[data-status="ok"] .input-status { background: #1f9d55 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.5l2.5 2.5L14 7.5' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/100% no-repeat; }
.field[data-status="bad"] .input-status { background: var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M7 7l6 6M13 7l-6 6' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E") center/100% no-repeat; }
.field-error:empty { display: none; }
div.field[data-group="consent"] { margin-bottom: .6rem; }
fieldset.field { margin-bottom: 1.4rem; }
.otp-status { text-align: center; color: var(--ink-3); font-size: .9rem; margin: -.4rem 0 1.2rem; min-height: 1.4em; }
.otp-form.is-checking .otp-input { border-color: var(--ink); background: #fff; opacity: .7; }
.otp-form.is-checking .otp-status { color: var(--ink); font-weight: 600; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Register + verify ---------- */
.register-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.steps { position: sticky; top: 110px; background: var(--ink); color: #fff; border-radius: var(--r-lg); overflow: hidden; padding-bottom: 1.8rem; }
.steps img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: 50% 25%; margin-bottom: 1.6rem; }
.steps h2 { font-size: 1.7rem; font-weight: 700; padding: 0 1.8rem; }
.steps ol { list-style: none; counter-reset: s; padding: 0 1.8rem; margin: 0 0 1.2rem; }
.steps li { counter-increment: s; position: relative; padding: 0 0 1.2rem 2.8rem; color: rgba(255, 255, 255, .72); font-size: .98rem; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: 0; width: 1.9rem; height: 1.9rem; border-radius: 50%; display: grid; place-items: center; background: var(--red); color: #fff; font-weight: 700; font-size: .9rem; }
.steps li strong { display: block; color: #fff; }
.steps .muted { color: rgba(255, 255, 255, .6); padding: 0 1.8rem; margin: 0; }
.steps .muted a { color: #fff; }
.verify-card { text-align: center; max-width: 540px; margin: 0 auto; }
.verify-card h2 { font-size: 2rem; font-weight: 800; }
.verify-card form { text-align: left; }
.verify-crest { width: 96px; margin: 0 auto 1.2rem; border-radius: 50%; }
.otp-input { text-align: center; font-family: var(--display) !important; font-size: clamp(1.6rem, 7vw, 2.2rem) !important; font-weight: 700 !important; letter-spacing: .45em; padding-left: .45em !important; margin: 1.2rem 0 !important; }
.resend-form { margin: 1.5rem 0 .6rem; display: flex; justify-content: center; gap: .6rem; align-items: baseline; }
.member-no { font-family: var(--display); font-size: clamp(2rem, 8vw, 2.8rem); font-weight: 800; color: var(--red); margin: 0 0 1rem; letter-spacing: .04em; }

/* ---------- Contact ---------- */
.contact-details h2 { font-family: var(--body); font-size: .9rem; font-weight: 500; color: var(--ink-3); margin: 0 0 .3rem; letter-spacing: 0; }
.big-line { font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 700; line-height: 1.25; margin-bottom: 2rem; }
.big-line a { text-decoration: none; }
.big-line a:hover { color: var(--red); }
.map-section { padding-top: 0; }
.map { border-radius: var(--r-lg); overflow: hidden; }
.map iframe { display: block; width: 100%; height: 440px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255, 255, 255, .72); margin: 0 12px 12px; border-radius: var(--r-lg); padding-top: clamp(3rem, 6vw, 5rem); }
.footer-top { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.footer-motto { font-family: var(--display); font-size: clamp(2.6rem, 8vw, 6.4rem); font-weight: 800; line-height: 1; letter-spacing: -.04em; color: #fff; margin: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; padding: 3rem 0; }
.footer-brand img { border-radius: 50%; margin-bottom: 1rem; }
.footer-brand p { max-width: 22rem; }
.site-footer h2 { font-family: var(--body); font-size: .95rem; font-weight: 500; color: #fff; margin: 0 0 .7rem; letter-spacing: 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .1rem; }
.footer-links a { display: inline-block; padding: .35rem 0; }
.footer-base { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem 2rem; padding: 1.4rem 0 1.8rem; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .88rem; color: rgba(255, 255, 255, .5); }
.footer-base p { margin: 0; }

/* ---------- Floating actions: WhatsApp + back to top ---------- */
.float-actions { position: fixed; bottom: max(18px, env(safe-area-inset-bottom)); z-index: 90; }
.float-left { left: max(18px, env(safe-area-inset-left)); }
.float-right { right: max(18px, env(safe-area-inset-right)); }
.fab { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; border: 0; cursor: pointer; text-decoration: none; box-shadow: 0 10px 24px -8px rgba(10, 20, 48, .45); transition: transform .25s var(--ease), opacity .25s, visibility .25s, background-color .2s; }
.fab:hover { transform: translateY(-2px); }
.fab-whatsapp { background: #25d366; color: #fff; position: relative; }
.fab-whatsapp:hover { background: #1ebe5b; }
.fab-whatsapp::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); animation: wa-pulse 2.4s 1.5s ease-out 3; }
.fab-label { position: absolute; left: 68px; top: 50%; transform: translateY(-50%); white-space: nowrap; background: #fff; color: var(--ink); font-size: .85rem; font-weight: 600; padding: .45rem .8rem; border-radius: 999px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .2s; }
.fab-whatsapp:hover .fab-label, .fab-whatsapp:focus-visible .fab-label { opacity: 1; }
.fab-top { width: 48px; height: 48px; background: var(--ink); color: #fff; opacity: 0; visibility: hidden; transform: translateY(10px); }
.fab-top.show { opacity: 1; visibility: visible; transform: none; }
.fab-top:hover { background: var(--red); }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); } 100% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); } }
body.dialog-open .float-actions { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .site-nav { position: fixed; top: 84px; left: 24px; right: 24px; flex-direction: column; align-items: stretch; gap: .2rem; padding: .8rem; border-radius: var(--r-md); background: #fff; color: var(--ink); box-shadow: var(--shadow), inset 0 0 0 1px var(--line); opacity: 0; transform: translateY(-8px) scale(.98); visibility: hidden; transition: opacity .2s, transform .25s var(--ease), visibility .25s; }
  .site-nav.open { opacity: 1; transform: none; visibility: visible; }
  .site-nav a:not(.btn) { padding: .9rem 1rem; font-size: 1.05rem; }
  .site-nav a:not(.btn):hover { background: var(--tint); }
  .site-nav a[aria-current="page"]:not(.btn) { background: var(--ink); color: #fff; }
  .nav-cta-mobile { display: flex; margin-top: .5rem; }
  .bento { grid-template-columns: 1fr 1fr; grid-template-rows: none; grid-auto-rows: minmax(260px, auto); }
  .tile-xl { grid-column: span 2; grid-row: span 1; min-height: 420px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .statement-grid, .split, .feature-grid, .program, .two-col, .register-grid, .fb-block { grid-template-columns: 1fr; }
  .program:nth-child(even) .program-media { order: 0; }
  .stack { min-height: 440px; }
  .steps { position: static; }
  .hero-badge { display: none; }
  .hero-pause { top: 88px; right: 20px; }
}
@media (max-width: 600px) {
  body { font-size: 1rem; }
  .wrap { width: min(100% - 2.25rem, var(--wrap)); }
  .site-header { padding: 12px 12px 0; }
  .site-nav { top: 72px; left: 12px; right: 12px; }
  .frame { margin: 8px; border-radius: 22px; }
  .feature, .motto-band, .site-footer { margin-inline: 8px; border-radius: 22px; }
  .hero-content { padding-top: 7rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .bento { grid-template-columns: 1fr; grid-auto-rows: minmax(240px, auto); }
  .tile-xl { grid-column: auto; min-height: 380px; }
  .photo-pair img:last-child { margin-top: 2rem; }
  .row2, .checks { grid-template-columns: 1fr; }
  .motto-grid { grid-template-columns: 1fr; }
  .partner { grid-template-columns: 1fr; }
  .cta-card { min-height: 480px; }
  .cta-card::after { background: linear-gradient(0deg, rgba(227, 6, 19, .95) 0%, rgba(227, 6, 19, .85) 45%, rgba(227, 6, 19, 0) 80%); }
  .footer-grid { grid-template-columns: 1fr; }
  .reel-controls .round-btn { display: none; }
  .partners-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .partners-row ul { flex-direction: column; gap: .4rem; }
}
@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .section-head { margin-bottom: 2rem; }
  .hero-frame { min-height: calc(100svh - 16px); }
  .hero-content { padding-bottom: 5.5rem; }
  .form-card form > .btn { width: 100%; }
  .hero-lede { font-size: 1rem; margin-bottom: 1.6rem; }
  .page-hero .frame { min-height: 380px; }
  .page-hero-content { padding: 7rem 0 2rem; }
  .page-hero p { font-size: 1rem; }
  .statement-text { font-size: 1.45rem; }
  .feature, .motto-band { padding: 3rem 0; }
  .feature-copy .btn { width: 100%; }
  .play-disc { width: 64px; height: 64px; margin: -32px 0 0 -32px; }
  .reel figure { flex-basis: 78vw; }
  .stack { min-height: 380px; }
  .program-media img { aspect-ratio: 4 / 3; border-radius: var(--r-md); }
  .panel-dark { padding: 1.8rem 1.4rem; }
  .panel-dark .form-card { padding: 1.4rem; }
  .partner { padding: 1.5rem; }
  .fb-block iframe { height: 560px; }
  .masonry { columns: 2; column-gap: 10px; }
  .masonry figure { margin-bottom: 10px; }
  .masonry figcaption { font-size: .8rem; }
  .chips { flex-wrap: nowrap; overflow-x: auto; margin-inline: -1.125rem; padding: 0 1.125rem .4rem; scrollbar-width: none; }
  .chips::-webkit-scrollbar { display: none; }
  .chip { flex: none; }
  .form-card { border-radius: var(--r-md); }
  .steps { border-radius: var(--r-md); }
  .map iframe { height: 320px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-top .btn { width: 100%; }
  .footer-base { padding-bottom: 5.5rem; }
  .lightbox .round-btn { top: auto; bottom: 1.25rem; transform: none; }
  .lightbox img { max-width: 94vw; max-height: 70vh; }
  .fab { width: 52px; height: 52px; }
  .fab-top { width: 44px; height: 44px; }
  .fab-label { display: none; }
  /* keep inputs at 16px on phones so iOS doesn't zoom in when a field is tapped */
  form input[type=text], form input[type=email], form input[type=tel], form input[type=date], form input[type=password], form select, form textarea { font-size: 16px; }
}
@media (max-width: 380px) {
  .masonry { columns: 1; }
  .brand span { font-size: .95rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
fieldset[aria-invalid="true"] { background: none; }
