@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600&display=swap');

:root {
  --bg: #0e1111;
  --bg-2: #151918;
  --paper: #f2efe8;
  --paper-2: #e8e4dc;
  --ink: #171a19;
  --text: #f6f2ea;
  --muted: #aab0ac;
  --muted-dark: #69706c;
  --accent: #f36d2f;
  --accent-dark: #c84d18;
  --line: rgba(255,255,255,.12);
  --line-dark: rgba(22,26,25,.13);
  --radius: 16px;
  --container: 1320px;
  --header-h: 82px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--accent); color: #fff; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 118px 0; position: relative; }
.section-light { background: var(--paper); color: var(--ink); }
.section-dark { background: var(--bg-2); color: var(--text); }
.section-kicker { display: inline-flex; align-items: center; gap: 10px; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 600; color: var(--accent); }
.section-kicker::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.display { margin: 14px 0 0; font-size: clamp(44px, 6vw, 92px); line-height: .98; letter-spacing: -.055em; font-weight: 600; }
h1,h2,h3,h4 { font-weight: 600; }
h2 { margin: 12px 0 0; font-size: clamp(34px, 4.5vw, 64px); line-height: 1.02; letter-spacing: -.045em; }
h3 { font-size: 23px; letter-spacing: -.025em; }
p { margin: 0; }
.lead { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.7; color: var(--muted); }
.section-light .lead { color: var(--muted-dark); }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 11px; color: var(--muted); font-weight: 600; }

.skip-link { position: fixed; z-index: 9999; left: 14px; top: 14px; transform: translateY(-200%); background: white; color: black; padding: 10px 14px; border-radius: 8px; }
.skip-link:focus { transform: none; }

.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; height: var(--header-h); transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s; border-bottom: 1px solid transparent; }
.site-header.is-scrolled { background: rgba(14,17,17,.86); border-bottom-color: var(--line); backdrop-filter: blur(16px); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 600; letter-spacing: .08em; }
.brand-mark { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.22); border-radius: 9px; display: grid; place-items: center; position: relative; overflow: hidden; }
.brand-mark::before { content: ''; width: 14px; height: 18px; border-left: 3px solid var(--accent); border-bottom: 3px solid var(--accent); transform: skewY(-24deg); }
.nav-wrap { display: flex; align-items: center; gap: 30px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; padding: 0; margin: 0; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,.78); transition: color .2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: #fff; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; color: #fff; position: relative; }
.menu-toggle span { position: absolute; left: 9px; width: 26px; height: 1.5px; background: currentColor; transition: .25s var(--ease); }
.menu-toggle span:first-child { top: 17px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

.btn { min-height: 48px; padding: 0 20px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; border: 1px solid transparent; font-size: 13px; font-weight: 600; transition: transform .25s var(--ease), background .25s, border-color .25s; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: #ff7a38; }
.btn-outline { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.03); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-arrow::after { content: '↗'; font-size: 16px; }

.hero { min-height: 100svh; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: -5%; background: url('../img/hero-construction.svg') center/cover no-repeat; transform: scale(1.04); will-change: transform; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,8,8,.88) 0%, rgba(6,8,8,.62) 46%, rgba(6,8,8,.16) 78%), linear-gradient(0deg, rgba(6,8,8,.82) 0%, transparent 45%); }
.hero-content { position: relative; z-index: 2; padding: 170px 0 84px; width: 100%; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(250px,.55fr); gap: 60px; align-items: end; }
.hero h1 { max-width: 900px; }
.hero-copy { max-width: 520px; justify-self: end; }
.hero-copy .lead { color: rgba(255,255,255,.73); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-meta { margin-top: 62px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.58); font-size: 12px; text-transform: uppercase; letter-spacing: .11em; }
.scroll-cue { display: inline-flex; align-items: center; gap: 10px; }
.scroll-cue i { display: block; width: 38px; height: 1px; background: rgba(255,255,255,.55); position: relative; overflow: hidden; }
.scroll-cue i::after { content: ''; position: absolute; inset: 0; background: #fff; transform: translateX(-100%); animation: lineMove 2s infinite var(--ease); }
@keyframes lineMove { 50%,100% { transform: translateX(100%); } }

.intro-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 90px; align-items: start; }
.intro-statement { font-size: clamp(34px,4vw,61px); line-height: 1.08; letter-spacing: -.045em; font-weight: 600; max-width: 850px; }
.intro-side { padding-top: 14px; }
.stat-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.stat { background: var(--paper); padding: 26px; }
.stat strong { display: block; font-size: 31px; line-height: 1; font-weight: 600; margin-bottom: 9px; }
.stat span { font-size: 12px; text-transform: uppercase; letter-spacing: .11em; color: var(--muted-dark); }

