/* ============================================================
   CTP de Mora — hoja compartida de páginas de especialidad
   Cada página define en :root → --ac (acento), --ac-soft, --ac-2
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:   #090E1A;
  --bg2:  #0C1322;
  --bg3:  #10182B;
  --ink:  #F4F2EC;
  --muted:#8B94A7;
  --gold: #F5B82E;
  --line: rgba(244,242,236,0.08);
  --line2:rgba(244,242,236,0.14);
  --glass:rgba(244,242,236,0.04);
  --max:  1320px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  font-family: 'Satoshi', system-ui, sans-serif;
  background: var(--bg); color: var(--ink);
  line-height: 1.6; overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--ac); color: var(--bg); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ac); border-radius: 4px; }
img { max-width: 100%; display: block; }
a { color: inherit; }
.display { font-family: 'Clash Display', 'Satoshi', sans-serif; }

/* ---- noise + progress + cursor ---- */
.noise {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  pointer-events: none; z-index: 2000; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0); } 10% { transform: translate(-5%,-10%); }
  20% { transform: translate(-15%,5%); } 30% { transform: translate(7%,-25%); }
  40% { transform: translate(-5%,25%); } 50% { transform: translate(-15%,10%); }
  60% { transform: translate(15%,0); } 70% { transform: translate(0,15%); }
  80% { transform: translate(3%,35%); } 90% { transform: translate(-10%,10%); }
}
#progress { position: fixed; top: 0; left: 0; height: 2px; width: 0%; background: linear-gradient(90deg, var(--ac), var(--ac-2)); z-index: 3000; }
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 4000; border-radius: 50%; }
.cursor-dot { width: 6px; height: 6px; background: var(--ac); transform: translate(-50%,-50%); }
.cursor-ring { width: 36px; height: 36px; border: 1px solid color-mix(in srgb, var(--ac) 55%, transparent); transform: translate(-50%,-50%); transition: width .25s ease, height .25s ease, border-color .25s ease, background .25s ease; }
.cursor-ring.hot { width: 64px; height: 64px; background: color-mix(in srgb, var(--ac) 8%, transparent); border-color: var(--ac); }
@media (hover: none), (max-width: 768px) { .cursor-dot, .cursor-ring { display: none; } }

