:root {
  color-scheme: dark;
  --ink: #f8fbff;
  --muted: #aebccd;
  --soft: #dce7f3;
  --line: rgba(255,255,255,.16);
  --panel: rgba(10,18,28,.78);
  --panel-strong: rgba(12,22,35,.94);
  --amber: #ffb21a;
  --cyan: #31d7ff;
  --red: #ff4d42;
  --green: #25d366;
  --bg: #050a10;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: rgba(5,10,16,.76);
  backdrop-filter: blur(18px);
}
.nav {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  min-width: 0;
}
.brand-logo {
  width: min(240px, 48vw);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(49,215,255,.18));
}
.brand-text {
  display: grid;
  gap: 2px;
}
.brand-text small {
  color: var(--soft);
  font-weight: 800;
  font-size: 12px;
  animation: headerPulse 3.4s ease-in-out infinite;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.nav-links { display: flex; align-items: center; gap: 18px; color: var(--soft); font-weight: 700; font-size: 14px; }
.nav-links a:hover { color: var(--cyan); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(255,178,26,.5);
  background: linear-gradient(135deg, #ffc045, #ff8f17);
  color: #15100a;
  font-weight: 900;
  box-shadow: 0 14px 38px rgba(255,143,23,.22);
}

.hero {
  min-height: 92svh;
  position: relative;
  overflow: clip;
  isolation: isolate;
  background-image: linear-gradient(90deg, rgba(5,10,16,.96) 0%, rgba(5,10,16,.74) 38%, rgba(5,10,16,.2) 76%), url("assets/video/recovery-background-poster.jpg");
  background-position: center;
  background-size: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(5,10,16,.96) 0%, rgba(5,10,16,.72) 38%, rgba(5,10,16,.24) 78%);
  pointer-events: none;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
}
.hero-mobile-image { display: none; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(49,215,255,.09) 0 1px, transparent 1px 130px),
    repeating-linear-gradient(0deg, rgba(255,178,26,.06) 0 1px, transparent 1px 120px);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
  animation: gridDrift 10s linear infinite;
  z-index: -1;
}
.scanline {
  position: absolute;
  left: -20%;
  top: 16%;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(49,215,255,.9), transparent);
  box-shadow: 0 0 22px rgba(49,215,255,.8);
  animation: scan 4.8s ease-in-out infinite;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 118px 20px 90px;
  position: relative;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(49,215,255,.35);
  background: rgba(8,22,34,.72);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--soft);
  font-weight: 800;
}
.pulse-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  animation: pulse 1.8s infinite;
}
h1 {
  max-width: 780px;
  margin: 22px 0 18px;
  font-size: clamp(48px, 8vw, 94px);
  line-height: .95;
  letter-spacing: 0;
}
.lead {
  max-width: 690px;
  color: var(--soft);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0; }
.call-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: -10px;
  margin-bottom: 18px;
  color: var(--amber);
  font-weight: 900;
}
.call-note::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 18px rgba(255,178,26,.85);
}
.btn.secondary {
  background: rgba(8,20,32,.72);
  border-color: rgba(49,215,255,.45);
  color: var(--ink);
  box-shadow: none;
}
.signal-board {
  margin-top: 36px;
  max-width: 780px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(5,12,20,.22);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  overflow: hidden;
}
.signal { padding: 12px 14px; border-right: 1px solid var(--line); min-height: 76px; }
.signal:last-child { border-right: 0; }
.signal strong { display: block; font-size: 20px; }
.signal span { color: var(--muted); font-size: 11px; font-weight: 700; }

