/* ============================================================
   RESCUE RESTORATION & CONSTRUCTION — Homepage Concept
   Type/composition: Industrial Edge. Palette: Rescue Restoration
   brand (flame #e85820, water #1c93e3, dark #192730 from their
   logo and live site CSS).
   ============================================================ */

:root {
  /* Backgrounds */
  --bg-dark:        #10161b;
  --bg-dark-2:      #192730;
  --bg-light:       #f2efea;
  --bg-white:       #ffffff;

  /* Brand accents (from Rescue Restoration logo + site) */
  --flame:          #e85820;
  --flame-hover:    #c9481a;
  --flame-muted:    rgba(232, 88, 32, 0.14);
  --water:          #1c93e3;
  --water-hover:    #157ec4;
  --water-muted:    rgba(28, 147, 227, 0.14);

  /* Text */
  --text-dark:      #10161b;
  --text-body:      #46525c;
  --text-muted:     #7b868f;
  --text-light:     rgba(255, 255, 255, 0.94);
  --text-light-mid: rgba(255, 255, 255, 0.72);
  --text-light-muted: rgba(255, 255, 255, 0.55);

  /* Typography */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;

  /* Layout */
  --max-width: 1240px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --nav-height: 78px;
  --radius: 4px;

  /* Motion */
  --ease-mech: cubic-bezier(0.4, 0, 0.6, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--bg-dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: none; background: none; cursor: pointer; }

::selection { background: var(--flame); color: #fff; }

/* ── Utilities ─────────────────────────────────────────── */
.container { max-width: min(92%, var(--max-width)); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--flame);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: currentColor;
}
.eyebrow--water { color: var(--water); }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

/* Dual brand stripe, straight from the logo mark */
.brand-stripes {
  display: block;
  width: 92px;
  height: 11px;
  position: relative;
  flex: none;
}
.brand-stripes::before,
.brand-stripes::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  transform: skewX(-24deg);
}
.brand-stripes::before { top: 0; background: var(--water); }
.brand-stripes::after { bottom: 0; background: var(--flame); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.5rem 0.6rem 0.5rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s var(--ease-mech), color 0.25s var(--ease-mech), border-color 0.25s var(--ease-mech);
  white-space: nowrap;
}
.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex: none;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .btn__icon { transform: rotate(45deg); }
.btn svg { width: 15px; height: 15px; }

.btn--flame { background: var(--flame); color: #fff; }
.btn--flame:hover { background: var(--flame-hover); }
.btn--flame .btn__icon { background: rgba(255, 255, 255, 0.16); }

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
}
.btn--outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }
.btn--outline .btn__icon { background: rgba(255, 255, 255, 0.12); }

.btn--dark { background: var(--bg-dark-2); color: #fff; }
.btn--dark:hover { background: var(--bg-dark); }
.btn--dark .btn__icon { background: rgba(255, 255, 255, 0.14); }

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease-mech), box-shadow 0.35s var(--ease-mech);
}
.nav.is-solid {
  background: rgba(16, 22, 27, 0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}
.nav__inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo img { height: 46px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav__links a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light-mid);
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }
.nav__cta { display: inline-flex; }
.nav__cta .btn { padding: 0.32rem 0.42rem 0.32rem 1.2rem; font-size: 0.82rem; }
.nav__cta .btn__icon { width: 32px; height: 32px; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px;
  height: 46px;
  padding: 10px;
  z-index: 1001;
  position: relative;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  transition: transform 0.3s var(--ease-mech), opacity 0.2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile menu ───────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-mech), visibility 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 10vw, 3.6rem);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s;
}
.mobile-menu__links a:hover { color: var(--flame); }
.mobile-menu .brand-stripes { margin: 2rem 0; }
.mobile-menu__phone {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--flame);
  letter-spacing: 0.04em;
}
.mobile-menu__note { color: var(--text-light-muted); font-size: 0.95rem; margin-top: 0.4rem; }

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--bg-dark);
}
.hero__media {
  position: absolute;
  inset: -8% 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(16, 22, 27, 0.94) 0%, rgba(16, 22, 27, 0.45) 45%, rgba(16, 22, 27, 0.35) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(2.5rem, 6vh, 4.5rem);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.4rem;
}
.hero__badge .pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--flame);
  flex: none;
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 88, 32, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(232, 88, 32, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 88, 32, 0); }
}
.hero h1 {
  font-size: clamp(4.2rem, 13vw, 10.5rem);
  color: #fff;
}
.hero h1 .w-water { color: var(--water); }
.hero h1 .w-fire { color: var(--flame); }
.hero__sub {
  max-width: 560px;
  margin-top: 1.3rem;
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: var(--text-light-mid);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2.2rem;
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}
.hero__meta strong { color: var(--text-light); font-weight: 600; }