.capability-layout { display: grid; grid-template-columns: .62fr 1.38fr; gap: 90px; align-items: start; }
.capability-title { position: sticky; top: 130px; }
.service-list { border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 60px 1fr auto; gap: 26px; padding: 34px 0; border-bottom: 1px solid var(--line); align-items: start; }
.service-no { color: var(--accent); font-size: 12px; padding-top: 7px; }
.service-item h3 { margin: 0 0 8px; font-size: clamp(23px,2vw,31px); }
.service-item p { max-width: 650px; color: var(--muted); }
.service-icon { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: transform .3s var(--ease), background .3s; }
.service-item:hover .service-icon { transform: rotate(45deg); background: var(--accent); border-color: var(--accent); }

.projects-head { display: flex; justify-content: space-between; align-items: end; gap: 28px; margin-bottom: 42px; }
.projects-head p { max-width: 460px; }
.projects-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.project-card { position: relative; min-height: 560px; border-radius: var(--radius); overflow: hidden; grid-column: span 6; transition: transform .25s var(--ease); will-change: transform; }
.project-card:nth-child(3), .project-card:nth-child(4) { min-height: 440px; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.project-card:hover img { transform: scale(1.04); }
.project-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg,rgba(4,6,6,.85),transparent 60%); }
.project-info { position: absolute; z-index: 2; left: 30px; right: 30px; bottom: 26px; display: flex; justify-content: space-between; gap: 20px; align-items: end; }
.project-info h3 { margin: 0 0 4px; }
.project-info p { color: rgba(255,255,255,.62); font-size: 13px; }
.project-index { font-size: 12px; color: var(--accent); }

.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; align-items: stretch; }
.why-visual { border-radius: var(--radius); min-height: 610px; overflow: hidden; position: relative; background: url('../img/project-5.svg') center/cover; }
.why-visual::after { content: 'PRECISION / DISCIPLINE / DELIVERY'; position: absolute; inset: auto 26px 26px; font-size: 11px; letter-spacing: .15em; color: rgba(255,255,255,.6); }
.why-list { display: flex; flex-direction: column; justify-content: center; }
.reason { padding: 28px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 44px 1fr; gap: 18px; }
.reason:first-of-type { border-top: 1px solid var(--line); }
.reason b { font-size: 12px; color: var(--accent); font-weight: 600; }
.reason h3 { margin: 0 0 7px; }
.reason p { color: var(--muted); }

.process-track { margin-top: 54px; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); position: relative; }
.process-track::before { content: ''; position: absolute; left: 0; top: -1px; width: 25%; height: 1px; background: var(--accent); }
.process-step { padding: 32px 28px 0 0; min-height: 220px; }
.process-step .dot { width: 11px; height: 11px; background: var(--paper); border: 2px solid var(--accent); border-radius: 50%; margin-top: -38px; margin-bottom: 34px; }
.process-step small { color: var(--accent-dark); font-weight: 600; }
.process-step h3 { margin: 10px 0 8px; }
.process-step p { color: var(--muted-dark); font-size: 14px; }

.founder-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 76px; align-items: center; }
.founder-img { border-radius: var(--radius); overflow: hidden; min-height: 650px; }
.founder-img img { width: 100%; height: 100%; object-fit: cover; }
.founder-copy { max-width: 680px; }
.quote-line { border-left: 2px solid var(--accent); padding-left: 22px; margin: 34px 0; font-size: 21px; line-height: 1.55; color: rgba(255,255,255,.86); }

.insta-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 38px; }
.insta-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.insta-tile { aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; position: relative; }
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.insta-tile::after { content: '↗'; position: absolute; right: 14px; top: 12px; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: rgba(7,9,9,.68); opacity: 0; transform: translateY(7px); transition: .3s; }
.insta-tile:hover img { transform: scale(1.045); }
.insta-tile:hover::after { opacity: 1; transform: none; }

