/* =============================================
   Torrents Autocolor, S.L — Manresa
   Archetype: Editorial Light Cream (automotive adapted)
   ============================================= */

:root {
  --bg:          #f5f0e8;
  --bg-2:        #ede5d8;
  --bg-dark:     #1c2b3a;
  --paper:       #ffffff;
  --ink:         #1a1714;
  --ink-soft:    #2e2926;
  --ink-mute:    #6b6460;
  --accent:      #1c2b3a;   /* deep navy */
  --accent-2:    #c86a20;   /* warm copper */
  --accent-light: #e8f0f7;
  --line:        rgba(26,23,20,0.12);
  --line-strong: rgba(26,23,20,0.25);
  --radius:      12px;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --nav-h:       72px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 600; }

em { font-style: italic; color: var(--accent-2); }

p { max-width: 65ch; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

/* ---- HELPERS ---- */
.kicker {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-head h2 { margin-bottom: 1rem; }

.section-sub {
  font-size: 1.1rem;
  color: var(--ink-mute);
  max-width: none;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), background 0.22s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #f5f0e8;
}

@media (hover: hover) {
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(28,43,58,0.35);
  }
}

.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: #f5f0e8;
  border: 1.5px solid rgba(245,240,232,0.5);
}

@media (hover: hover) {
  .btn-ghost:hover {
    background: rgba(245,240,232,0.12);
    border-color: rgba(245,240,232,0.8);
    transform: translateY(-2px);
  }
}

.btn-large {
  padding: 1.1rem 2.4rem;
  font-size: 1rem;
}

/* ---- SPLASH ---- */
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), clip-path 0.7s var(--ease-in-out);
  /* Safety: auto-hide at 4.5s if JS fails */
  animation: splashSafety 0.01s 4.5s forwards;
}

@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}

.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}

.splash-inner {
  text-align: center;
  animation: splashIn 0.8s var(--ease-out) both;
}

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

.splash-logo {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--bg);
  letter-spacing: -0.02em;
  display: block;
}

.splash-logo em {
  color: var(--accent-2);
  font-style: italic;
  margin-left: 0.25rem;
}

.splash-line {
  width: 40px;
  height: 2px;
  background: var(--accent-2);
  margin: 1rem auto 0;
  animation: lineGrow 0.8s var(--ease-out) 0.4s both;
  transform-origin: center;
}

@keyframes lineGrow {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(28,43,58,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(245,240,232,0.1);
}

.nav-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f5f0e8;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.nav-logo span { font-style: italic; color: var(--accent-2); }

@media (hover: hover) {
  .nav-logo:hover { opacity: 0.85; }
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(245,240,232,0.8);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--accent-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}

@media (hover: hover) {
  .nav-links a:hover { color: #f5f0e8; }
  .nav-links a:hover::after { transform: scaleX(1); }
}

.nav-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

@media (hover: hover) {
  .nav-cta:hover { opacity: 0.8; }
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #f5f0e8;
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s;
}

.nav-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(28,43,58,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem) 2rem;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.nav-mobile.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(245,240,232,0.8);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(245,240,232,0.08);
  transition: color 0.2s;
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile-cta {
  color: var(--accent-2) !important;
  font-weight: 600 !important;
  margin-top: 0.5rem;
  font-size: 1.05rem !important;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}

.hero-bg img.is-loaded { transform: scale(1); }

.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(28,43,58,0.92) 0%,
    rgba(28,43,58,0.6) 40%,
    rgba(28,43,58,0.2) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  padding-top: var(--nav-h);
  animation: heroIn 1s var(--ease-out) 0.3s both;
}

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

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.25rem;
  max-width: none;
}

.hero-title {
  color: #ffffff;
  margin-bottom: 1.5rem;
  max-width: 18ch;
  text-wrap: balance;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  text-shadow: 0 2px 20px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.55);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-title em {
  color: var(--accent-2);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  color: rgba(245,240,232,0.82);
  max-width: 56ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: rgba(245,240,232,0.7);
}

.hero-stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 1rem;
}

.hero-trust strong { color: #f5f0e8; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f5f0e8;
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, #f5f0e8, transparent);
  animation: lineDown 1.5s ease-in-out infinite;
}

@keyframes lineDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- SERVEIS ---- */
.serveis {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg);
}

.serveis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 2rem;
}

.servei-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
  will-change: transform;
}

@media (hover: hover) {
  .servei-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(28,43,58,0.14);
  }
}

.servei-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-2);
}

.servei-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}

@media (hover: hover) {
  .servei-card:hover .servei-card-img img {
    transform: scale(1.06);
  }
}

.servei-card--plain .servei-card-icon-wrap {
  aspect-ratio: 16 / 10;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.servei-card-icon {
  font-size: 2.8rem;
  color: var(--accent-2);
  opacity: 0.9;
}

.servei-card-body {
  padding: 1.5rem;
}

.servei-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--accent);
}

