/* ============================================================
   Academia Marcelo Barovero — Web pública
   Identidad: negro / rojo · diseño premium
   ============================================================ */

:root {
    --black: #070707;
    --black-2: #101012;
    --black-3: #17171a;
    --black-4: #202024;
    --gold: #d81f27;
    --gold-light: #ff5b5b;
    --gold-deep: #8c0f14;
    --white: #ffffff;
    --gray: #8b8b90;
    --gray-light: #c7c7cc;
    --line: #26262b;
    --maxw: 1220px;
    --radius: 14px;
    --ease: cubic-bezier(.22, .8, .2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--gold-light); outline-offset: 4px; }
::selection { background: var(--gold); color: var(--white); }

h1, h2, h3, .display {
    font-family: 'Bebas Neue', 'Poppins', sans-serif;
    letter-spacing: 1.5px;
    line-height: 1;
    font-weight: 400;
}

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }
.text-center { text-align: center; }

/* Kicker (etiqueta dorada con línea) */
.kicker {
    display: inline-flex; align-items: center; gap: 12px;
    color: var(--gold); letter-spacing: 4px; text-transform: uppercase;
    font-size: .78rem; font-weight: 700; font-family: 'Poppins';
}
.kicker::before { content: ''; width: 34px; height: 2px; background: var(--gold); }
.kicker.center::after { content: ''; width: 34px; height: 2px; background: var(--gold); }
.kicker.center { justify-content: center; }

/* Botones */
.btn {
    display: inline-flex; align-items: center; gap: 9px;
    padding: 15px 32px; border-radius: 4px;
    font-weight: 600; font-size: .85rem; letter-spacing: 1px; text-transform: uppercase;
    transition: transform .2s var(--ease), background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
    cursor: pointer; border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--black); box-shadow: 0 6px 22px rgba(216,31,39,.28); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 30px rgba(216,31,39,.4); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: var(--white); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