.band { padding: 84px 20px; }
.band.alt { background: #07111c; }
.wrap { max-width: var(--max); margin: 0 auto; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.kicker { color: var(--cyan); font-weight: 900; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; }
h2 { margin: 8px 0 0; font-size: clamp(32px, 4vw, 52px); line-height: 1; letter-spacing: 0; }
.section-head p, .muted { color: var(--muted); line-height: 1.7; max-width: 620px; }

.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(18,31,47,.9), rgba(9,17,28,.9));
}
.card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 80%;
  background: radial-gradient(circle, rgba(49,215,255,.18), transparent 60%);
  transform: translateX(-10%);
  animation: glowMove 6s ease-in-out infinite;
}
.card:not(.service-card) { padding: 24px; min-height: 230px; }
.service-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
}
.card-copy { padding: 21px 24px 24px; position: relative; z-index: 1; transition: transform .3s ease; }
.service-card:hover .card-copy { transform: translateY(-5px); }
.card h3 { margin: 0 0 10px; font-size: 22px; }
.card p { color: var(--muted); line-height: 1.65; margin: 0 0 18px; }
.card-label { display: block; margin-bottom: 18px; color: var(--cyan); font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.extra-service-cards .card { display: flex; flex-direction: column; min-height: 280px; }
.extra-service-cards .text-link { display: inline-block; margin-top: auto; }
.service-expansion-note { margin: 24px 0 0; color: var(--muted); font-size: 14px; }
.text-link { color: var(--cyan); font-weight: 900; position: relative; z-index: 1; }
.service-card .text-link { display: inline-block; transition: transform .25s ease, color .25s ease; }
.service-card:hover .text-link { transform: translateX(7px); color: var(--amber); }
.update-gallery-section { overflow: hidden; }
.review-strip { background: #050b14; border-top: 1px solid rgba(49,215,255,.18); border-bottom: 1px solid rgba(255,181,31,.16); padding: 22px 20px; }
.review-strip img { display: block; width: min(100%, 1086px); height: auto; margin: 0 auto; border-radius: 8px; }
.updates-carousel { max-width: 780px; margin: 0 auto; }
.update-slides { position: relative; min-height: 270px; }
.update-slide { display: none; padding: 34px; border: 1px solid var(--line); border-radius: 8px; background: rgba(16,27,42,.82); box-shadow: 0 18px 44px rgba(0,0,0,.16); animation: updateSlideIn .45s ease both; }
.update-slide.is-active { display: block; }
.update-slide time { display: block; color: var(--cyan); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: 13px; margin-bottom: 18px; }
.update-slide h3 { font-size: clamp(25px, 3vw, 36px); margin: 0 0 14px; }
.update-slide p { color: var(--soft); line-height: 1.7; max-width: 620px; margin: 0 0 22px; }
.carousel-controls { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-top: 18px; }
.carousel-button { border: 1px solid rgba(49,215,255,.45); border-radius: 999px; background: transparent; color: var(--text); padding: 10px 14px; font: inherit; font-weight: 800; cursor: pointer; }
.carousel-button:hover, .carousel-button:focus-visible { border-color: var(--amber); color: var(--amber); }
.carousel-dots { display: flex; align-items: center; gap: 9px; }
.carousel-dot { width: 10px; height: 10px; padding: 0; border: 1px solid var(--cyan); border-radius: 50%; background: transparent; cursor: pointer; }
.carousel-dot.is-active { background: var(--amber); border-color: var(--amber); box-shadow: 0 0 14px rgba(255,181,31,.5); }
@keyframes updateSlideIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.update-gallery {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(49,215,255,.34);
  border-radius: 8px;
  background: #07111c;
}
.update-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,7,12,.78), transparent 64%), linear-gradient(0deg, rgba(3,7,12,.8), transparent 45%);
  pointer-events: none;
}
.update-gallery > img { width: 100%; height: 430px; padding: 14px; object-fit: contain; background: #050a10; animation: galleryReveal .7s ease both; }
.gallery-caption { position: absolute; left: 28px; bottom: 38px; z-index: 1; max-width: 540px; display: grid; gap: 8px; }
.gallery-caption strong { font-size: clamp(24px, 3vw, 42px); }
.gallery-caption span { color: var(--soft); font-size: 17px; line-height: 1.5; }
.gallery-dots { position: absolute; right: 28px; bottom: 38px; z-index: 1; display: flex; gap: 8px; }
.gallery-dots span { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.45); }
.gallery-dots span.active { background: var(--amber); box-shadow: 0 0 15px var(--amber); }
@keyframes galleryReveal { from { opacity: .25; transform: scale(1.03); } to { opacity: 1; transform: scale(1); } }

.tech-strip {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.radar {
  min-height: 390px;
  margin-top: 196px;
  border: 1px solid rgba(49,215,255,.28);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(49,215,255,.08) 18% 19%, transparent 19% 36%, rgba(49,215,255,.08) 36% 37%, transparent 37% 54%, rgba(49,215,255,.08) 54% 55%, transparent 55%),
    linear-gradient(145deg, #08121e, #101b2b);
}
.radar-label { position: absolute; top: 18px; left: 18px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; color: var(--soft); font-size: 13px; font-weight: 900; letter-spacing: .02em; }
.radar-label i { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 12px var(--green); animation: pulse 2s infinite; }
.radar::before {
  content: "";
  position: absolute;
  inset: 50% 0 0 50%;
  transform-origin: 0 0;
  background: linear-gradient(25deg, rgba(49,215,255,.65), transparent 45%);
  animation: sweep 3.2s linear infinite;
}
.pin { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 22px var(--amber); }
.pin-1 { top: 24%; left: 64%; }
.pin-2 { top: 58%; left: 34%; animation: pulse 2.1s infinite; }
.pin-3 { top: 72%; left: 70%; }
.pin-4 { top: 38%; left: 44%; animation: pulse 1.7s infinite; }
.tech-list { display: grid; gap: 12px; }
.tech-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.04);
}
.tech-item strong { display: block; margin-bottom: 5px; }
.tech-item span { color: var(--muted); line-height: 1.6; }