/* ---- nav ---- */
header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background .4s ease, border-color .4s ease; border-bottom: 1px solid transparent; }
header.scrolled { background: rgba(9,14,26,.82); backdrop-filter: blur(18px); border-color: var(--line); }
.nav-inner { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 18px 32px; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand img { width: 46px; height: 46px; object-fit: contain; }
.brand-name { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name strong { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 16px; }
.brand-name span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--ac); }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a { text-decoration: none; color: var(--muted); font-size: 13.5px; font-weight: 500; padding: 9px 15px; border-radius: 99px; transition: color .25s ease, background .25s ease; }
.nav-links > a:hover, .nav-links > a.active { color: var(--ink); background: var(--glass); }
.nav-cta { margin-left: 10px; background: var(--ac); color: var(--bg) !important; font-weight: 700 !important; }
.nav-cta:hover { background: var(--ink) !important; }
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line2); border-radius: 12px; background: transparent; cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.burger span { width: 18px; height: 1.5px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-panel { position: fixed; top: 0; right: 0; bottom: 0; width: min(86vw, 380px); background: var(--bg2); border-left: 1px solid var(--line); z-index: 1500; padding: 110px 36px 36px; display: flex; flex-direction: column; gap: 6px; transform: translateX(100%); transition: transform .5s var(--ease); }
.mobile-panel.open { transform: translateX(0); }
.mobile-panel a { text-decoration: none; color: var(--ink); font-family: 'Clash Display', sans-serif; font-weight: 500; font-size: 24px; padding: 12px 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.mobile-panel a i { font-size: 13px; color: var(--ac); }

/* ---- scaffold ---- */
section { position: relative; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.sec-pad { padding-top: clamp(80px, 10vw, 130px); padding-bottom: clamp(80px, 10vw, 130px); }
.eyebrow { display: flex; align-items: center; gap: 14px; font-size: 11.5px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--ac); margin-bottom: 22px; }
.eyebrow::before { content: ''; width: 44px; height: 1px; background: var(--ac); }
.eyebrow.center { justify-content: center; } .eyebrow.center::after { content: ''; width: 44px; height: 1px; background: var(--ac); }
h2.title { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: clamp(34px, 4.8vw, 62px); line-height: 1.04; letter-spacing: -0.015em; text-wrap: balance; }
h2.title em { font-style: italic; color: var(--ac); }
h2.title .ghost { color: transparent; -webkit-text-stroke: 1.2px rgba(244,242,236,.4); }
.lede { color: var(--muted); font-size: clamp(15px, 1.5vw, 17px); line-height: 1.8; max-width: 62ch; }
.lede strong { color: var(--ink); }
.rv { opacity: 0; transform: translateY(46px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; }
.btn { display: inline-flex; align-items: center; gap: 12px; padding: 16px 32px; border-radius: 99px; font-size: 14.5px; font-weight: 700; text-decoration: none; cursor: pointer; border: none; font-family: inherit; transition: transform .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease; }
.btn-ac { background: var(--ac); color: var(--bg); box-shadow: 0 10px 36px color-mix(in srgb, var(--ac) 30%, transparent); }
.btn-ac:hover { background: var(--ink); transform: translateY(-2px); }
.btn-line { background: transparent; color: var(--ink); border: 1px solid var(--line2); }
.btn-line:hover { border-color: var(--ac); color: var(--ac); transform: translateY(-2px); }

/* ---- breadcrumb ---- */
.breadcrumb { position: relative; z-index: 3; max-width: var(--max); margin: 0 auto; padding: 100px 32px 0; display: flex; align-items: center; gap: 10px; font-size: 12px; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb i { font-size: 8px; opacity: .55; }
.breadcrumb b { color: var(--ac); font-weight: 600; }

/* ---- hero ---- */
.sp-hero { position: relative; min-height: 72dvh; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.sp-hero-bg { position: absolute; inset: 0; }
.sp-hero-bg img { width: 100%; height: 112%; object-fit: cover; opacity: .34; will-change: transform; }
.sp-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(9,14,26,.66) 0%, rgba(9,14,26,.45) 45%, var(--bg) 97%); }
.sp-hero-glow { position: absolute; left: -260px; bottom: -300px; width: 760px; height: 760px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--ac) 18%, transparent) 0%, transparent 62%); pointer-events: none; animation: heroGlow 9s ease-in-out infinite alternate; }
@keyframes heroGlow { from { transform: translate(0,0) scale(1); } to { transform: translate(60px,-40px) scale(1.12); } }
.sp-hero-core { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; width: 100%; padding: 70px 32px 64px; }
.sp-kicker { display: inline-flex; align-items: center; gap: 10px; border: 1px solid color-mix(in srgb, var(--ac) 40%, transparent); border-radius: 99px; padding: 8px 18px; margin-bottom: 28px; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--ac); background: color-mix(in srgb, var(--ac) 8%, transparent); backdrop-filter: blur(8px); }
.sp-h1 { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: clamp(46px, 8vw, 116px); line-height: .96; letter-spacing: -0.02em; }
.sp-h1 .row { display: block; overflow: hidden; }
.sp-h1 .row > span { display: inline-block; transform: translateY(110%); animation: riseUp 1s var(--ease) forwards; }
.sp-h1 .row:nth-child(2) > span { animation-delay: .12s; }
@keyframes riseUp { to { transform: translateY(0); } }
.sp-h1 .ac { color: var(--ac); font-style: italic; font-weight: 700; }
.sp-h1 .ghost { color: transparent; -webkit-text-stroke: 1.5px rgba(244,242,236,.38); }
.sp-lede { margin-top: 26px; max-width: 58ch; font-size: clamp(15px, 1.6vw, 17.5px); color: var(--muted); line-height: 1.75; opacity: 0; animation: fadeIn 1s ease .5s forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.sp-hero-actions { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; opacity: 0; animation: fadeIn 1s ease .7s forwards; }

/* ---- quick stats ---- */
.qstats { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.qstats-grid { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin: 0 auto; }
.qs { padding: clamp(30px, 4vw, 50px) 28px; border-right: 1px solid var(--line); position: relative; }
.qs:last-child { border-right: none; }
.qs::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--ac); transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease); }
.qs:hover::after { transform: scaleX(1); }
.qs .n { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: clamp(30px, 4vw, 54px); line-height: 1; color: var(--ac); font-variant-numeric: tabular-nums; }
.qs .l { margin-top: 10px; font-size: 11.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--muted); }