/* ── Header / Nav ─────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 300;
    transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
    background: transparent; border-bottom: 1px solid transparent;
}
.site-header.scrolled {
    background: rgba(7,7,7,.92); backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line); box-shadow: 0 6px 30px rgba(0,0,0,.5);
}
/* Header con más aire (sin desbordar) */
.site-header .container { max-width: 1400px; }
.nav-bar { display: flex; align-items: center; height: 88px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.brand img { height: 56px; width: auto; filter: drop-shadow(0 2px 6px rgba(0,0,0,.6)); }
.brand-txt { line-height: 1.15; }
.brand-txt .name { font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 1.5px; }
.brand-txt .tag { color: var(--gold); font-size: .58rem; letter-spacing: 3px; }

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0 auto; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: block; padding: 12px 14px; font-size: .8rem; font-weight: 600;
    letter-spacing: .5px; text-transform: uppercase; color: var(--gray-light);
    transition: color .18s ease; position: relative; white-space: nowrap;
}
.nav-menu > li > a::after {
    content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
    background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-cta { flex-shrink: 0; }
.nav-menu > li > a:hover, .nav-menu > li.active > a { color: var(--white); }
.nav-menu > li:hover > a::after, .nav-menu > li.active > a::after { transform: scaleX(1); }
.nav-menu .has-sub > a { align-items: center; display: flex; gap: 6px; }
.nav-menu .has-sub > a .caret { font-size: .62rem; opacity: .8; transition: transform .2s ease, color .2s ease; }
.nav-menu .has-sub:hover > a .caret, .nav-menu .has-sub.open > a .caret { color: var(--gold); transform: rotate(180deg); }

.sub-menu {
    position: absolute; top: calc(100% + 2px); left: 0; min-width: 256px;
    background: linear-gradient(145deg, rgba(20,20,23,.99), rgba(7,7,8,.99)); backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.12); border-top: 2px solid var(--gold); border-radius: 0 0 10px 10px;
    box-shadow: 0 20px 42px rgba(0,0,0,.7); list-style: none; padding: 8px;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-menu > li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu li a { align-items: center; border-radius: 7px; color: var(--gray-light); display: flex; font-size: .8rem; font-weight: 600; gap: 10px; letter-spacing: .03em; padding: 12px 13px; transition: background .16s ease, color .16s ease, padding-left .16s ease; white-space: nowrap; }
.sub-menu li + li { margin-top: 2px; }
.sub-menu li a::before { color: var(--gold); content: '↗'; font-size: .75rem; opacity: .75; transition: transform .16s ease; }
.sub-menu li a:hover { background: rgba(229,42,50,.15); color: var(--white); padding-left: 17px; }
.sub-menu li a:hover::before { transform: translate(2px, -2px); }
.sub-menu .sub-head { padding: 10px 20px 4px; font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; }

.nav-cta .btn { padding: 11px 22px; font-size: .75rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 320; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--white); margin: 5px 0; transition: .25s; }
.nav-backdrop { display: none; }
body.menu-open { overflow: hidden; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative; min-height: min(860px, 100svh); display: flex; align-items: center;
    overflow: hidden; isolation: isolate; background: var(--black);
}
.hero-slides {
    position: absolute; inset: 0 0 0 30%; z-index: -2; overflow: hidden;
    background: linear-gradient(135deg, #17171a, #070707);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 40%, #000 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.55) 14%, #000 40%, #000 100%);
}
.hero-slide {
    position: absolute; inset: 0; display: grid; place-items: center; margin: 0;
    opacity: 0; transition: opacity 1.1s ease-in-out;
}
.hero-slide img {
    width: 100%; height: 100%; object-fit: contain; object-position: center;
    filter: saturate(.94) contrast(1.04); transform: scale(1);
    transition: transform 8s var(--ease);
}
.hero-slide.active { opacity: 1; }
.hero-slide.active img { transform: scale(1.04); }
.hero-vignette {
    position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background:
        linear-gradient(90deg, #070707 0%, #070707 18%, rgba(7,7,7,.99) 28%, rgba(7,7,7,.82) 39%, rgba(7,7,7,.42) 54%, rgba(7,7,7,.05) 70%, transparent 100%),
        linear-gradient(0deg, rgba(7,7,7,.9) 0%, transparent 27%, rgba(7,7,7,.28) 100%);
}
.hero-layout { width: 100%; }
.hero-copy { max-width: 680px; padding: 112px 0 78px; }
.hero-eyebrow {
    color: var(--gray-light); font-size: .8rem; letter-spacing: 3px;
    text-transform: uppercase; margin: 20px 0 10px;
}
.hero .kicker { margin-bottom: 0; }
.hero h1 {
    font-size: clamp(4.8rem, 9vw, 8.4rem); color: var(--white);
    text-transform: uppercase; text-shadow: 0 8px 36px rgba(0,0,0,.55);
}
.hero h1 span { color: var(--gold-light); }
.hero .sub { color: var(--gold-light); letter-spacing: 7px; font-size: clamp(.88rem,1.7vw,1.15rem); margin-top: 14px; font-weight: 700; }
.hero .lead { max-width: 570px; margin: 24px 0 30px; color: var(--gray-light); font-size: 1rem; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof {
    display: flex; gap: 24px; flex-wrap: wrap; margin-top: 34px;
    color: var(--gray); font-size: .72rem; letter-spacing: 1px; text-transform: uppercase;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span + span { border-left: 1px solid var(--line); padding-left: 24px; }
.hero-proof strong { color: var(--gold-light); font-family: 'Bebas Neue'; font-size: 1.5rem; font-weight: 400; }
.hero-controls { position: absolute; right: 6%; bottom: 50px; z-index: 3; display: flex; align-items: center; gap: 18px; }
.hero-counter { color: var(--gray-light); font-size: .72rem; letter-spacing: 2px; }
.hero-counter strong { color: var(--gold-light); font-size: 1rem; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 34px; height: 4px; border: 0; border-radius: 3px; background: rgba(255,255,255,.3); cursor: pointer; transition: background .25s ease; padding: 0; }
.hero-dots button.active { background: var(--gold); }
.scroll-cue {
    position: absolute; bottom: 36px; left: 3%; z-index: 3;
    width: 26px; height: 44px; border: 2px solid rgba(255,255,255,.4); border-radius: 14px; display: flex; justify-content: center;
}
.scroll-cue span { width: 4px; height: 9px; background: var(--gold); border-radius: 3px; margin-top: 8px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translateY(0)} 40%{opacity:1} 80%{opacity:0;transform:translateY(14px)} 100%{opacity:0} }

/* ── Secciones ────────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; }
.section.alt { background: var(--black-2); }
.section.tight { padding: 70px 0; }

/* Fondo con degradé dorado vertical (negro → dorado hacia abajo) */
.section.grad-bg { background: linear-gradient(180deg, #070707 0%, #1a0505 40%, #4a0f10 76%, #8c0f14 100%); }
/* Variante invertida: dorado arriba → negro abajo (para encadenar sin cortes) */
.section.grad-bg.flip { background: linear-gradient(0deg, #070707 0%, #1a0505 40%, #4a0f10 76%, #8c0f14 100%); }
.section.historia-surface { background: #000; }
.section-head { text-align: center; margin-bottom: 58px; }
.section-head h2 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin-top: 14px; }
.section-head-left { text-align: left; margin-bottom: 0; }
.section-head-left h2 { max-width: 560px; }

/* Degradé dorado para títulos (metálico, bien marcado) */
.grad-gold {
    background: linear-gradient(120deg, #ffb3b3 0%, #ff5b5b 22%, #d81f27 50%, #8c0f14 74%, #ff5b5b 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
}
.section-head p { color: var(--gray); max-width: 660px; margin: 18px auto 0; font-size: 1.02rem; }

.prose { max-width: 820px; margin: 0 auto; }
.prose p { color: var(--gray-light); margin-bottom: 18px; }
.prose-compact { margin: 0; max-width: 560px; }
.intro-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 90px; align-items: end; }
.intro-note { max-width: 460px; border-left: 2px solid var(--gold); padding-left: 24px; }
.intro-note p { color: var(--gray-light); font-size: 1rem; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--gold-light); font-size: .78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-top: 20px; }
.text-link span { font-size: 1.1rem; transition: transform .2s var(--ease); }
.text-link:hover span { transform: translateX(4px); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: var(--line); border: 1px solid var(--line); }
.pillar { background: var(--black); padding: 30px; min-height: 190px; transition: background .2s ease; }
.pillar:hover { background: var(--black-3); }
.pillar-number { display: block; color: var(--gold); font-family: 'Bebas Neue'; font-size: 1.7rem; line-height: 1; }
.pillar h3 { font-size: 2rem; margin: 20px 0 8px; }
.pillar p { color: var(--gray); font-size: .9rem; max-width: 300px; }

/* Grids */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .media { position: relative; }
.split .media img, .split .media video { border-radius: 12px; width: 100%; height: 100%; max-height: 460px; object-fit: cover; display: block; }
.split .media::after { content:''; position:absolute; inset:0; border:1px solid var(--gold); border-radius:12px; transform: translate(16px,16px); z-index:-1; }
.split h2 { font-size: clamp(2.2rem,4.5vw,3.4rem); margin: 12px 0 18px; }
.founder-cta { margin-top: 12px; }
.founder-media { isolation: isolate; }
.media-caption { display: block; color: var(--gray-light); font-size: .7rem; letter-spacing: 2px; text-transform: uppercase; margin-top: 14px; }

/* Feature cards (imagen grande con overlay) */
.feature {
    position: relative; border-radius: var(--radius); overflow: hidden; min-height: 430px;
    display: flex; align-items: flex-end; isolation: isolate;
    border: 1px solid rgba(255,255,255,.1); background: var(--black-3);
}
.feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.feature::after { content:''; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(7,7,7,.05) 15%, rgba(7,7,7,.95) 92%); }
.feature:hover img { transform: scale(1.07); }
.feature .fc { padding: 32px; width: 100%; }
.feature-location { display: block; color: var(--gold-light); font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.feature h3 { font-size: 2rem; }
.feature p { color: var(--gray-light); font-size: .92rem; margin-top: 6px; }
.feature .more { color: var(--gold); font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-top: 12px; display: inline-block; }

/* Cards simples */
.card, .post-card { background: var(--black-3); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.card:hover, .post-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.card img { width: 100%; height: 240px; object-fit: cover; }
.card .card-body { padding: 24px; }
.card h3 { font-size: 1.6rem; margin-bottom: 8px; }
.card p { color: var(--gray); font-size: .92rem; }
.news-grid { align-items: stretch; }
.post-card { position: relative; min-height: 250px; padding: 24px; display: flex; flex-direction: column; }
.post-card-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.post-index { color: var(--gold-light); font-family: 'Bebas Neue'; font-size: 1.7rem; }
.post-tag { color: var(--gray); font-size: .65rem; letter-spacing: 2px; text-transform: uppercase; }
.post-card p { color: var(--gray-light); font-size: .88rem; line-height: 1.7; margin-top: 22px; }
.post-arrow { display: block; color: var(--gold-light); font-size: 1.2rem; margin-top: auto; padding-top: 18px; }

/* Feed redes */
.feed-card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 1/1; }
.feed-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.feed-card:hover img { transform: scale(1.06); }
.feed-card .ov { position:absolute; inset:0; display:flex; align-items:flex-end; padding:18px; background:linear-gradient(180deg,transparent 55%,rgba(7,7,7,.85)); opacity:0; transition:opacity .25s; }
.feed-card:hover .ov { opacity: 1; }
.feed-card .ov span { font-size:.8rem; color:var(--gold); letter-spacing:1px; }

/* Partidos */
.match-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; }
.match-tab {
    padding: 11px 26px; border: 1px solid var(--line); background: transparent; color: var(--gray-light);
    border-radius: 40px; font-family: 'Poppins'; font-weight: 600; font-size: .82rem; letter-spacing: .5px;
    text-transform: uppercase; cursor: pointer; transition: all .2s ease;
}
.match-tab.active { background: var(--gold); color: var(--black); border-color: var(--gold); }
.match-tab:hover:not(.active) { border-color: var(--gold); color: var(--gold); }
.match-pane { display: none; }
.match-pane.active { display: block; }

.match-card {
    display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
    background: var(--black-3); border: 1px solid var(--line); border-radius: 12px;
    padding: 22px 26px; transition: border-color .2s ease, transform .2s ease;
}
.match-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.match-card + .match-card { margin-top: 16px; }
.match-team { display: flex; align-items: center; gap: 14px; }
.match-team.home { justify-content: flex-end; text-align: right; }
.match-team .crest {
    width: 48px; height: 48px; border-radius: 50%; background: var(--black-4);
    display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0;
    border: 1px solid var(--line);
}
.match-team .crest img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.match-team .tname { font-weight: 600; font-size: .98rem; }
.match-center { text-align: center; min-width: 120px; }
.match-center .score { font-family: 'Bebas Neue'; font-size: 2.4rem; color: var(--white); line-height: 1; letter-spacing: 2px; }
.match-center .score .win { color: var(--gold); }
.match-center .vs { font-family: 'Bebas Neue'; font-size: 1.6rem; color: var(--gray); letter-spacing: 2px; }
.match-center .meta { font-size: .72rem; color: var(--gray); margin-top: 8px; letter-spacing: .5px; }
.match-center .cat { display: inline-block; margin-top: 6px; font-size: .68rem; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; font-weight: 700; }
.match-badge { display:inline-block; font-size:.62rem; letter-spacing:1px; text-transform:uppercase; padding:3px 9px; border-radius:20px; font-weight:700; }
.match-badge.win { background: rgba(216,31,39,.15); color: var(--gold); }
.match-badge.draw { background: rgba(255,255,255,.08); color: var(--gray-light); }
.match-badge.loss { background: rgba(255,255,255,.05); color: var(--gray); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.stat { text-align: center; padding: 20px; }
.stat .num { font-family:'Bebas Neue'; font-size: clamp(3.5rem,8vw,6rem); color: var(--gold); line-height: 1; }
.stat .lbl { color: var(--gray-light); font-size: .95rem; margin-top: 10px; max-width: 240px; margin-inline: auto; }

/* Testimonios */
.quote { background: var(--black-3); border: 1px solid var(--line); border-radius: 12px; padding: 34px 30px; position: relative; }
.quote::before { content: '\201C'; font-family: Georgia, serif; font-size: 5rem; color: var(--gold); opacity: .35; position: absolute; top: 6px; left: 20px; line-height: 1; }
.quote p { color: var(--gray-light); font-style: italic; position: relative; z-index: 1; margin-bottom: 16px; }
.quote .stars { color: var(--gold); letter-spacing: 3px; font-size: .9rem; }

/* Sponsors */
.brands-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; }
.brands-row img { height: 52px; width: auto; object-fit: contain; opacity: .6; filter: grayscale(1) brightness(1.6); transition: all .25s ease; }
.brands-row img:hover { opacity: 1; filter: grayscale(0) brightness(1); transform: scale(1.08); }
.brands-block + .brands-block { margin-top: 46px; }
.brands-title { text-align: center; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; font-size: .74rem; font-weight: 700; margin-bottom: 22px; }

/* Page hero (interiores) */
.page-hero { position: relative; padding: 150px 0 80px; text-align: center; background-size: cover; background-position: center; }
.page-hero::before { content:''; position:absolute; inset:0; background: linear-gradient(180deg, rgba(7,7,7,.7), rgba(7,7,7,.92)); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero .kicker { justify-content: center; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }

.crumb { padding: 18px 0; font-size: .82rem; color: var(--gray); border-bottom: 1px solid var(--line); }
.crumb a:hover { color: var(--gold); }

/* ── About / Quiénes somos ───────────────────────────────── */
.about-hero {
    position: relative; min-height: min(820px, 92svh); display: flex; align-items: center;
    overflow: hidden; isolation: isolate; background: #080809;
}
.about-hero::before {
    content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
    background: radial-gradient(circle at 74% 48%, rgba(216,31,39,.16), transparent 30%),
        linear-gradient(120deg, #080809 0%, #080809 44%, #14090a 100%);
}
.about-hero-grid {
    display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: center;
    width: 100%; padding-top: 106px; padding-bottom: 72px;
}
.about-hero-copy { max-width: 560px; }
.about-eyebrow {
    color: var(--gray-light); font-size: .76rem; letter-spacing: 3px;
    text-transform: uppercase; margin: 22px 0 12px;
}
.about-hero h1 { font-size: clamp(4.7rem, 8.2vw, 8rem); text-transform: uppercase; color: var(--white); }
.about-hero h1 span { color: var(--gold-light); }
.about-hero-lead { max-width: 500px; color: var(--gray-light); font-size: 1.06rem; margin: 24px 0 24px; }
.about-hero .text-link { margin-top: 8px; }
.about-hero-visual {
    position: relative; aspect-ratio: 16 / 10; min-height: 390px; background: var(--black-3);
    border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); isolation: isolate;
    box-shadow: 0 30px 70px rgba(0,0,0,.4);
}
.about-hero-visual::before {
    content: ''; position: absolute; inset: 18px -18px -18px 18px; z-index: -1;
    border: 1px solid rgba(216,31,39,.75); border-radius: var(--radius);
}
.about-hero-visual::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
    background: linear-gradient(180deg, transparent 55%, rgba(7,7,7,.52) 100%);
}
.about-hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: inherit; }
.about-hero-stamp {
    position: absolute; z-index: 2; left: -34px; bottom: -34px; width: 142px; height: 142px;
    display: flex; flex-direction: column; justify-content: center; gap: 5px; padding: 18px;
    background: var(--gold); color: var(--black); border-radius: 50%; transform: rotate(-9deg);
    box-shadow: 0 14px 30px rgba(0,0,0,.4); font-size: .62rem; line-height: 1.2;
    letter-spacing: 1px; text-transform: uppercase;
}
.about-hero-stamp strong { font-size: .92rem; }
.stamp-mark { font-family: 'Bebas Neue'; font-size: 2.3rem; line-height: .8; letter-spacing: 1px; }
.about-hero-caption {
    position: absolute; z-index: 2; right: 22px; bottom: 18px; color: rgba(255,255,255,.72);
    font-size: .65rem; letter-spacing: 2px; text-transform: uppercase;
}
.about-manifesto { text-align: center; background: var(--black); }
.manifesto-line { width: 2px; height: 62px; background: var(--gold); margin: 0 auto 28px; }
.manifesto-kicker { color: var(--gold-light); font-size: .74rem; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; }
.about-manifesto h2 { font-size: clamp(3.2rem, 7vw, 6rem); margin: 20px 0 22px; }
.about-manifesto h2 span { color: var(--gold-light); }
.manifesto-copy { max-width: 570px; margin: 0 auto; color: var(--gray-light); font-size: 1.02rem; }
.about-story { background: #0b0b0d; }
.about-story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; align-items: center; }
.about-story-media { position: relative; aspect-ratio: 16 / 10; min-height: 360px; }
.about-story-media::after { content: ''; position: absolute; inset: 14px -14px -14px 14px; z-index: -1; border: 1px solid var(--gold); border-radius: var(--radius); }
.about-story-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }
.image-index { position: absolute; left: 20px; bottom: 18px; color: var(--white); font-family: 'Bebas Neue'; font-size: 1.3rem; letter-spacing: 2px; text-shadow: 0 2px 12px #000; }
.image-index span { color: var(--gold-light); padding: 0 5px; }
.about-story-copy { max-width: 560px; }
.about-story-copy h2 { font-size: clamp(2.7rem, 5vw, 4.3rem); margin: 16px 0 22px; }
.about-story-copy p { color: var(--gray-light); margin-bottom: 18px; }
.about-signature { display: flex; align-items: center; gap: 12px; margin-top: 30px; color: var(--gold-light); font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; }
.signature-line { width: 42px; height: 1px; background: var(--gold); }
.about-pillars { background: var(--black-2); }
.about-pillars .section-head { max-width: 650px; }
.about-pillars .section-head p { margin-left: 0; }
.about-pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 55px; border: 1px solid var(--line); background: var(--line); }
.about-pillar { position: relative; min-height: 330px; padding: 28px; background: var(--black-2); transition: background .25s ease, transform .25s var(--ease); }
.about-pillar:hover { background: var(--black-3); transform: translateY(-5px); }
.about-pillar-number { color: var(--gold-light); font-family: 'Bebas Neue'; font-size: 1.6rem; }
.about-pillar-icon { color: var(--gold); font-size: 2.8rem; line-height: 1; margin: 52px 0 28px; }
.about-pillar h3 { font-size: 2.4rem; margin-bottom: 10px; }
.about-pillar p { max-width: 290px; color: var(--gray); font-size: .88rem; }
.about-objective { overflow: hidden; }
.about-objective-grid { display: grid; grid-template-columns: .84fr 1.16fr; gap: 88px; align-items: center; }
.about-objective-copy { max-width: 530px; }
.about-objective-copy h2 { font-size: clamp(3rem, 6vw, 5.4rem); margin: 18px 0 22px; }
.about-objective-copy p { color: var(--gray-light); margin-bottom: 28px; }
.about-objective-media { position: relative; aspect-ratio: 4 / 3; }
.about-objective-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: var(--radius); }
.objective-quote { position: absolute; right: -24px; bottom: -22px; max-width: 220px; padding: 16px 20px; background: var(--black); color: var(--gold-light); border-left: 3px solid var(--gold); font-family: 'Bebas Neue'; font-size: 1.5rem; letter-spacing: 1px; line-height: 1.05; }
.about-community { background: var(--black); }
.about-gallery { display: grid; grid-template-columns: 7fr 5fr; grid-template-rows: 230px 170px; gap: 14px; }
.about-gallery figure { margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--black-3); }
.about-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.about-gallery figure:hover img { transform: scale(1.04); }
.about-gallery-main { grid-row: 1 / span 2; }
.about-gallery-side img { object-position: center 42%; }
.about-gallery-note { grid-column: 2; display: flex; flex-direction: column; justify-content: center; padding: 22px 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--black-2); }
.about-gallery-note p { color: var(--gray-light); font-size: .92rem; margin-top: 12px; }
.about-cta { background: linear-gradient(90deg, rgba(7,7,7,.95), rgba(7,7,7,.72)), url('/barovero/img/pages/about/4.jpg') center/cover; }
.about-cta h2 { font-size: clamp(3rem, 6vw, 5.2rem); margin: 16px 0 10px; }
.about-cta p { color: var(--gray-light); margin: 0 auto 28px; }

