:root{
  --ink:#1B1B1B;
  --paper:#F5F6F2;
  --paper-line: rgba(27,27,27,0.06);
  --blue:#4FA9DE;
  --blue-deep:#1E5A7D;
  --red:#D0342C;
  --gold:#F2B705;
  --white:#FFFFFF;
  --muted:#5B6068;
  --radius:2px;
  --maxw:1180px;
}
*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:'Source Sans 3', sans-serif;
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3,h4{
  font-family:'Oswald', sans-serif;
  text-transform:uppercase;
  letter-spacing:0.02em;
  margin:0;
  color:var(--ink);
}
.mono{font-family:'IBM Plex Mono', monospace;}
a{color:inherit;}
img{max-width:100%;display:block;}
.wrap{max-width:var(--maxw); margin:0 auto; padding:0 28px;}
.stripe{
  height:10px;
  width:100%;
  background: linear-gradient(120deg,
    var(--blue) 0 22%,
    var(--ink) 22% 44%,
    var(--red) 44% 66%,
    var(--gold) 66% 100%);
}
.grid-bg{
  background-image:
    linear-gradient(var(--paper-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--paper-line) 1px, transparent 1px);
  background-size: 34px 34px;
}

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(245,246,242,0.92);
  backdrop-filter:blur(6px);
  border-bottom:1px solid rgba(27,27,27,0.1);
}
.navbar{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 28px;
  max-width:var(--maxw); margin:0 auto;
  gap:20px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none;}
.brand-badge{
  width:44px; height:44px; border-radius:50%;
  background:var(--white);
  box-shadow:0 1px 4px rgba(0,0,0,0.18);
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  flex-shrink:0;
}
.brand-badge img{width:38px; height:38px; object-fit:contain;}
.brand-name{font-family:'Oswald',sans-serif; font-weight:600; font-size:15px; letter-spacing:0.03em; line-height:1.15;}
.brand-name small{display:block; font-family:'Source Sans 3',sans-serif; text-transform:none; font-weight:400; font-size:11px; color:var(--muted); letter-spacing:0;}

nav.links{display:flex; gap:22px; align-items:center; flex-shrink:0;}
nav.links a{
  text-decoration:none; font-size:12.8px; font-weight:600; white-space:nowrap;
  text-transform:uppercase; letter-spacing:0.03em; color:var(--ink);
  padding:6px 2px; border-bottom:2px solid transparent;
  transition:border-color .15s ease, color .15s ease;
}
nav.links a:hover{border-color:var(--blue);}
nav.links a.active{border-color:var(--red); color:var(--red);}

.lang-switch{display:flex; gap:4px; font-family:'IBM Plex Mono',monospace; font-size:12px;}
.lang-switch button{
  background:none; border:1px solid rgba(27,27,27,0.25); color:var(--ink);
  padding:4px 8px; cursor:pointer; border-radius:var(--radius);
  font-family:inherit; font-size:inherit;
}
.lang-switch button.active{background:var(--ink); color:var(--white); border-color:var(--ink);}
.navbar .menu-toggle{display:none;}

/* ---------- HERO ---------- */
.hero{position:relative; padding:92px 0 0 0; overflow:hidden;}
.hero-inner{
  max-width:var(--maxw); margin:0 auto; padding:0 28px 64px;
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:48px; align-items:center;
}
.eyebrow{
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; letter-spacing:0.08em;
  color:var(--blue-deep); text-transform:uppercase; margin-bottom:18px; display:block;
}
.hero h1{font-size:clamp(34px, 4.6vw, 58px); line-height:1.04; font-weight:700; max-width:14ch;}
.hero h1 em{font-style:normal; color:var(--blue-deep);}
.hero p.lead{margin-top:22px; max-width:52ch; color:var(--muted); font-size:17px;}
.cta-row{display:flex; gap:14px; margin-top:32px; flex-wrap:wrap;}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:13px 24px; border-radius:var(--radius);
  font-family:'Oswald',sans-serif; text-transform:uppercase; letter-spacing:0.04em;
  font-size:13.5px; font-weight:600; text-decoration:none; cursor:pointer; border:2px solid var(--ink);
}
.btn-primary{background:var(--ink); color:var(--white);}
.btn-primary:hover{background:var(--blue-deep); border-color:var(--blue-deep);}
.btn-ghost{background:transparent; color:var(--ink);}
.btn-ghost:hover{background:var(--ink); color:var(--white);}