/* ---- overview ---- */
.ov-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.ov-photos { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ov-photos .ph { border-radius: 20px; overflow: hidden; border: 1px solid var(--line2); position: relative; }
.ov-photos .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.ov-photos .ph:hover img { transform: scale(1.06); }
.ov-photos .ph.big { grid-column: span 2; height: clamp(240px, 30vw, 360px); }
.ov-photos .ph.sm { height: clamp(150px, 18vw, 220px); }
.ov-crest { position: absolute; right: 18px; top: 18px; width: 62px; height: 62px; border-radius: 16px; background: rgba(9,14,26,.78); backdrop-filter: blur(10px); border: 1px solid var(--line2); display: flex; align-items: center; justify-content: center; z-index: 2; }
.ov-crest img { width: 44px; height: 44px; object-fit: contain; }
.ov-copy h2 { margin-bottom: 22px; }
.ov-copy .lede + .lede { margin-top: 16px; }
.ov-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.ov-pills span { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; padding: 11px 18px; border-radius: 99px; color: var(--ac); border: 1px solid color-mix(in srgb, var(--ac) 38%, transparent); background: color-mix(in srgb, var(--ac) 8%, transparent); }

/* ---- curriculum ---- */
.curr { background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%); border-top: 1px solid var(--line); }
.tabs { display: flex; gap: 6px; margin: 44px 0 30px; border: 1px solid var(--line2); border-radius: 99px; padding: 6px; width: max-content; max-width: 100%; overflow-x: auto; }
.tab { padding: 12px 26px; border: none; border-radius: 99px; background: transparent; color: var(--muted); font-family: inherit; font-size: 13.5px; font-weight: 700; letter-spacing: .3px; cursor: pointer; white-space: nowrap; transition: background .3s ease, color .3s ease; }
.tab.active { background: var(--ac); color: var(--bg); }
.tab:hover:not(.active) { color: var(--ink); }
.pane { display: none; }
.pane.active { display: block; animation: paneIn .5s var(--ease); }
@keyframes paneIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.subjects { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 14px; }
.subject { position: relative; border: 1px solid var(--line); border-radius: 18px; padding: 26px; background: var(--glass); overflow: hidden; transition: border-color .35s ease, transform .35s var(--ease); isolation: isolate; }
.subject::before { content: ''; position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .4s ease; background: radial-gradient(320px circle at var(--mx,50%) var(--my,50%), color-mix(in srgb, var(--ac) 10%, transparent), transparent 70%); }
.subject:hover { border-color: color-mix(in srgb, var(--ac) 45%, transparent); transform: translateY(-4px); }
.subject:hover::before { opacity: 1; }
.subject .hrs { position: absolute; top: 18px; right: 18px; font-size: 10.5px; font-weight: 700; letter-spacing: 1px; color: var(--ac); border: 1px solid color-mix(in srgb, var(--ac) 36%, transparent); background: color-mix(in srgb, var(--ac) 9%, transparent); border-radius: 99px; padding: 5px 12px; }
.subject .em { font-size: 26px; margin-bottom: 14px; }
.subject h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 7px; padding-right: 70px; }
.subject p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---- competencies ---- */
.comps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.comp { border: 1px solid var(--line); border-radius: 20px; padding: 30px; background: var(--glass); transition: border-color .35s ease, transform .35s var(--ease); }
.comp:hover { border-color: color-mix(in srgb, var(--ac) 45%, transparent); transform: translateY(-5px); }
.comp .ic { width: 54px; height: 54px; border-radius: 16px; background: color-mix(in srgb, var(--ac) 14%, transparent); border: 1px solid color-mix(in srgb, var(--ac) 36%, transparent); color: var(--ac); display: flex; align-items: center; justify-content: center; font-size: 21px; margin-bottom: 18px; }
.comp h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.comp p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ---- careers ---- */
.careers-sec { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.careers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 44px; }
.career { display: grid; grid-template-columns: 50px 1fr; gap: 18px; border: 1px solid var(--line); border-radius: 18px; padding: 24px; background: var(--glass); transition: border-color .35s ease, transform .35s var(--ease); }
.career:hover { border-color: color-mix(in srgb, var(--ac) 45%, transparent); transform: translateX(6px); }
.career .nb { font-family: 'Clash Display', sans-serif; font-weight: 700; font-size: 22px; color: transparent; -webkit-text-stroke: 1px var(--ac); line-height: 1.3; }
.career h4 { font-size: 15px; font-weight: 700; margin-bottom: 5px; }
.career p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ---- gallery ---- */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 190px; gap: 13px; margin-top: 44px; }
.gal { border-radius: 16px; overflow: hidden; cursor: zoom-in; position: relative; border: 1px solid var(--line); background: var(--bg2); padding: 0; }
.gal img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s ease; }
.gal:hover img { transform: scale(1.08); filter: brightness(1.1); }
.gal::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 12px; bottom: 11px; width: 34px; height: 34px; border-radius: 11px; background: rgba(9,14,26,.7); backdrop-filter: blur(6px); color: var(--ac); font-size: 12px; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s var(--ease); }
.gal:hover::after { opacity: 1; transform: translateY(0); }
.gal.w2 { grid-column: span 2; }
.gal.h2 { grid-row: span 2; }
#lightbox { position: fixed; inset: 0; z-index: 6000; background: rgba(5,8,15,.93); backdrop-filter: blur(14px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s; padding: 5vmin; }
#lightbox.open { opacity: 1; visibility: visible; }
#lightbox img { max-width: 100%; max-height: 100%; border-radius: 14px; box-shadow: 0 40px 120px rgba(0,0,0,.6); }
#lightbox button { position: absolute; border: 1px solid var(--line2); background: rgba(9,14,26,.6); color: var(--ink); cursor: pointer; transition: background .3s, color .3s; }
#lightbox button:hover { background: var(--ac); color: var(--bg); }
#lightbox .lb-close { top: 26px; right: 30px; width: 48px; height: 48px; border-radius: 50%; font-size: 17px; }
#lightbox .lb-prev, #lightbox .lb-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; font-size: 16px; }
#lightbox .lb-prev { left: 26px; } #lightbox .lb-next { right: 26px; }