/* Staff */
.staff-card { text-align: center; }
.staff-card .avatar {
    width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 16px;
    background: var(--black-3); border: 3px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue'; font-size: 2.8rem; color: var(--gold); overflow: hidden;
    transition: transform .2s ease;
}
.staff-card:hover .avatar { transform: translateY(-5px); }
.staff-card .avatar img { width: 100%; height: 100%; object-fit: cover; }
.staff-card .role { color: var(--gold); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; }
.staff-card .sname { font-size: 1.35rem; margin-top: 4px; }

/* Media grid — imágenes/infografías reales de la página, SIN recortar */
.media-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.media-grid.solo { grid-template-columns: 1fr; max-width: 900px; margin: 0 auto; }
.media-grid img { width: 100%; height: auto; border-radius: 10px; display: block; border: 1px solid var(--line); background: var(--black-3); }
.gallery-grid { grid-template-columns: repeat(12, 1fr); grid-auto-rows: 150px; gap: 14px; }
.gallery-grid img { height: 100%; object-fit: cover; border-radius: 10px; }
.gallery-grid img:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.gallery-grid img:nth-child(2) { grid-column: span 4; grid-row: span 2; }
.gallery-grid img:nth-child(3) { grid-column: span 3; }
.gallery-grid img:nth-child(4) { grid-column: span 3; }
.gallery-grid img:nth-child(n+5) { grid-column: span 3; }