.hero-crest{position:relative; display:flex; align-items:center; justify-content:center;}
.crest-plate{
  width:min(320px, 80%); aspect-ratio:1/1; border-radius:50%; background:var(--white);
  box-shadow:0 10px 34px rgba(20,40,60,0.18);
  display:flex; align-items:center; justify-content:center; position:relative;
}
.crest-plate img{width:72%; height:72%; object-fit:contain;}
.crest-ring{position:absolute; inset:-16px; border-radius:50%; border:2px dashed rgba(27,27,27,0.18);}
.gear-orbit{position:absolute; inset:-46px; border-radius:50%; animation: spin 60s linear infinite;}
@media (prefers-reduced-motion: reduce){ .gear-orbit{animation:none;} }
@keyframes spin{ to{ transform:rotate(360deg);} }

/* ---------- PAGE HEADER (non-home pages) ---------- */
.page-header{
  padding:56px 0 40px; position:relative; overflow:hidden;
}
.page-header .wrap{position:relative; z-index:1;}
.page-header h1{font-size:clamp(28px,4vw,44px);}
.page-header .eyebrow{margin-bottom:14px;}

/* ---------- SECTION SHELLS ---------- */
section{padding:76px 0;}
.section-head{max-width:640px; margin-bottom:44px;}
.section-eyebrow{
  font-family:'IBM Plex Mono',monospace; font-size:12px; letter-spacing:0.08em;
  color:var(--red); text-transform:uppercase; display:block; margin-bottom:10px;
}
.section-head h2{font-size:clamp(26px,3vw,36px);}
.section-head p{color:var(--muted); margin-top:14px; font-size:15.5px;}
.alt{background:var(--white);}

/* ---------- HOME HIGHLIGHTS ---------- */
.highlights{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:10px;}
.highlight-card{
  background:var(--white); border:1px solid rgba(27,27,27,0.1); padding:24px 20px;
  text-decoration:none; color:var(--ink); border-radius:var(--radius); position:relative;
  transition:transform .15s ease, box-shadow .15s ease;
}
.highlight-card:hover{transform:translateY(-3px); box-shadow:0 10px 24px rgba(20,40,60,0.1);}
.highlight-card::before{content:""; position:absolute; top:0; left:0; width:100%; height:3px; background:var(--blue);}
.highlight-card:nth-child(2)::before{background:var(--ink);}
.highlight-card:nth-child(3)::before{background:var(--red);}
.highlight-card:nth-child(4)::before{background:var(--gold);}
.highlight-card h3{font-size:14.5px; margin-bottom:8px;}
.highlight-card p{font-size:13.2px; color:var(--muted); margin:0;}
.highlight-card .go{font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--blue-deep); margin-top:14px; display:block;}