.areas {
  columns: 3;
  column-gap: 22px;
}
.areas a {
  display: block;
  break-inside: avoid;
  margin: 0 0 10px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  color: var(--soft);
  font-weight: 800;
}
.areas a:hover { border-color: rgba(49,215,255,.55); color: var(--cyan); }

.updates { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.update time { color: var(--amber); font-weight: 900; font-size: 13px; }

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(255,178,26,.34);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,178,26,.16), rgba(49,215,255,.08));
}

.site-footer {
  padding: 56px 20px 28px;
  border-top: 1px solid var(--line);
  background: #03070c;
  color: var(--muted);
}
.quote-section { padding: 84px 20px; background: #07111c; }
.quote-wrap { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: center; }
.quote-intro h2 { margin: 12px 0 20px; font-size: clamp(38px, 5vw, 68px); line-height: .98; }
.quote-intro h2 strong { color: var(--amber); font-weight: 950; }
.quote-intro p { max-width: 560px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.quote-highlights { display: flex; flex-wrap: wrap; gap: 18px; margin: 28px 0; color: var(--soft); font-weight: 800; }
.quote-highlights span::before { content: ""; display: inline-block; width: 9px; height: 9px; margin-right: 8px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 14px var(--amber); }
.quote-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.dispatch-card { overflow: hidden; border: 1px solid rgba(255,178,26,.55); border-radius: 14px; background: rgba(248,251,255,.97); color: #17202a; box-shadow: 0 22px 70px rgba(0,0,0,.28); }
.dispatch-head { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 20px 24px; background: #080b0e; color: var(--ink); }
.dispatch-head strong { display: inline-flex; align-items: center; gap: 9px; }
.dispatch-head strong i { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }
.dispatch-head span { color: #aeb8c2; font-size: 13px; text-align: right; }
.dispatch-card form { display: grid; gap: 16px; padding: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.dispatch-card label { display: grid; gap: 8px; font-weight: 850; }
.dispatch-card input, .dispatch-card select { width: 100%; min-height: 52px; border: 1px solid #cbd1d6; border-radius: 8px; padding: 0 14px; background: #fff; color: #17202a; font: inherit; }
.dispatch-card input:focus, .dispatch-card select:focus { outline: 3px solid rgba(49,215,255,.32); border-color: #168ba9; }
.dispatch-submit { min-height: 56px; border: 0; border-radius: 8px; background: linear-gradient(135deg, #ffc045, #ff9e00); color: #14110a; font: inherit; font-weight: 950; cursor: pointer; box-shadow: 0 10px 25px rgba(255,158,0,.22); }
.dispatch-submit span { margin-left: 10px; font-size: 22px; }
.form-note { margin: 0; padding: 14px; border-radius: 8px; background: #fff9ed; color: #6d6251; font-size: 14px; line-height: 1.5; }
.form-note a, .form-note strong { color: #a66d00; }
.form-status { padding: 12px 14px; border-radius: 8px; background: #eef5f7; color: #28505a; font-size: 14px; line-height: 1.45; }
.form-status.success { background: #eaf8ef; color: #176b3b; }
.form-status.error { background: #fff0ee; color: #9b3028; }
.dispatch-submit:disabled { cursor: wait; opacity: .7; }
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.05fr;
  gap: 24px;
}
.site-footer h3, .site-footer h4 { color: var(--ink); margin-top: 0; }
.site-footer a { display: block; margin: 8px 0; color: var(--muted); }
.site-footer a:hover { color: var(--cyan); }
.footer-brand img { width: 190px; max-height: 48px; object-fit: contain; object-position: left center; margin-bottom: 18px; }
.footer-brand h3 { margin-bottom: 10px; }
.footer-brand p { max-width: 330px; line-height: 1.65; }
.footer-phone { color: var(--amber) !important; font-weight: 900; font-size: 18px; margin-top: 18px !important; }
.footer-email { display: block; margin-top: 8px; font-size: 13px; color: var(--muted); overflow-wrap: anywhere; }
.footer-subheading { margin: 24px 0 10px !important; }
.footer-placeholder { display: block; margin: 8px 0; color: var(--muted); cursor: default; }
.footer-bottom { max-width: var(--max); margin: 42px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #8294aa; font-size: 13px; }
.footer-legal { display: flex; gap: 18px; }

.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  gap: 12px;
}
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 178px;
  min-height: 52px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0,0,0,.36);
}
.float-btn.call { background: linear-gradient(135deg, var(--red), #ff8f17); }
.float-btn.whatsapp { background: linear-gradient(135deg, #18b957, var(--green)); }
.float-btn:hover { transform: translateY(-2px); }

.page-hero {
  padding: 92px 20px 48px;
  background:
    linear-gradient(90deg, rgba(5,10,16,.96), rgba(5,10,16,.78)),
    url("assets/oxford-recovery-hero.png") center/cover;
}
.page-hero .wrap { max-width: var(--max); }
.breadcrumb { color: var(--muted); font-weight: 800; margin-bottom: 16px; }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 28px; align-items: start; }
.content h2 { margin-top: 28px; }
.content p, .content li { color: var(--soft); line-height: 1.75; }
.sidebar {
  position: sticky;
  top: 86px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--panel-strong);
}
.sidebar a { display: block; padding: 10px 0; color: var(--soft); border-bottom: 1px solid rgba(255,255,255,.08); }
.sidebar a:last-child { border-bottom: 0; }
.faq-block { max-width: 900px; }
.faq-block h2 { margin-bottom: 24px; }
.faq-block details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq-block details:last-child { border-bottom: 1px solid var(--line); }
.faq-block summary { cursor: pointer; color: var(--ink); font-weight: 900; font-size: 18px; }
.faq-block details p { color: var(--muted); line-height: 1.7; max-width: 760px; margin: 14px 0 0; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
  70% { box-shadow: 0 0 0 12px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
@keyframes headerPulse {
  0%, 100% { opacity: .55; text-shadow: 0 0 0 transparent; }
  50% { opacity: 1; color: var(--ink); text-shadow: 0 0 14px rgba(49,215,255,.72); }
}
@keyframes scan { 0%, 100% { transform: translateY(0); opacity: .3; } 50% { transform: translateY(420px); opacity: 1; } }
@keyframes gridDrift { to { background-position: 130px 120px; } }
@keyframes glowMove { 0%, 100% { transform: translateX(-18%); } 50% { transform: translateX(18%); } }
@keyframes sweep { to { transform: rotate(360deg); } }
@keyframes mobileHeroMove {
  0%, 100% { transform: scale(1.02) translate3d(-.5%, 0, 0); }
  50% { transform: scale(1.06) translate3d(.75%, -.5%, 0); }
}

@media (max-width: 1100px) and (min-width: 881px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 880px) {
  .nav { align-items: flex-start; }
  .brand-logo { width: min(190px, 44vw); }
  .nav-links { display: none; }
  .hero { min-height: auto; }
  .hero-video { display: none; }
  .hero-mobile-image { display: block; position: absolute; inset: -2%; z-index: -3; width: 104%; height: 104%; object-fit: cover; object-position: center; opacity: .88; filter: saturate(1.08) contrast(1.06); animation: mobileHeroMove 14s ease-in-out infinite alternate; }
  .hero-inner { padding-top: 92px; }
  .signal-board, .cards, .updates, .tech-strip, .contact-panel, .footer-grid, .content-grid, .quote-wrap { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .dispatch-head { align-items: flex-start; flex-direction: column; }
  .dispatch-head span { text-align: left; }
  .update-gallery, .update-gallery > img { min-height: 300px; height: 300px; }
  .review-strip { padding: 14px 12px; }
  .update-slide { padding: 24px; }
  .carousel-controls { flex-wrap: wrap; justify-content: center; }
  .gallery-caption { left: 20px; right: 20px; bottom: 24px; }
  .gallery-dots { right: 20px; bottom: 24px; }
  .radar { margin-top: 0; }
  .signal { border-right: 0; border-bottom: 1px solid var(--line); }
  .areas { columns: 1; }
  .section-head { display: block; }
  .footer-bottom { display: grid; gap: 12px; }
  .footer-legal { flex-wrap: wrap; gap: 12px 18px; }
  .float-actions { left: 12px; right: 12px; grid-template-columns: 1fr 1fr; }
  .float-btn { min-width: 0; font-size: 14px; }
  .sidebar { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-mobile-image, .brand-text small, .scanline, .hero::before { animation: none; }
}
