:root {
  --bg: #050506;
  --surface: #0b0c0f;
  --surface-soft: #111319;
  --text: #f4f4f5;
  --text-dim: #a5a8b3;
  --accent: #d53f2a;
  --line: #1e222b;
  --line-strong: #2d3340;
  --line-soft: rgba(148, 154, 168, 0.22);
  --header-height: 4.4rem;
  --max-width: 1320px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --radius-sm: 10px;
  --radius-md: 18px;
  --shadow-hero: 0 35px 70px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  border-radius: 0;
}

html {
  scroll-padding-top: calc(var(--header-height) + 0.6rem);
}

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  background-image: radial-gradient(circle at 76% 8%, rgba(213, 63, 42, 0.1), transparent 36%);
  position: relative;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100% - 2rem, var(--max-width));
  pointer-events: none;
  z-index: 0;
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
  background-image: linear-gradient(90deg,
      transparent calc(25% - 0.5px),
      var(--line-soft) calc(25% - 0.5px),
      var(--line-soft) calc(25% + 0.5px),
      transparent calc(25% + 0.5px),
      transparent calc(50% - 0.5px),
      var(--line-soft) calc(50% - 0.5px),
      var(--line-soft) calc(50% + 0.5px),
      transparent calc(50% + 0.5px),
      transparent calc(75% - 0.5px),
      var(--line-soft) calc(75% - 0.5px),
      var(--line-soft) calc(75% + 0.5px),
      transparent calc(75% + 0.5px));
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.shell {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  position: relative;
  z-index: 1;
  border-left: 0;
  border-right: 0;
  background-image: none;
}

.panel-grid {
  border-top: 0;
  border-bottom: 0;
}

main>section,
footer.site-footer {
  scroll-margin-top: calc(var(--header-height) + 0.6rem);
}

.panel-grid>.shell:first-child::before,
.panel-grid>.shell:first-child::after {
  content: none;
  position: absolute;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: rgba(244, 244, 245, 0.72);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.9;
  pointer-events: none;
}

.panel-grid>.shell:first-child::before {
  top: -0.68rem;
  left: -0.38rem;
}

.panel-grid>.shell:first-child::after {
  top: -0.68rem;
  right: -0.38rem;
}

.kicker {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--bg);
  backdrop-filter: none;
  border-bottom: 1px solid var(--line);
  transition: background 200ms ease, border-color 200ms ease;
  z-index: 40;
}

.site-header.scrolled-state {
  background: var(--bg);
  border-color: var(--line-strong);
}

.site-header .shell {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background-image: none;
}

.topbar-grid {
  min-height: 4.4rem;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 0;
  position: relative;
}

.cross-corners {
  position: relative;
}

.path-plus {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 3;
  width: 14px;
  height: 14px;
  user-select: none;
}

.path-plus::before,
.path-plus::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
}

.path-plus::before {
  width: 2px;
  height: 14px;
}

.path-plus::after {
  width: 14px;
  height: 2px;
}

/* --- Top row positions (left & right edges only) --- */
.path-plus--top-0 {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

.path-plus--top-100 {
  top: 0;
  left: 100%;
  transform: translate(-50%, -50%);
}

/* --- Bottom row positions (left & right edges only) --- */
.path-plus--bot-0 {
  bottom: 0;
  left: 0;
  transform: translate(-50%, 50%);
}

.path-plus--bot-100 {
  bottom: 0;
  left: 100%;
  transform: translate(-50%, 50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  min-height: 4.4rem;
  padding: 0 1rem;
}

.brand-text {
  font-size: 0.9rem;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.4rem;
  width: 100%;
  justify-content: center;
}

.site-nav a {
  color: var(--text-dim);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.book-call {
  min-height: 4.4rem;
  padding: 0 1rem;
  border: 0;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 160ms ease, background 160ms ease;
}

.book-call:hover,
.book-call:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.book-call::after {
  content: '->';
  margin-left: 0.8rem;
  color: var(--text-dim);
}

.book-call-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 4px 0;
}

.hero {
  padding: 0;
  min-height: calc(100svh - var(--header-height));
  position: relative;
  overflow: hidden;
}

/* Full-bleed image background */
.hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Gradient overlay for text legibility */
.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(4, 4, 5, 0.82) 0%, rgba(4, 4, 5, 0.45) 55%, rgba(4, 4, 5, 0.15) 100%),
    linear-gradient(to top, rgba(4, 4, 5, 0.75) 0%, transparent 50%),
    radial-gradient(circle at 80% 8%, rgba(213, 63, 42, 0.18), transparent 42%);
}

.hero-media-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 22%, rgba(213, 63, 42, 0.48), transparent 46%),
    linear-gradient(170deg, #290d0c 0%, #060607 55%, #151318 100%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.hero-media.is-missing .hero-media-fallback {
  opacity: 1;
}