/* ---------- SOBRE NOSOTROS ---------- */
.mission-text p{margin:0 0 16px; max-width:74ch; color:#2B2E33; font-size:16px;}
.mission-text strong{color:var(--blue-deep);}
.tagline-block{
  margin-top:30px; padding:20px 24px; border-left:4px solid var(--gold);
  background:var(--paper); font-family:'Oswald',sans-serif; text-transform:uppercase;
  font-size:15px; letter-spacing:0.02em; font-weight:600;
}
.pillars{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:48px;}
.pillar-card{background:var(--paper); border:1px solid rgba(27,27,27,0.1); padding:26px 20px; border-radius:var(--radius); position:relative;}
.pillar-card::before{content:""; position:absolute; top:0; left:0; width:100%; height:3px; background:var(--blue);}
.pillar-card:nth-child(2)::before{background:var(--ink);}
.pillar-card:nth-child(3)::before{background:var(--red);}
.pillar-card:nth-child(4)::before{background:var(--gold);}
.pillar-icon{width:34px; height:34px; margin-bottom:16px;}
.pillar-card h3{font-size:14.5px; letter-spacing:0.02em; margin-bottom:10px;}
.pillar-card p{font-size:13.8px; color:var(--muted); margin:0;}

/* ---------- LEGADO / HISTORIA ---------- */
.legado-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:start;}
.legado-figure{background:var(--blue-deep); color:var(--white); padding:34px 28px; border-radius:var(--radius); position:relative; overflow:hidden;}
.legado-figure::after{content:""; position:absolute; right:-40px; bottom:-40px; width:160px; height:160px; border:2px solid rgba(255,255,255,0.18); border-radius:50%;}
.legado-figure .mono{color:var(--gold); font-size:12px; letter-spacing:0.08em; text-transform:uppercase;}
.legado-figure h3{color:var(--white); font-size:22px; margin-top:10px;}
.legado-figure p{color:rgba(255,255,255,0.85); font-size:14.5px; margin-top:14px;}
.placeholder-tag{display:inline-block; margin-top:16px; font-family:'IBM Plex Mono',monospace; font-size:11px; background:rgba(255,255,255,0.14); padding:4px 8px; border-radius:2px; color:var(--gold);}
.legado-text p{color:#2B2E33; font-size:15.5px; margin:0 0 16px; max-width:62ch;}

/* ---------- JUNTA DIRECTIVA ---------- */
.board-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:18px; margin-top:44px;}
.board-card{text-align:center;}
.board-avatar{
  width:100%; aspect-ratio:1/1; border-radius:50%; background:var(--paper);
  border:2px solid rgba(27,27,27,0.12); display:flex; align-items:center; justify-content:center;
  margin-bottom:14px; color:var(--muted); font-family:'Oswald',sans-serif; font-size:13px;
}
.board-card h4{font-size:14px; letter-spacing:0.01em;}
.board-card .role{font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--blue-deep); margin-top:4px; text-transform:uppercase;}

/* ---------- EXALUMNOS ---------- */
.alumni-wrap{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start;}
.alumni-copy p{color:#2B2E33; font-size:15.5px; max-width:52ch;}
.stat-row{display:flex; gap:26px; margin-top:30px; flex-wrap:wrap;}
.stat{border-left:3px solid var(--blue); padding-left:14px;}
.stat .num{font-family:'Oswald',sans-serif; font-size:30px; font-weight:700; color:var(--ink);}
.stat .label{font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--muted); text-transform:uppercase;}
form.alumni-form{background:var(--paper); border:1px solid rgba(27,27,27,0.12); padding:30px; border-radius:var(--radius);}
.field{margin-bottom:18px;}
.field label{display:block; font-family:'IBM Plex Mono',monospace; font-size:11.5px; text-transform:uppercase; letter-spacing:0.05em; color:var(--blue-deep); margin-bottom:6px;}
.field input, .field select, .field textarea{
  width:100%; padding:11px 12px; border:1px solid rgba(27,27,27,0.25);
  background:var(--white); font-family:'Source Sans 3',sans-serif; font-size:14.5px; border-radius:var(--radius);
}
.field textarea{resize:vertical; min-height:80px;}
.form-note{font-size:12.5px; color:var(--muted); margin-top:4px;}

/* ---------- NOTICIAS ---------- */
.news-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin-top:44px;}
.news-card{background:var(--paper); border:1px solid rgba(27,27,27,0.1);}
.news-media{aspect-ratio:16/10; background:linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%); position:relative;}
.news-media span{position:absolute; bottom:10px; left:12px; font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--white); background:rgba(0,0,0,0.35); padding:3px 8px; border-radius:2px;}
.news-body{padding:20px;}
.news-body .date{font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--red); text-transform:uppercase;}
.news-body h4{font-size:15px; margin-top:8px; text-transform:none; font-family:'Oswald',sans-serif; letter-spacing:0;}
.news-body p{font-size:13.8px; color:var(--muted); margin-top:8px;}