/* ── Ticker ────────────────────────────────────────────── */
.ticker {
  background: var(--flame);
  color: #fff;
  overflow: hidden;
  padding: 0.85rem 0;
  border-top: 3px solid var(--water);
}
.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.ticker__group {
  display: flex;
  align-items: center;
  flex: none;
}
.ticker__group span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.09em;
  white-space: nowrap;
  padding: 0 1.4rem;
}
.ticker__group i {
  font-style: normal;
  opacity: 0.65;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Section scaffolding ───────────────────────────────── */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section--dark { background: var(--bg-dark-2); color: var(--text-light); }
.section--black { background: var(--bg-dark); color: var(--text-light); }
.section--light { background: var(--bg-light); }
.section--white { background: var(--bg-white); }

.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head h2 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}
.section--dark h2, .section--black h2 { color: #fff; }

/* ── Intro ─────────────────────────────────────────────── */
.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.intro h2 { font-size: clamp(2.8rem, 6vw, 4.8rem); color: #fff; }
.intro__body p { color: var(--text-light-mid); margin-bottom: 1.2rem; font-size: 1.05rem; }
.intro__points {
  margin-top: 1.8rem;
  display: grid;
  gap: 0.85rem;
}
.intro__points li {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.intro__points li::before {
  content: "";
  width: 9px; height: 9px;
  flex: none;
  transform: skewX(-24deg) translateY(-1px);
  background: var(--flame);
}
.intro__points li:nth-child(even)::before { background: var(--water); }

/* ── Emergency split panels (signature) ────────────────── */
.split {
  display: flex;
  min-height: 76vh;
}
.split__panel {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: flex 0.65s var(--ease-out);
}
@media (hover: hover) and (min-width: 861px) {
  .split:has(.split__panel:hover) .split__panel { flex: 0.72; }
  .split .split__panel:hover { flex: 1.6; }
}
.split__media { position: absolute; inset: 0; }
.split__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.85) contrast(1.05);
  transform: scale(1.04);
  transition: transform 0.8s var(--ease-out), filter 0.6s var(--ease-mech);
}
.split__panel:hover .split__media img { filter: grayscale(0.15) contrast(1.02); transform: scale(1); }
.split__panel--fire .split__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16, 22, 27, 0.96) 8%, rgba(140, 44, 10, 0.55) 60%, rgba(232, 88, 32, 0.32) 100%);
  transition: opacity 0.5s;
}
.split__panel--water .split__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16, 22, 27, 0.96) 8%, rgba(10, 62, 100, 0.58) 60%, rgba(28, 147, 227, 0.32) 100%);
}
.split__content {
  position: relative;
  z-index: 1;
  padding: clamp(1.8rem, 4vw, 3.2rem);
  width: 100%;
}
.split__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light-mid);
}
.split__content h3 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
  color: #fff;
  margin: 0.4rem 0 1rem;
}
.split__content ul { display: grid; gap: 0.45rem; }
.split__content li {
  color: var(--text-light-mid);
  font-weight: 500;
  font-size: 0.98rem;
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
}
.split__panel--fire li::before { content: ""; width: 16px; height: 2px; flex: none; background: var(--flame); transform: translateY(-4px); }
.split__panel--water li::before { content: ""; width: 16px; height: 2px; flex: none; background: var(--water); transform: translateY(-4px); }

/* ── Services / construction 50-50 ─────────────────────── */
.svc__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.svc__media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}
.svc__media img {
  width: 100%;
  height: clamp(420px, 60vw, 660px);
  object-fit: cover;
}
.svc__media .brand-stripes {
  position: absolute;
  left: clamp(1.2rem, 3vw, 2rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
}
.svc__content h2 { font-size: clamp(2.8rem, 5.5vw, 4.4rem); margin-bottom: 1.2rem; }
.svc__content > p { color: var(--text-body); margin-bottom: 1.1rem; max-width: 56ch; }
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.6rem 0 2rem;
}
.chip {
  padding: 0.42rem 0.95rem;
  border: 1px solid rgba(16, 22, 27, 0.22);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--bg-white);
}

/* ── Rico section ──────────────────────────────────────── */
.rico { position: relative; }
.rico__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.rico__content h2 { font-size: clamp(2.8rem, 5.5vw, 4.6rem); color: #fff; margin-bottom: 1.3rem; }
.rico__content p { color: var(--text-light-mid); margin-bottom: 1.1rem; max-width: 58ch; }
.rico__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.rico__media img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.rico__press {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.rico__press-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-light-muted);
  margin-bottom: 0.8rem;
}
.rico__press-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
}