/* Galería */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery img { height: 220px; width: 100%; object-fit: cover; border-radius: 10px; transition: transform .25s ease, filter .25s ease; filter: grayscale(.25); }
.gallery img:hover { transform: scale(1.04); filter: grayscale(0); }

/* Historia — galería editorial con ampliación */
.history-gallery { background: #050505; border: 1px solid rgba(255,255,255,.08); border-radius: 18px; display: grid; grid-auto-flow: dense; grid-auto-rows: 150px; grid-template-columns: repeat(12, 1fr); gap: 10px; padding: 10px; }
.history-gallery-item { background: #0a0a0a; border: 1px solid rgba(255,255,255,.08); border-radius: 11px; cursor: zoom-in; display: block; grid-column: span 3; grid-row: span 2; min-height: 0; overflow: hidden; padding: 0; position: relative; }
.history-gallery-item:nth-child(1), .history-gallery-item:nth-child(2), .history-gallery-item:nth-child(3) { grid-column: span 4; grid-row: span 3; }
.history-gallery-item:nth-child(4), .history-gallery-item:nth-child(5), .history-gallery-item:nth-child(6), .history-gallery-item:nth-child(7) { grid-column: span 3; grid-row: span 2; }
.history-gallery-item img { border-radius: 0; display: block; filter: grayscale(.22) saturate(.9); height: 100%; object-fit: cover; transition: filter .35s ease, transform .55s var(--ease); width: 100%; }
.history-gallery-item:hover { border-color: rgba(229,42,50,.8); box-shadow: 0 12px 28px rgba(0,0,0,.35); }
.history-gallery-item:hover img { filter: grayscale(0) saturate(1.08); transform: scale(1.045); }
.history-gallery-zoom { align-items: center; background: rgba(7,7,7,.82); border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; display: flex; font-size: 1rem; height: 30px; justify-content: center; opacity: 0; position: absolute; right: 12px; top: 12px; transform: translateY(5px); transition: opacity .25s ease, transform .25s ease; width: 30px; }
.history-gallery-item:hover .history-gallery-zoom, .history-gallery-item:focus-visible .history-gallery-zoom { opacity: 1; transform: translateY(0); }
.history-gallery-item:focus-visible { outline: 2px solid #e52a32; outline-offset: 3px; }
.history-lightbox { align-items: center; background: rgba(0,0,0,.94); display: flex; inset: 0; justify-content: center; opacity: 0; padding: 30px; pointer-events: none; position: fixed; transition: opacity .25s ease; z-index: 2000; }
.history-lightbox.is-open { opacity: 1; pointer-events: auto; }
.history-lightbox img { border: 1px solid rgba(255,255,255,.18); border-radius: 10px; max-height: calc(100vh - 80px); max-width: min(1100px, 92vw); object-fit: contain; }
.history-lightbox-close { background: #e52a32; border: 0; border-radius: 50%; color: #fff; cursor: pointer; font-size: 1.5rem; height: 42px; line-height: 1; position: absolute; right: 24px; top: 24px; width: 42px; }
body.lightbox-open { overflow: hidden; }
@media (max-width: 800px) {
    .history-gallery { grid-auto-rows: 130px; grid-template-columns: repeat(6, 1fr); }
    .history-gallery-item, .history-gallery-item:nth-child(n) { grid-column: span 2; grid-row: span 2; }
    .history-gallery-item:nth-child(1), .history-gallery-item:nth-child(2), .history-gallery-item:nth-child(3) { grid-column: span 3; grid-row: span 3; }
}
@media (max-width: 480px) {
    .history-gallery { grid-auto-rows: 145px; grid-template-columns: repeat(2, 1fr); padding: 7px; }
    .history-gallery-item, .history-gallery-item:nth-child(n), .history-gallery-item:nth-child(1), .history-gallery-item:nth-child(2), .history-gallery-item:nth-child(3) { grid-column: span 1; grid-row: span 1; }
    .history-gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .history-lightbox { padding: 15px; }
    .history-lightbox-close { right: 14px; top: 14px; }
}

/* Trayectoria — las miniaturas ya contienen escudo y nombre del club */
.club-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 24px; margin: 8px 0 46px; }
.club-card { background: #000; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; overflow: hidden; padding: 10px; text-align: center; transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease; }
.club-card:hover { border-color: rgba(229,42,50,.9); box-shadow: 0 18px 42px rgba(229,42,50,.18); transform: translateY(-8px); }
.club-card .club-photo-wrap { position: relative; height: 330px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: #000; }
.club-card .club-photo { height: 100%; max-width: 100%; width: auto; object-fit: contain; filter: saturate(.9) drop-shadow(0 16px 18px rgba(0,0,0,.6)); transition: filter .28s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.club-card:hover .club-photo { filter: saturate(1.12) drop-shadow(0 18px 22px rgba(229,42,50,.25)); transform: scale(1.045); }
.trophy-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 20px 0 48px; }
.trophy-card { aspect-ratio: 2 / 3; background: #000; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; margin: 0; overflow: hidden; padding: 8px; transition: border-color .28s ease, box-shadow .28s ease, transform .28s ease; }
.trophy-card:hover { border-color: rgba(229,42,50,.9); box-shadow: 0 18px 42px rgba(229,42,50,.18); transform: translateY(-8px); }
.trophy-card img { display: block; height: 100%; object-fit: cover; width: 100%; transition: filter .28s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.trophy-card:hover img { filter: saturate(1.12); transform: scale(1.035); }
.technical-profile { background: #000; border: 1px solid rgba(255,255,255,.1); border-radius: 14px; margin: 28px 0 54px; overflow: hidden; }
.technical-profile-title { color: #fff; font-family: 'Bebas Neue', 'Poppins', sans-serif; font-size: clamp(1.55rem, 3.6vw, 2.75rem); letter-spacing: .05em; line-height: .92; max-width: 310px; position: absolute; right: 6%; text-align: left; text-transform: uppercase; top: 50%; transform: translateY(-50%); z-index: 2; }
.technical-profile-stage { background-color: #220000; background-position: center; background-repeat: no-repeat; background-size: cover; min-height: 560px; overflow: hidden; position: relative; }
.technical-profile-stage::before { background: linear-gradient(0deg, rgba(0,0,0,.5), transparent 38%), linear-gradient(90deg, transparent 42%, rgba(0,0,0,.16) 76%, rgba(0,0,0,.35)); content: ''; inset: 0; position: absolute; }
.technical-profile-caption { bottom: 28px; color: #fff; left: auto; position: absolute; right: 7%; text-align: left; width: 300px; z-index: 2; }
.technical-profile-caption span { display: block; font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.15rem, 2.5vw, 1.75rem); letter-spacing: .04em; line-height: 1.05; text-transform: uppercase; }
.technical-profile-caption strong { color: #e52a32; display: block; font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: .06em; line-height: 1; margin-top: 4px; text-transform: uppercase; }
@media (max-width: 860px) { .club-track { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) {
    .club-track, .trophy-track { grid-template-columns: 1fr; }
    .club-card .club-photo-wrap { height: 360px; }
    .technical-profile-stage { min-height: 520px; }
    .technical-profile-stage { background-position: 44% center; }
    .technical-profile-title { left: 20px; max-width: 270px; right: auto; text-align: left; top: 30px; transform: none; }
    .technical-profile-caption { bottom: 20px; left: 20px; right: auto; width: auto; }
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer { background: var(--black-2); border-top: 2px solid var(--gold); padding: 66px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
.footer-grid h4 { color: var(--white); font-family: 'Poppins'; font-weight: 700; font-size: .82rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid a, .footer-grid p { color: var(--gray); font-size: .9rem; margin-bottom: 9px; }
.footer-grid a { display: inline-block; transition: color .15s; }
.footer-grid a:hover { color: var(--gold); }
.footer-brand img { height: 66px; margin-bottom: 16px; }
.socials { display: flex; gap: 12px; margin-top: 16px; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray-light); font-size: .85rem; font-weight: 600; transition: .18s; }
.socials a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-3px); }
.footer-bottom { text-align: center; color: #55555c; font-size: .8rem; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); letter-spacing: 1px; }
.final-cta { background: linear-gradient(90deg, rgba(7,7,7,.96), rgba(7,7,7,.72)), url('/barovero/img/hero-1.jpg') center/cover; }
.final-cta h2 { font-size: clamp(2.8rem, 6vw, 5rem); margin: 16px 0 10px; }
.final-cta p { color: var(--gray-light); max-width: 560px; margin: 0 auto 30px; }

/* ── Animaciones scroll-reveal ────────────────────────────── */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.history-page-body .reveal { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } .hero-slide img { transition: none; } }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1000px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: 0; width: min(340px, 86vw); height: 100vh;
        background: var(--black-2); flex-direction: column; align-items: stretch;
        padding: 100px 16px 30px; gap: 0; overflow-y: auto; transform: translateX(100%);
        transition: transform .3s ease; border-left: 2px solid var(--gold);
        z-index: 2;
    }
    .nav-menu.open { transform: translateX(0); }
    .nav-backdrop { display: block; position: fixed; inset: 0; background: rgba(0,0,0,.6); opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease; z-index: 1; }
    .site-header.menu-open .nav-backdrop { opacity: 1; visibility: visible; }
    .nav-menu > li > a { padding: 15px 12px; border-bottom: 1px solid var(--line); }
    .nav-menu > li > a::after { display: none; }
    .sub-menu { background: rgba(0,0,0,.34); border: 0; border-left: 2px solid var(--gold); border-radius: 0 8px 8px 0; box-shadow: none; min-width: 0; max-height: 0; opacity: 1; overflow: hidden; padding: 0 0 0 8px; transform: none; transition: max-height .25s ease, padding .25s ease; visibility: visible; }
    .nav-menu > li.open .sub-menu { max-height: 900px; padding: 6px 0 12px 8px; }
    .sub-menu li + li { margin-top: 2px; }
    .sub-menu li a { font-size: .86rem; padding: 11px 12px; }
    .sub-menu li a:hover { padding-left: 16px; }
    .site-header { background: rgba(7,7,7,.92); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
    .split, .grid-2, .grid-3, .grid-4, .stats { grid-template-columns: 1fr; }
    .intro-grid { grid-template-columns: 1fr; gap: 24px; }
    .pillar-grid { margin-top: 48px; }
    .hero-slides { inset: 0 0 0 28%; }
    .hero-vignette { background: linear-gradient(90deg, #070707 0%, #070707 20%, rgba(7,7,7,.98) 34%, rgba(7,7,7,.62) 52%, rgba(7,7,7,.08) 78%, transparent 100%), linear-gradient(0deg, rgba(7,7,7,.9), transparent 40%); }
    .hero-copy { max-width: 620px; }
    .split .media::after { display: none; }
    .gallery { grid-template-columns: repeat(2, 1fr); }
    .media-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 34px; }
    .section { padding: 70px 0; }
    .brands-row { gap: 30px; }
    .match-card { grid-template-columns: 1fr; gap: 12px; text-align: center; padding: 20px; }
    .match-team, .match-team.home { justify-content: center; text-align: center; flex-direction: column; gap: 8px; }
    .match-center { order: -1; }
    .match-tabs { flex-wrap: wrap; }
}

@media (max-width: 680px) {
    .container { padding-left: 20px; padding-right: 20px; }
    .brand-txt .tag { letter-spacing: 2px; }
    .brand-txt .name { font-size: 1.35rem; }
    .brand img { height: 50px; }
    .hero { min-height: 780px; align-items: flex-end; }
    .hero-slides { inset: 0 0 auto; height: 48%; }
    .hero-slides { -webkit-mask-image: none; mask-image: none; }
    .hero-slide img { object-fit: contain; }
    .hero-vignette { background: linear-gradient(180deg, rgba(7,7,7,.08) 0%, rgba(7,7,7,.1) 22%, rgba(7,7,7,.96) 63%, #070707 100%); }
    .hero-copy { padding: 250px 0 108px; }
    .hero-eyebrow { font-size: .68rem; letter-spacing: 2px; margin: 15px 0 8px; }
    .hero h1 { font-size: clamp(4rem, 19vw, 6rem); }
    .hero .sub { letter-spacing: 4px; font-size: .76rem; }
    .hero .lead { font-size: .9rem; margin: 18px 0 22px; }
    .hero-proof { gap: 12px; margin-top: 24px; font-size: .62rem; }
    .hero-proof span + span { padding-left: 12px; }
    .hero-controls { left: 20px; right: auto; bottom: 38px; }
    .scroll-cue { display: none; }
    .section { padding: 72px 0; }
    .section-head { margin-bottom: 38px; }
    .section-head h2 { font-size: clamp(2.4rem, 13vw, 3.8rem); }
    .section-head-left h2 { max-width: 100%; }
    .pillar-grid { grid-template-columns: 1fr; margin-top: 38px; }
    .pillar { min-height: 0; padding: 24px; }
    .feature { min-height: 360px; }
    .feature .fc { padding: 24px; }
    .founder-section .split { gap: 42px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
    .gallery-grid img:nth-child(n) { grid-column: span 1; grid-row: span 1; }
    .gallery-grid img:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-grid img:nth-child(2) { grid-column: span 2; }
    .final-cta h2 { font-size: clamp(2.7rem, 13vw, 4.4rem); }
}

@media (max-width: 1000px) {
    .about-hero-grid { grid-template-columns: .9fr 1.1fr; gap: 42px; }
    .about-hero h1 { font-size: clamp(4rem, 8vw, 6.5rem); }
    .about-story-grid, .about-objective-grid { gap: 52px; }
}

@media (max-width: 760px) {
    .about-hero { min-height: auto; }
    .about-hero-grid { grid-template-columns: 1fr; gap: 50px; padding-top: 150px; padding-bottom: 95px; }
    .about-hero-copy { max-width: 620px; }
    .about-hero h1 { font-size: clamp(4.4rem, 18vw, 7rem); }
    .about-hero-visual { min-height: 0; width: calc(100% - 18px); margin-left: 18px; }
    .about-hero-stamp { left: -24px; bottom: -28px; width: 120px; height: 120px; }
    .stamp-mark { font-size: 2rem; }
    .about-manifesto h2 { font-size: clamp(3rem, 14vw, 5.2rem); }
    .about-story-grid, .about-objective-grid { grid-template-columns: 1fr; }
    .about-story-media { min-height: 0; width: calc(100% - 14px); }
    .about-story-copy { max-width: none; }
    .about-pillar-grid { grid-template-columns: 1fr; }
    .about-pillar { min-height: 250px; }
    .about-pillar-icon { margin: 30px 0 18px; }
    .about-gallery { grid-template-columns: 1fr; grid-template-rows: 260px 170px auto; }
    .about-gallery-main { grid-row: auto; }
    .about-gallery-note { grid-column: auto; }
    .objective-quote { right: 14px; }
}

@media (max-width: 480px) {
    .about-hero-grid { padding-top: 132px; }
    .about-hero h1 { font-size: clamp(3.9rem, 18vw, 5.6rem); }
    .about-hero-lead { font-size: .94rem; }
    .about-hero-caption { right: 12px; bottom: 12px; font-size: .56rem; letter-spacing: 1.4px; }
    .about-hero-stamp { left: -16px; bottom: -22px; width: 100px; height: 100px; padding: 13px; font-size: .52rem; }
    .stamp-mark { font-size: 1.7rem; }
    .about-objective-copy h2 { font-size: 3.3rem; }
}