/* ---------- CONTACTO ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:56px;}
.contact-list{list-style:none; padding:0; margin:0 0 26px;}
.contact-list li{display:flex; gap:14px; padding:14px 0; border-bottom:1px solid rgba(27,27,27,0.1); font-size:14.5px;}
.contact-list li .k{font-family:'IBM Plex Mono',monospace; font-size:11px; text-transform:uppercase; color:var(--blue-deep); min-width:110px;}
.social-row{display:flex; gap:12px; margin-top:20px;}
.social-row a{width:38px; height:38px; border:1px solid rgba(27,27,27,0.25); border-radius:50%; display:flex; align-items:center; justify-content:center; text-decoration:none;}
.social-row a:hover{background:var(--ink); color:var(--white); border-color:var(--ink);}

/* ---------- FOOTER SOCIAL (follow us) ---------- */
.footer-social{display:flex; gap:10px; margin-top:18px;}
.footer-social a{
  width:32px; height:32px; border-radius:50%; border:1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.8); text-decoration:none;
}
.footer-social a:hover{background:var(--blue); border-color:var(--blue); color:var(--ink);}

/* ---------- SHARE BAR ---------- */
.share-bar{display:flex; align-items:center; gap:10px; margin-top:22px; flex-wrap:wrap;}
.share-label{font-size:11px; text-transform:uppercase; letter-spacing:0.06em; color:var(--muted); margin-right:2px;}
.share-btn{
  width:32px; height:32px; border-radius:50%; border:1px solid rgba(27,27,27,0.25);
  display:flex; align-items:center; justify-content:center; text-decoration:none; color:var(--ink);
  background:transparent; cursor:pointer; padding:0; position:relative;
}
.share-btn:hover{background:var(--ink); color:var(--white); border-color:var(--ink);}
.share-btn .copy-label{
  position:absolute; bottom:120%; left:50%; transform:translateX(-50%);
  background:var(--ink); color:var(--white); font-size:10.5px; padding:3px 7px; border-radius:2px;
  white-space:nowrap; opacity:0; pointer-events:none; transition:opacity .15s;
}
.share-btn .copy-label.show{opacity:1;}
.hero .share-bar{margin-top:26px;}
.hero .share-btn{border-color:rgba(27,27,27,0.22);}

/* ---------- FOOTER ---------- */
footer{background:var(--ink); color:rgba(255,255,255,0.82); padding:52px 0 26px;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px;}
.footer-brand{display:flex; align-items:center; gap:12px; margin-bottom:14px;}
.footer-brand .brand-badge{background:var(--white);}
footer h5{font-family:'IBM Plex Mono',monospace; font-size:11.5px; text-transform:uppercase; letter-spacing:0.06em; color:var(--gold); margin-bottom:14px;}
footer ul{list-style:none; padding:0; margin:0;}
footer li{margin-bottom:9px; font-size:14px;}
footer a{text-decoration:none;}
footer a:hover{color:var(--blue);}
.footer-bottom{
  max-width:var(--maxw); margin:40px auto 0; padding:20px 28px 0;
  border-top:1px solid rgba(255,255,255,0.14);
  display:flex; justify-content:space-between; font-size:12.5px; color:rgba(255,255,255,0.5);
  flex-wrap:wrap; gap:10px;
}