/* ---- requirements ---- */
.reqs { display: flex; flex-direction: column; gap: 12px; max-width: 700px; margin-top: 44px; }
.req { display: flex; gap: 16px; align-items: flex-start; border: 1px solid var(--line); border-radius: 16px; padding: 19px 24px; background: var(--glass); transition: border-color .35s ease, transform .35s var(--ease); }
.req:hover { border-color: color-mix(in srgb, var(--ac) 42%, transparent); transform: translateX(6px); }
.req i { color: var(--ac); font-size: 16px; margin-top: 3px; flex-shrink: 0; }
.req p { font-size: 14px; color: rgba(244,242,236,.82); line-height: 1.65; }
.req b { color: var(--ink); }

/* ---- CTA ---- */
.cta-sec { border-top: 1px solid color-mix(in srgb, var(--ac) 22%, transparent); border-bottom: 1px solid color-mix(in srgb, var(--ac) 22%, transparent); background: linear-gradient(135deg, color-mix(in srgb, var(--ac) 10%, var(--bg)) 0%, var(--bg) 70%); overflow: hidden; }
.cta-inner { text-align: center; max-width: 720px; margin: 0 auto; position: relative; }
.cta-inner h2 { font-size: clamp(36px, 5.4vw, 66px); }
.cta-inner .lede { margin: 20px auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- other specs ---- */
.others { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.other { position: relative; border-radius: 20px; overflow: hidden; min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; text-decoration: none; color: var(--ink); border: 1px solid var(--line); transition: border-color .35s ease, transform .35s var(--ease); isolation: isolate; }
.other:hover { transform: translateY(-5px); }
.other .bg { position: absolute; inset: 0; z-index: -2; }
.other .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .3; transition: transform 1s var(--ease), opacity .4s ease; }
.other:hover .bg img { transform: scale(1.06); opacity: .42; }
.other .sh { position: absolute; inset: 0; z-index: -1; background: linear-gradient(185deg, rgba(12,19,34,.3), rgba(12,19,34,.94) 80%); }
.other h4 { font-family: 'Clash Display', sans-serif; font-weight: 600; font-size: 19px; margin-bottom: 6px; }
.other p { font-size: 12.5px; color: rgba(244,242,236,.66); line-height: 1.6; margin-bottom: 14px; }
.other .go { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; }
.other .go i { transition: transform .35s var(--ease); }
.other:hover .go i { transform: translateX(6px); }

/* ---- footer ---- */
footer { background: #060A13; border-top: 1px solid var(--line); }
.ft { max-width: var(--max); margin: 0 auto; padding: 40px 32px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-size: 13px; color: var(--muted); }
.ft b { color: var(--ac); font-weight: 600; }
.ft-links { display: flex; gap: 22px; }
.ft-links a { color: var(--muted); text-decoration: none; transition: color .25s; }
.ft-links a:hover { color: var(--ink); }

/* ---- responsive ---- */
@media (max-width: 1080px) {
  .ov-grid { grid-template-columns: 1fr; }
  .comps { grid-template-columns: 1fr 1fr; }
  .careers { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .others { grid-template-columns: 1fr; }
  .qstats-grid { grid-template-columns: 1fr 1fr; }
  .qs:nth-child(2) { border-right: none; }
  .qs:nth-child(1), .qs:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .comps { grid-template-columns: 1fr; }
  .sp-hero { min-height: 64dvh; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; transition-duration: .001s !important; }
  .noise { display: none; }
}