.cta-band { padding: 92px 0; background: var(--accent); color: white; position: relative; overflow: hidden; }
.cta-band::after { content: '3ENGRS'; position: absolute; right: -2vw; top: 50%; transform: translateY(-53%); font-size: clamp(100px,18vw,290px); font-weight: 600; line-height: 1; opacity: .07; letter-spacing: -.08em; }
.cta-grid { position: relative; z-index: 2; display: flex; align-items: end; justify-content: space-between; gap: 40px; }
.cta-grid h2 { max-width: 850px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.55); }

.inner-hero { min-height: 68svh; display: flex; align-items: end; padding: 165px 0 70px; position: relative; background: radial-gradient(circle at 80% 25%, rgba(243,109,47,.15), transparent 28%), #101313; overflow: hidden; }
.inner-hero::before { content: ''; position: absolute; width: 46vw; height: 46vw; min-width: 500px; min-height: 500px; border: 1px solid rgba(255,255,255,.07); border-radius: 50%; right: -12vw; top: -12vw; }
.inner-hero .lead { max-width: 680px; margin-top: 24px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,.5); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 22px; }
.breadcrumb span { color: var(--accent); }

.content-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 80px; }
.content-grid .sticky { position: sticky; top: 124px; align-self: start; }
.principles { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.principle { padding: 32px; border: 1px solid var(--line-dark); border-radius: 12px; min-height: 210px; }
.principle strong { display: block; color: var(--accent-dark); margin-bottom: 44px; font-weight: 600; }
.principle h3 { margin: 0 0 8px; }
.principle p { color: var(--muted-dark); font-size: 14px; }
.gallery-strip { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 12px; }
.gallery-strip img { width: 100%; height: 450px; object-fit: cover; border-radius: 12px; }

.contact-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.contact-cards { margin-top: 36px; display: grid; gap: 12px; }
.contact-card { padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.contact-card span { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-dark); margin-bottom: 6px; }
.contact-card a, .contact-card p { font-size: 18px; font-weight: 500; }
.form-panel { background: white; color: var(--ink); border-radius: 16px; padding: 42px; box-shadow: 0 20px 70px rgba(0,0,0,.07); }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12px; text-transform: uppercase; letter-spacing: .09em; font-weight: 600; color: #535a57; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #d9ddd9; border-radius: 10px; background: #faf9f6; color: var(--ink); padding: 14px 15px; outline: none; transition: border .2s, box-shadow .2s; }
.field input, .field select { min-height: 52px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(243,109,47,.12); }
.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: #626966; }
.checkline input { margin-top: 4px; }
.form-actions { margin-top: 8px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-status { margin-top: 16px; padding: 12px 14px; border-radius: 9px; font-size: 14px; }
.form-status.success { background: #e9f7ed; color: #176331; }
.form-status.error { background: #fff0ed; color: #8f2f22; }

.legal-layout { display: grid; grid-template-columns: 250px minmax(0,780px); gap: 72px; align-items: start; justify-content: center; }
.legal-nav { position: sticky; top: 120px; display: grid; gap: 10px; }
.legal-nav a { color: var(--muted-dark); font-size: 13px; }
.legal-nav a:hover { color: var(--accent-dark); }
.legal-content { display: grid; gap: 38px; }
.legal-content section { scroll-margin-top: 120px; }
.legal-content h2 { font-size: 29px; letter-spacing: -.03em; margin: 0 0 12px; }
.legal-content p, .legal-content li { color: #555c59; }
.legal-content ul { padding-left: 20px; }
.notice { padding: 16px 18px; border-left: 3px solid var(--accent); background: #fff8f4; color: #5d514a; font-size: 14px; }

.site-footer { background: #090b0b; padding: 74px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1.3fr .7fr .7fr .8fr; gap: 50px; padding-bottom: 58px; }
.footer-brand p { color: var(--muted); margin-top: 18px; max-width: 360px; }
.footer-col h4 { margin: 0 0 16px; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; color: rgba(255,255,255,.45); }
.footer-col { display: grid; align-content: start; gap: 10px; }
.footer-col a, .footer-col span { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-col a:hover { color: #fff; }
.socials { display: flex; gap: 9px; margin-top: 18px; }
.social { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .25s; }
.social:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; fill: currentColor; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 22px; display: flex; justify-content: space-between; gap: 24px; color: rgba(255,255,255,.4); font-size: 12px; }
.footer-legal { display: flex; gap: 18px; }

.whatsapp-float { position: fixed; z-index: 850; right: 22px; bottom: 22px; width: 58px; height: 58px; display: grid; place-items: center; border-radius: 50%; background: #25D366; color: white; box-shadow: 0 12px 34px rgba(0,0,0,.28); }
.whatsapp-float svg { width: 26px; fill: currentColor; }
.whatsapp-float:not([aria-disabled="true"]) { animation: onePulse 2.4s 1 1.4s; }
@keyframes onePulse { 0%,100%{box-shadow:0 12px 34px rgba(0,0,0,.28)} 50%{box-shadow:0 12px 34px rgba(0,0,0,.28),0 0 0 12px rgba(37,211,102,.16)} }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }
.reveal.in-view { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }.delay-2 { transition-delay: .16s; }.delay-3 { transition-delay: .24s; }

@media (max-width: 1100px) {
  :root { --header-h: 74px; }
  .section { padding: 90px 0; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .hero-grid, .intro-grid, .capability-layout, .why-grid, .founder-grid, .content-grid, .contact-layout { gap: 48px; }
  .nav-links { gap: 20px; }
  .header-cta { display: none; }
  .project-card { min-height: 480px; }
  .footer-top { grid-template-columns: 1.25fr .75fr .75fr; }
  .footer-col:last-child { grid-column: 2 / -1; }
}

@media (max-width: 820px) {
  .menu-toggle { display: block; }
  .nav-wrap { position: fixed; inset: var(--header-h) 0 0; background: rgba(10,12,12,.98); display: block; padding: 34px 24px; transform: translateX(100%); transition: transform .35s var(--ease); }
  .nav-wrap.is-open { transform: none; }
  .nav-links { align-items: stretch; flex-direction: column; gap: 0; }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: flex; min-height: 66px; align-items: center; font-size: 20px; }
  .hero-grid, .intro-grid, .capability-layout, .why-grid, .founder-grid, .content-grid, .contact-layout { grid-template-columns: 1fr; }
  .hero-copy { justify-self: start; max-width: 600px; }
  .hero-meta { margin-top: 44px; }
  .capability-title, .content-grid .sticky { position: static; }
  .projects-grid { gap: 12px; }
  .project-card { grid-column: span 12; min-height: 460px !important; }
  .why-visual { min-height: 480px; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .process-track::before { width: 50%; }
  .founder-img { min-height: 520px; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
  .gallery-strip { grid-template-columns: 1fr 1fr; }
  .gallery-strip img:first-child { grid-column: 1 / -1; }
  .gallery-strip img { height: 320px; }
  .legal-layout { grid-template-columns: 1fr; gap: 35px; }
  .legal-nav { position: static; display: flex; gap: 16px; overflow: auto; padding-bottom: 8px; }
  .legal-nav a { white-space: nowrap; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: auto; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 72px 0; }
  .hero { min-height: 94svh; }
  .hero-content { padding: 135px 0 52px; }
  .hero::after { background: linear-gradient(0deg,rgba(6,8,8,.9),rgba(6,8,8,.42)); }
  .display { font-size: clamp(42px,14vw,64px); }
  .hero-actions .btn { width: 100%; }
  .hero-meta { align-items: flex-start; flex-direction: column; gap: 12px; }
  .intro-statement { font-size: 34px; }
  .stat-grid { grid-template-columns: 1fr 1fr; margin-top: 32px; }
  .stat { padding: 20px 16px; }
  .service-item { grid-template-columns: 34px 1fr; gap: 12px; }
  .service-icon { display: none; }
  .projects-head, .insta-head, .cta-grid { align-items: flex-start; flex-direction: column; }
  .project-card { min-height: 390px !important; }
  .project-info { left: 20px; right: 20px; bottom: 18px; }
  .why-visual { min-height: 390px; }
  .process-track { grid-template-columns: 1fr; border-top: 0; border-left: 1px solid var(--line-dark); margin-left: 5px; }
  .process-track::before { left: -1px; top: 0; height: 25%; width: 1px; }
  .process-step { padding: 0 0 36px 28px; min-height: 0; }
  .process-step .dot { margin: 7px 0 14px -34px; }
  .founder-img { min-height: 430px; }
  .quote-line { font-size: 18px; }
  .insta-grid { gap: 8px; }
  .cta-actions, .cta-actions .btn { width: 100%; }
  .inner-hero { min-height: 58svh; padding: 130px 0 48px; }
  .principles { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; }
  .gallery-strip img:first-child { grid-column: auto; }
  .gallery-strip img { height: 300px; }
  .form-panel { padding: 24px 18px; margin-inline: -4px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .footer-legal { flex-wrap: wrap; }
  .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
