/* ==========================================================================
   DAY ONE PRODUCTIONS — Site Stylesheet
   Shared across every page. Edit once, applies everywhere.
   ========================================================================== */

/* ---------- TOKENS ---------- */
:root {
  color-scheme: dark;
  --bg: #07090f;
  --bg-2: #0d111c;
  --bg-3: #131826;
  --text: #f4f6fb;
  --muted: #9aa3b8;
  --line: rgba(255,255,255,0.08);
  --brand-blue: #1f6bff;
  --brand-teal: #00b6c4;
  --brand-green: #00c779;
  --gradient: linear-gradient(135deg, #1f6bff 0%, #00b6c4 55%, #00c779 100%);
  --gradient-soft: linear-gradient(135deg, rgba(31,107,255,0.18) 0%, rgba(0,199,121,0.18) 100%);
}

/* ---------- RESET ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---------- NAV ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: rgba(7,9,15,0.6);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background .3s;
}
nav.scrolled { background: rgba(7,9,15,0.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 44px; width: auto; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  transition: color .2s; letter-spacing: 0.02em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--gradient);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 14px;
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(31,107,255,0.35); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
  border: none; background: transparent;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(7,9,15,0.97);
  z-index: 99;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 36px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: 28px; font-weight: 700;
  color: var(--text); letter-spacing: -0.01em;
  transition: color .2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--brand-teal); }
.mobile-menu .nav-cta { font-size: 18px; padding: 14px 36px; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  padding: 120px 28px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../images/hero-stage-lights.jpg');
  background-size: cover; background-position: center;
  filter: brightness(0.4) saturate(1.2);
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(31,107,255,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(0,199,121,0.25) 0%, transparent 50%),
    linear-gradient(180deg, rgba(7,9,15,0.4) 0%, rgba(7,9,15,0.85) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 920px; }
.hero-logo {
  height: 180px;
  margin: 0 auto 28px;
  filter: drop-shadow(0 10px 40px rgba(31,107,255,0.4));
  animation: fadeUp 1s ease;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  animation: fadeUp 1s ease 0.2s backwards;
}
.hero h1 .gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto 38px;
  animation: fadeUp 1s ease 0.4s backwards;
}
.hero-cta-group {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 1s ease 0.6s backwards;
}

/* ---------- SHORT HERO (inner pages) ---------- */
.hero-short {
  position: relative;
  min-height: 56vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
  padding: 140px 28px 80px;
}
.hero-short .hero-bg { filter: brightness(0.3) saturate(1.1); }
.hero-short h1 {
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.02em; margin-bottom: 14px;
  position: relative; z-index: 2;
}
.hero-short .lede {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--muted);
  max-width: 640px; margin: 0 auto;
  position: relative; z-index: 2;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600; font-size: 15px;
  letter-spacing: 0.02em;
  transition: transform .2s, box-shadow .2s, background .2s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 10px 32px rgba(31,107,255,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(31,107,255,0.45); }
.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid rgba(255,255,255,0.25);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- SECTIONS ---------- */
section { padding: 110px 0; position: relative; }
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-title .gradient {
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 680px;
  margin-bottom: 60px;
}

/* ---------- ABOUT ---------- */
.about { background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text p { color: var(--muted); margin-bottom: 18px; font-size: 16px; }
.about-text p:first-of-type { color: var(--text); font-size: 18px; }
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 12px;
}
.stat {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px;
  transition: transform .25s, border-color .25s;
}
.stat:hover { transform: translateY(-4px); border-color: rgba(31,107,255,0.4); }
.stat-number {
  font-size: 42px; font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.about-image {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-soft);
  mix-blend-mode: overlay;
}

/* ---------- SERVICES ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 30px;
  transition: transform .25s, border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(31,107,255,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  font-size: 26px;
}
.service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 15px; }

/* ---------- PORTFOLIO ---------- */
.portfolio { background: var(--bg-2); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}
.portfolio-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-3);
}
.portfolio-item.span-row { grid-row: span 2; }
.portfolio-item.span-col { grid-column: span 2; }
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.portfolio-item:hover img { transform: scale(1.08); }
.portfolio-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(7,9,15,0.9) 100%);
  opacity: 0;
  transition: opacity .3s;
}
.portfolio-item:hover::after { opacity: 1; }
.portfolio-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s;
}
.portfolio-item:hover .portfolio-caption { opacity: 1; transform: translateY(0); }
.portfolio-caption .tag {
  display: inline-block;
  background: var(--gradient);
  color: #fff;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.portfolio-caption h4 { font-size: 18px; font-weight: 700; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform .25s, border-color .25s;
}
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(31,107,255,0.3); }
.testimonial-quote {
  font-size: 48px; line-height: 1;
  background: var(--gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
  font-family: Georgia, serif;
}
.testimonial-text {
  color: var(--muted);
  font-size: 15px; line-height: 1.75;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px;
  color: #fff; flex-shrink: 0;
}
.testimonial-author h5 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.testimonial-author p { color: var(--muted); font-size: 12px; }
.stars { color: #f5c842; font-size: 13px; margin-bottom: 4px; letter-spacing: 1px; }

/* ---------- CTA STRIP ---------- */
.cta-strip {
  padding: 80px 0;
  background: var(--gradient);
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}
.cta-strip p {
  font-size: 18px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.cta-strip .btn { background: #fff; color: #1a1f30; }
.cta-strip .btn:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(0,0,0,0.25); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.contact-info p { color: var(--muted); margin-bottom: 28px; font-size: 16px; }
.contact-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--gradient-soft);
  border: 1px solid rgba(31,107,255,0.3);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-item p { color: var(--muted); margin: 0; font-size: 15px; }
.contact-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 38px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 500;
  margin-bottom: 8px;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  transition: border-color .2s, background .2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--bg-3);
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  background: #161c2e;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.contact-form .btn-primary { width: 100%; margin-top: 8px; }

/* ---------- RENTAL ---------- */
.rental-category { margin-bottom: 72px; }
.rental-category-head {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.rental-category-head .icon {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.rental-category-head h3 {
  font-size: 24px; font-weight: 700; letter-spacing: -0.01em;
}
.rental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.rental-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  transition: transform .25s, border-color .25s;
}
.rental-item:hover { transform: translateY(-4px); border-color: rgba(31,107,255,0.3); }
.rental-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.rental-item p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.rental-note {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  color: var(--muted);
  font-size: 14px;
}
.rental-note strong { color: var(--text); }

/* ---------- TEAM ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 24px;
}
.team-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  transition: transform .25s, border-color .25s;
}
.team-card:hover { transform: translateY(-4px); border-color: rgba(31,107,255,0.3); }
.team-avatar {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 28px;
  color: #fff;
  margin: 0 auto 18px;
}
.team-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-card .role { color: var(--brand-teal); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ---------- VALUES ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value {
  padding: 32px 26px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.value .num {
  font-size: 14px; font-weight: 700;
  color: var(--brand-teal);
  letter-spacing: 0.15em;
  margin-bottom: 14px;
  display: block;
}
.value h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.value p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 56px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.footer-logo img { height: 50px; }
.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  margin-top: 16px;
  line-height: 1.7;
  max-width: 290px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--text); }
.footer-socials {
  display: flex; gap: 10px;
  margin-top: 20px;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, transform .2s;
}
.social-icon:hover {
  background: var(--gradient-soft);
  border-color: rgba(31,107,255,0.4);
  transform: translateY(-2px);
}
.social-icon svg { width: 16px; height: 16px; fill: var(--muted); transition: fill .2s; }
.social-icon:hover svg { fill: var(--text); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  color: var(--muted);
  font-size: 13px;
}
.footer-bottom a { color: var(--muted); transition: color .2s; }
.footer-bottom a:hover { color: var(--text); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 920px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; }
  .portfolio-item.span-row { grid-row: auto; }
  .portfolio-item.span-col { grid-column: auto; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-grid,
  .values-grid,
  .rental-grid { grid-template-columns: 1fr 1fr; }
  .hero-logo { height: 130px; }
  section { padding: 80px 0; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .services-grid,
  .portfolio-grid,
  .team-grid,
  .values-grid,
  .rental-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- ANCHOR OFFSET (fixed nav compensation) ---------- */
[id] { scroll-margin-top: 100px; }

/* ---------- ACCESSIBILITY & POLISH ---------- */
::selection { background: rgba(31,107,255,0.40); color: #fff; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--brand-teal);
  outline-offset: 3px;
  border-radius: 6px;
}

main:focus { outline: none; }

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 200;
  background: var(--gradient);
  color: #fff;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 32px rgba(31,107,255,0.3);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

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