.servei-card-body p {
  font-size: 0.9rem;
  color: var(--ink-mute);
  line-height: 1.65;
  max-width: none;
}

/* ---- NOSALTRES ---- */
.nosaltres {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-dark);
  color: #f5f0e8;
}

.nosaltres h2 { color: #f5f0e8; }
.nosaltres .kicker { color: var(--accent-2); }

.nosaltres-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.nosaltres-text p {
  color: rgba(245,240,232,0.75);
  margin-top: 1rem;
  max-width: 54ch;
}

.nosaltres-text h2 { margin-bottom: 0.5rem; }

.nosaltres-lead {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.85) !important;
  line-height: 1.75;
}

.nosaltres-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(245,240,232,0.05);
  border: 1px solid rgba(245,240,232,0.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: background 0.25s, border-color 0.25s;
}

@media (hover: hover) {
  .stat-card:hover {
    background: rgba(245,240,232,0.08);
    border-color: rgba(200,106,32,0.4);
  }
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--accent-2);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(245,240,232,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
}

/* ---- RESSENYES ---- */
.ressenyes {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg-2);
}

.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: var(--ink-mute);
}

.rating-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.rating-num { font-weight: 700; font-size: 1.1rem; color: var(--ink); font-family: "Playfair Display", serif; }
.rating-divider { opacity: 0.4; }

.rating-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-2);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s;
}

@media (hover: hover) {
  .rating-link:hover { text-decoration-color: var(--accent-2); }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

@media (hover: hover) {
  .testimonial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(28,43,58,0.10);
  }
}

.testimonial-stars { color: #f5a623; letter-spacing: 2px; font-size: 0.95rem; }

.testimonial p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
  font-style: italic;
  max-width: none;
  flex: 1;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.testimonial strong { font-size: 0.9rem; color: var(--ink); font-style: normal; }
.testimonial cite { font-size: 0.78rem; color: var(--ink-mute); font-style: normal; letter-spacing: 0.03em; }

/* ---- CONTACTE ---- */
.contacte {
  padding-block: clamp(5rem, 10vw, 9rem);
  background: var(--bg);
}

.contacte-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}

.contacte-info h2 { margin-bottom: 2rem; }
.contacte-info .kicker { margin-bottom: 0.75rem; }

.contacte-detalls {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.detall {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.detall-icon { font-size: 1.25rem; margin-top: 0.1rem; flex-shrink: 0; }

.detall-text strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.3rem;
}

.detall-text p,
.detall-text address {
  font-size: 0.95rem;
  font-style: normal;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: none;
}

.detall-text a {
  color: var(--accent-2);
  font-weight: 600;
  font-size: 1.05rem;
}

@media (hover: hover) {
  .detall-text a:hover { text-decoration: underline; text-underline-offset: 3px; }
}

.contacte-map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  box-shadow: 0 8px 32px rgba(28,43,58,0.08);
}

.contacte-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--accent);
  color: rgba(245,240,232,0.75);
  padding-top: 4rem;
  padding-bottom: 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,240,232,0.1);
}

.footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f5f0e8;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-logo em { color: var(--accent-2); font-style: italic; }

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 28ch;
  color: rgba(245,240,232,0.55);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  transition: color 0.2s;
}

@media (hover: hover) {
  .footer-links a:hover { color: #f5f0e8; }
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-tel {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-2);
  transition: opacity 0.2s;
}

@media (hover: hover) {
  .footer-tel:hover { opacity: 0.8; }
}

.footer-maps {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  transition: color 0.2s;
}

@media (hover: hover) {
  .footer-maps:hover { color: var(--accent-2); }
}

.footer-contact span { font-size: 0.82rem; color: rgba(245,240,232,0.45); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(245,240,232,0.35);
}

/* ---- REVEAL SYSTEM ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--card-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* DEFENSIVE — data-split elements never stay invisible */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .nosaltres-inner,
  .contacte-inner { grid-template-columns: 1fr; }

  .nosaltres-stats { grid-template-columns: 1fr 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .hero-scroll-hint { display: none; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .serveis-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .nosaltres-stats { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 2rem; }

  .btn-large { width: 100%; justify-content: center; }

  .footer-bottom { align-items: flex-start; }
}

@media (max-width: 400px) {
  .nosaltres-stats { grid-template-columns: 1fr; }
}

/* ---- ACCESSIBILITY ---- */
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-line { animation: none; }
  .splash { animation: none; }
  .splash-inner { animation: none; }
  .splash-line { animation: none; }
  .hero-content { animation: none; }
  .hero-bg img { transition: none; }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
  border-radius: 3px;
}