.hero-media.is-missing::before {
  content: 'Add your local hero image at assets/hero.jpg';
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  background: rgba(5, 5, 6, 0.74);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0.35rem 0.7rem;
  z-index: 2;
}

/* Hero content sits above the image */
.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  min-height: calc(100svh - var(--header-height));
  border-left: 1px solid var(--line-soft);
  border-right: 1px solid var(--line-soft);
}

.hero-copy-col {
  width: 100%;
  max-width: 56rem;
  padding: clamp(1.25rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-title {
  display: grid;
  gap: 0;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero-title span:first-child {
  font-size: clamp(5rem, 18vw, 13rem);
}

.hero-title span:last-child {
  font-size: clamp(5rem, 18vw, 13rem);
  margin-left: clamp(0.8rem, 8vw, 8rem);
}

.hero-statement {
  margin-top: var(--space-4);
  max-width: 33ch;
  color: rgba(244, 244, 245, 0.75);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
}

.hero-cta-row {
  margin-top: var(--space-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border-radius: 0;
  border: 1px solid transparent;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.button-primary {
  background: var(--accent);
  color: var(--text);
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: brightness(1.1);
}

.button-ghost {
  border-color: rgba(255,255,255,0.25);
  color: var(--text-dim);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--text);
  color: var(--text);
}

.facts {
  padding: var(--space-6) 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.fact-item {
  padding: 1.6rem 1rem;
  border-right: 1px solid var(--line);
}

.fact-item:last-child {
  border-right: 0;
}

.fact-label {
  font-size: 0.73rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fact-value {
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.about {
  padding: var(--space-7) 0;
}

.about-grid {
  border: 1px solid var(--line);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.about-grid h2,
.about-headline {
  max-width: 16ch;
  font-size: clamp(2rem, 6vw, 4.2rem);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

/* Scroll-fade words: grey at rest, white when active */
.fade-word {
  display: inline;
  color: rgba(244, 244, 245, 0.22);
  transition: color 380ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: color;
}

.fade-word.is-lit {
  color: rgba(244, 244, 245, 1);
}

.about-detail {
  margin-top: var(--space-4);
  max-width: 56ch;
  color: var(--text-dim);
}

.impact {
  padding-bottom: var(--space-7);
}

.impact-grid {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.impact-card {
  padding: clamp(1.2rem, 3vw, 2.1rem);
  border-right: 1px solid var(--line);
  min-height: 220px;
}

.impact-card:last-child {
  border-right: 0;
}

.impact-number {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  line-height: 0.9;
}

.impact-title {
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.74rem;
  color: var(--text-dim);
}

.impact-copy {
  margin-top: 0.7rem;
  max-width: 28ch;
  font-size: 0.92rem;
  color: var(--text-dim);
}

/* Scroll-driven impact card fade */
.impact-card[data-scroll-fade] {
  opacity: 0.15;
  transform: translateY(14px);
  transition: opacity 560ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 560ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform;
}

.impact-card[data-scroll-fade] .impact-number {
  color: rgba(244, 244, 245, 0.28);
  transition: color 480ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.impact-card[data-scroll-fade].is-lit {
  opacity: 1;
  transform: translateY(0);
}

.impact-card[data-scroll-fade].is-lit .impact-number {
  color: rgba(244, 244, 245, 1);
}

.services,
.works,
.testimonials,
.faq,
.contact {
  padding: var(--space-7) 0;
}

.section-head h2 {
  max-width: 20ch;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  font-size: clamp(2.1rem, 7vw, 4.8rem);
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.section-head {
  border: 1px solid var(--line);
  border-bottom: 0;
  padding: clamp(1.2rem, 2.8vw, 2.2rem);
}

.services-grid {
  margin-top: var(--space-5);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  border-right: 1px solid var(--line);
  padding: 1.4rem 1rem 1.8rem;
}

.service-card:last-child {
  border-right: 0;
}

.service-index {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-top: 0.6rem;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.03em;
}

.service-card p {
  margin-top: 0.6rem;
  color: var(--text-dim);
  font-size: 0.92rem;
}

.work-list {
  margin-top: 0;
  border: 1px solid var(--line);
}

.work-item {
  padding: 1.25rem 1.1rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: background 150ms ease;
}

.work-item:first-child {
  border-top: 0;
}

.work-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.work-item h3 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(1.7rem, 4.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

.work-item p {
  color: var(--text-dim);
  text-align: right;
  max-width: 40ch;
}

.testimonial-grid {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
}

.testimonial-head,
.quote-card {
  padding: clamp(1.2rem, 3.5vw, 2.5rem);
  border-right: 1px solid var(--line);
}

.quote-card:last-child {
  border-right: 0;
}

.quote-card p {
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  line-height: 1.4;
}

.quote-card cite {
  margin-top: 1.1rem;
  display: block;
  color: var(--text-dim);
  font-size: 0.88rem;
  font-style: normal;
}

.faq-list {
  margin-top: var(--space-5);
  border: 1px solid var(--line);
}

.faq-item+.faq-item {
  border-top: 1px solid var(--line);
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.faq-trigger span:last-child {
  font-size: 1.35rem;
  line-height: 1;
  color: var(--text-dim);
  transition: transform 160ms ease;
}

.faq-trigger[aria-expanded='true'] span:last-child {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  color: var(--text-dim);
  padding: 0 1.1rem;
  transition: max-height 220ms ease, padding-bottom 220ms ease;
}

.faq-item.is-open .faq-panel {
  max-height: 120px;
  padding-bottom: 1rem;
}

.contact-grid {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.8fr;
}

.contact-card,
.contact-cta-panel,
.contact-aside {
  padding: clamp(1.3rem, 4vw, 2.4rem);
}

.contact-card {
  border-right: 1px solid var(--line);
}

.contact-pretitle,
.contact-pretitle-strong {
  font-family: 'Bebas Neue', Impact, sans-serif;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: 0.015em;
}

.contact-pretitle {
  color: var(--text-dim);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
}

.contact-pretitle-strong {
  color: var(--text);
  font-size: clamp(1.8rem, 4vw, 3.3rem);
  margin-bottom: 1rem;
}

.contact-card h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.4rem, 8vw, 5.1rem);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  max-width: 10ch;
}

.contact-card p {
  margin-top: 1rem;
  max-width: 28ch;
  color: var(--text-dim);
}

.contact-links {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.4rem;
}

.contact-links a {
  color: var(--text-dim);
}

.contact-links a:hover,
.contact-links a:focus-visible {
  color: var(--text);
}

.contact-cta-panel {
  border-right: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  padding-top: clamp(1.3rem, 4vw, 2.8rem);
}

.contact-cta-link {
  width: 100%;
  min-height: 64px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  font-family: 'Bebas Neue', Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: clamp(1rem, 2vw, 1.45rem);
  transition: background 160ms ease, color 160ms ease;
}

.contact-cta-link:hover,
.contact-cta-link:focus-visible {
  background: rgba(255, 255, 255, 0.03);
}

.contact-aside {
  display: grid;
  align-content: flex-start;
  gap: 0.25rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  line-height: 1.5;
  padding-top: clamp(1.3rem, 4vw, 2.8rem);
}

.contact-aside p:first-child {
  color: var(--text);
}

.contact-cta-link:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible,
.faq-trigger:focus-visible,
.site-nav a:focus-visible,
.book-call:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-grid {
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  color: var(--text-dim);
  font-size: 0.86rem;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding-inline: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1120px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    border-bottom: 1px solid var(--line);
  }

  .service-card:nth-child(2n) {
    border-right: 0;
  }

  .service-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .impact-grid,
  .facts-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-head {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 899px) {
  .topbar-grid {
    grid-template-columns: auto auto;
    grid-template-areas:
      'brand toggle'
      'nav nav'
      'cta cta';
    padding: 0.85rem 0;
    row-gap: 0.7rem;
  }

  .brand {
    grid-area: brand;
  }

  .nav-toggle {
    grid-area: toggle;
    justify-self: end;
    display: block;
  }

  .site-nav {
    grid-area: nav;
    justify-self: stretch;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.8rem;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    background: var(--surface);
    min-height: auto;
  }

  .site-nav.is-open {
    display: flex;
  }

  .book-call-mobile {
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    min-height: 2.7rem;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    padding: 0 0.95rem;
    margin-top: 0.35rem;
  }

  .book-call-desktop {
    display: none;
  }

  .book-call {
    grid-area: cta;
    justify-self: start;
    min-height: 2.7rem;
    border: 1px solid var(--line-strong);
    border-radius: 0;
    padding: 0 0.95rem;
  }

  .hero-title span:last-child {
    margin-left: 0;
  }

  .work-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .work-item p {
    text-align: left;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .contact-cta-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-cta-panel,
  .contact-aside {
    padding-top: clamp(1rem, 3vw, 1.8rem);
  }
}

@media (max-width: 699px) {
  body::after {
    width: min(100% - 1rem, var(--max-width));
    background-image: linear-gradient(90deg,
        transparent calc(50% - 0.5px),
        var(--line-soft) calc(50% - 0.5px),
        var(--line-soft) calc(50% + 0.5px),
        transparent calc(50% + 0.5px));
  }

  .shell {
    width: min(100% - 1rem, var(--max-width));
    background-image: none;
  }

  .hero {
    min-height: auto;
    padding: 0;
  }

  .facts-grid,
  .impact-grid,
  .services-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .fact-item,
  .impact-card,
  .service-card,
  .quote-card,
  .testimonial-head {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quote-card:last-child,
  .impact-card:last-child,
  .service-card:last-child,
  .fact-item:last-child {
    border-bottom: 0;
  }

  .faq-item.is-open .faq-panel {
    max-height: 180px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}