/* ── Why cards ─────────────────────────────────────────── */
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.why-card {
  background: var(--bg-white);
  border: 1px solid rgba(16, 22, 27, 0.1);
  border-top: 3px solid var(--flame);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
}
.why-card:nth-child(2) { border-top-color: var(--water); }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.why-card p { color: var(--text-body); font-size: 0.99rem; }
.why__claims {
  margin-top: 2.4rem;
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  background: var(--bg-dark-2);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.why__claims h3 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  color: #fff;
  line-height: 1;
}
.why__claims p { color: var(--text-light-mid); max-width: 52ch; margin-top: 0.5rem; }

/* ── Testimonials ──────────────────────────────────────── */
.testis { position: relative; }
.testis__track {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 1.2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.testis__track::-webkit-scrollbar { display: none; }
.testi {
  flex: 0 0 min(420px, 84vw);
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.testi__stars { color: var(--flame); letter-spacing: 0.2em; font-size: 0.85rem; }
.testi p { color: var(--text-light-mid); font-size: 0.99rem; flex: 1; }
.testi cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.testis__hint {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light-muted);
}

/* ── Cities ────────────────────────────────────────────── */
.cities h2 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.cities__cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.8rem;
}
.cities__cloud span {
  padding: 0.4rem 0.9rem;
  background: var(--bg-white);
  border: 1px solid rgba(16, 22, 27, 0.14);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-body);
}

/* ── CTA ───────────────────────────────────────────────── */
.cta {
  position: relative;
  background:
    linear-gradient(120deg, rgba(16, 22, 27, 0.97) 30%, rgba(25, 39, 48, 0.92)),
    var(--bg-dark-2);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--water) 0 50%, var(--flame) 50% 100%);
}
.cta__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta h2 { font-size: clamp(3rem, 8vw, 6rem); color: #fff; }
.cta p { color: var(--text-light-mid); margin-top: 1rem; font-size: 1.08rem; }
.cta__phone {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  color: var(--flame);
  letter-spacing: 0.04em;
  margin: 1.6rem 0 0.4rem;
  transition: color 0.25s;
}
.cta__phone:hover { color: #fff; }
.cta__email { color: var(--text-light-mid); font-size: 1.02rem; }
.cta__email a { color: var(--water); font-weight: 500; }
.cta__email a:hover { color: #fff; }
.cta__ctas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

/* ── Footer ────────────────────────────────────────────── */
.footer {
  background: #0b1014;
  color: var(--text-light-muted);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__brand img { height: 64px; width: auto; margin-bottom: 1.2rem; }
.footer__brand p { font-size: 0.95rem; max-width: 40ch; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.footer ul { display: grid; gap: 0.55rem; }
.footer ul a { font-size: 0.95rem; transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer__contact li { font-size: 0.95rem; }
.footer__contact a { color: var(--text-light-mid); }
.footer__contact a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  font-size: 0.85rem;
}

/* ── 404 ───────────────────────────────────────────────── */
.error-section {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 2rem) 0 3rem;
}
.error__inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.error__code {
  font-family: var(--font-display);
  font-size: clamp(8rem, 26vw, 16rem);
  line-height: 0.9;
  color: var(--flame-muted);
  -webkit-text-stroke: 1px rgba(232, 88, 32, 0.5);
}
.error__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: #fff;
  text-transform: uppercase;
  margin: 0.6rem 0 1rem;
}
.error__body { color: var(--text-light-mid); margin-bottom: 2rem; }
.error-section .brand-stripes { margin: 0 auto 2rem; }

/* ── Reveal (GSAP hook) ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .ticker__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 1080px) {
  .nav__links { gap: 1.5rem; }
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }

  .intro__grid,
  .svc__grid,
  .rico__grid { grid-template-columns: 1fr; }
  .rico__grid .rico__media { order: -1; }
  .why__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }

  .split { flex-direction: column; min-height: 0; }
  .split__panel { min-height: 68vh; }

  .footer ul a,
  .footer__contact a { display: inline-block; padding-block: 0.65rem; }
  .footer ul { gap: 0; }
}

@media (max-width: 768px) {
  .hero:not([style]) {
    height: auto;
    min-height: 100svh;
    padding-top: calc(var(--nav-height) + 3rem);
  }
  .hero__media img { object-position: 68% 40%; }
  .svc__media img { height: clamp(340px, 80vw, 520px); }
}

@media (max-width: 480px) {
  .hero:not([style]) { padding-top: calc(var(--nav-height) + 2rem); }
  .hero__ctas .btn { width: 100%; justify-content: space-between; }
  .cta__ctas .btn { width: 100%; justify-content: space-between; }
  .split__panel { min-height: 62vh; }
  .why__claims { flex-direction: column; align-items: flex-start; }
}