/* ---------- LEGAL CONTENT ---------- */
.legal-content{max-width:74ch;}
.legal-content .updated{font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--muted); display:block; margin-bottom:8px;}
.legal-content .lang-note{font-size:12.5px; color:var(--muted); margin-bottom:34px; padding-bottom:20px; border-bottom:1px solid rgba(27,27,27,0.1);}
.legal-toc{background:var(--white); border:1px solid rgba(27,27,27,0.1); padding:22px 26px; margin-bottom:40px; border-radius:var(--radius);}
.legal-toc h2{margin:0 0 12px; font-size:12.5px; letter-spacing:0.04em; color:var(--blue-deep);}
.legal-toc ol{margin:0; padding-left:20px; font-size:13.8px; color:#2B2E33;}
.legal-toc li{margin-bottom:6px;}
.legal-toc a{color:inherit; text-decoration:none;}
.legal-toc a:hover{color:var(--blue-deep); text-decoration:underline;}
.legal-content h2{font-size:19px; margin-top:42px; margin-bottom:14px; text-transform:none; letter-spacing:0; padding-top:20px; border-top:1px solid rgba(27,27,27,0.1);}
.legal-content section:first-of-type h2{margin-top:0; padding-top:0; border-top:none;}
.legal-content h3{font-size:14.5px; margin-top:22px; margin-bottom:8px; text-transform:none; letter-spacing:0; color:var(--blue-deep);}
.legal-content p{color:#2B2E33; font-size:15px; margin:0 0 14px;}
.legal-content ul, .legal-content ol{color:#2B2E33; font-size:15px; margin:0 0 14px; padding-left:22px;}
.legal-content li{margin-bottom:6px;}
.legal-content strong{color:var(--ink);}
.legal-content table{width:100%; border-collapse:collapse; margin:0 0 20px; font-size:13.5px;}
.legal-content th, .legal-content td{border:1px solid rgba(27,27,27,0.14); padding:10px 12px; text-align:left; vertical-align:top;}
.legal-content th{background:var(--white); font-family:'IBM Plex Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.03em;}
.legal-content .callout{background:var(--white); border-left:3px solid var(--blue); padding:16px 20px; margin:0 0 18px; font-size:14px; color:#2B2E33;}

/* ---------- FOOTER LEGAL ROW ---------- */
.footer-legal{
  max-width:var(--maxw); margin:16px auto 0; padding:0 28px;
  display:flex; gap:20px; flex-wrap:wrap; font-size:12px;
}
.footer-legal a{color:rgba(255,255,255,0.55); text-decoration:none;}
.footer-legal a:hover{color:var(--blue);}
.footer-legal button.link-btn{
  background:none; border:none; padding:0; color:rgba(255,255,255,0.55);
  font-size:12px; font-family:'Source Sans 3',sans-serif; cursor:pointer;
}
.footer-legal button.link-btn:hover{color:var(--blue);}

/* ---------- CONSENT CHECKBOX (forms) ---------- */
.field-check{display:flex; gap:10px; align-items:flex-start; margin-bottom:18px; font-size:12.8px; color:var(--muted); line-height:1.5;}
.field-check input{margin-top:3px; flex-shrink:0;}
.field-check a{color:var(--blue-deep);}

/* ---------- COOKIE CONSENT BANNER ---------- */
#agkCookieBanner{
  position:fixed; left:0; right:0; bottom:0; z-index:200;
  background:var(--ink); color:rgba(255,255,255,0.9);
  padding:20px 28px; box-shadow:0 -6px 24px rgba(0,0,0,0.25);
  transform:translateY(110%); transition:transform .3s ease;
}
#agkCookieBanner.open{transform:translateY(0);}
.cookie-inner{max-width:var(--maxw); margin:0 auto; display:flex; gap:24px; align-items:center; flex-wrap:wrap; justify-content:space-between;}
.cookie-text{flex:1; min-width:260px; font-size:13.3px; line-height:1.55;}
.cookie-text a{color:var(--gold);}
.cookie-actions{display:flex; gap:10px; flex-wrap:wrap;}
.cookie-actions button{font-family:'Source Sans 3',sans-serif; font-weight:600; font-size:12.5px; padding:9px 16px; border-radius:var(--radius); cursor:pointer; border:1px solid transparent;}
.cookie-btn-primary{background:var(--white); color:var(--ink);}
.cookie-btn-primary:hover{background:var(--gold);}
.cookie-btn-line{background:transparent; color:rgba(255,255,255,0.85); border-color:rgba(255,255,255,0.35);}
.cookie-btn-line:hover{border-color:var(--white); color:var(--white);}

/* ---------- COOKIE PREFERENCES MODAL ---------- */
#agkCookieModal{
  position:fixed; inset:0; z-index:210; background:rgba(20,20,20,0.6);
  display:none; align-items:center; justify-content:center; padding:20px;
}
#agkCookieModal.open{display:flex;}
.cookie-modal-box{background:var(--white); max-width:560px; width:100%; max-height:86vh; overflow-y:auto; border-radius:var(--radius); padding:32px;}
.cookie-modal-box h3{font-size:18px; margin-bottom:8px; font-family:'Oswald',sans-serif; text-transform:uppercase;}
.cookie-modal-box > p{color:var(--muted); font-size:13.5px; margin-bottom:22px; line-height:1.55;}
.cookie-cat{border-top:1px solid rgba(27,27,27,0.1); padding:16px 0;}
.cookie-cat-head{display:flex; justify-content:space-between; align-items:center; gap:14px;}
.cookie-cat-head strong{font-size:13.8px;}
.cookie-cat p{font-size:12.6px; color:var(--muted); margin:6px 0 0; line-height:1.5;}
.switch{position:relative; display:inline-block; width:40px; height:22px; flex-shrink:0;}
.switch input{opacity:0; width:0; height:0; position:absolute;}
.switch .slider{position:absolute; inset:0; background:#c7c9c4; border-radius:22px; cursor:pointer; transition:.2s;}
.switch .slider::before{content:""; position:absolute; width:16px; height:16px; left:3px; top:3px; background:var(--white); border-radius:50%; transition:.2s;}
.switch input:checked + .slider{background:var(--blue-deep);}
.switch input:checked + .slider::before{transform:translateX(18px);}
.switch input:disabled + .slider{opacity:0.6; cursor:not-allowed;}
.cookie-modal-actions{display:flex; gap:10px; margin-top:26px; flex-wrap:wrap;}
.cookie-modal-actions button{font-family:'Source Sans 3',sans-serif; font-weight:600; font-size:12.5px; padding:10px 18px; border-radius:var(--radius); cursor:pointer;}
.cookie-modal-close{position:absolute; top:14px; right:14px; background:none; border:none; font-size:20px; cursor:pointer; color:var(--muted); line-height:1;}
.cookie-modal-box{position:relative;}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px){
  .navbar{flex-wrap:wrap;}
  nav.links{
    display:none; width:100%; flex-direction:column; align-items:flex-start;
    gap:0; order:3; margin-top:14px; border-top:1px solid rgba(27,27,27,0.12);
  }
  nav.links.open{display:flex;}
  nav.links a{width:100%; padding:12px 2px; border-bottom:1px solid rgba(27,27,27,0.08);}
  .navbar .menu-toggle{
    display:flex; align-items:center; justify-content:center;
    background:none; border:1px solid var(--ink); padding:8px 10px; border-radius:2px; cursor:pointer; color:var(--ink);
  }
  .hero-inner{grid-template-columns:1fr; text-align:left;}
  .hero-crest{order:-1; margin-bottom:10px;}
  .highlights{grid-template-columns:repeat(2,1fr);}
  .pillars{grid-template-columns:repeat(2,1fr);}
  .legado-grid{grid-template-columns:1fr;}
  .board-grid{grid-template-columns:repeat(2,1fr);}
  .alumni-wrap{grid-template-columns:1fr;}
  .news-grid{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr; gap:28px;}
  .cookie-inner{flex-direction:column; align-items:flex-start;}
  .legal-content table{font-size:12.5px;}
}
:focus-visible{outline:3px solid var(--blue); outline-offset:2px;}
