:root {
  --bg: #080808;
  --bg-soft: #0e0e0f;
  --surface: #131314;
  --surface-high: #19191a;
  --text: #f4f1ed;
  --muted: #aaa6a0;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --accent: #ff3b1f;
  --accent-soft: rgba(255, 59, 31, 0.12);
  --max-width: 1240px;
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.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: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 250ms ease, border-color 250ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 188px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -7px;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 18px;
  border: 1px solid var(--line-strong);
  transition: background 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding-top: var(--header-height);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 72%, transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: 14%;
  right: 7%;
  width: 44vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 31, 0.15), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - var(--header-height) - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: center;
  gap: 70px;
  padding-block: 70px 54px;
}

.eyebrow,
.overline,
.section-index {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-soft);
}

.hero h1,
.section h2,
.principles h2 {
  margin: 0;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  font-weight: 750;
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.hero h1 strong,
.section h2 em {
  color: var(--accent);
  font-style: normal;
  font-weight: inherit;
}

.hero-intro {
  max-width: 610px;
  margin: 32px 0 0;
  color: #c2beb8;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 34px rgba(255, 59, 31, 0.18);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  background: #ff553d;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding-block: 8px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
  font-size: 0.82rem;
  transition: color 180ms ease, border-color 180ms ease;
}

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

.hero-visual {
  position: relative;
}

.scan-card {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(145deg, rgba(24, 24, 25, 0.92), rgba(10, 10, 10, 0.86));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}

.scan-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4px 13px;
  color: #807d78;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
}

.status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #b9b5af;
}

.status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

.scan-field {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.95;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at center, rgba(255, 59, 31, 0.08), transparent 55%),
    repeating-radial-gradient(circle at center, transparent 0 56px, rgba(255, 255, 255, 0.05) 57px 58px),
    #0b0b0c;
}

.scan-field::before,
.scan-field::after {
  content: "";
  position: absolute;
  z-index: 0;
  background: var(--line);
}

.scan-field::before {
  width: 1px;
  height: 100%;
}

.scan-field::after {
  width: 100%;
  height: 1px;
}

.scan-field img {
  position: relative;
  z-index: 1;
  width: 72%;
  filter: grayscale(0.35) contrast(1.08) drop-shadow(0 20px 34px rgba(0, 0, 0, 0.6));
  opacity: 0.9;
}

.scan-line {
  position: absolute;
  z-index: 2;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 18px rgba(255, 59, 31, 0.7);
  animation: scan 4.4s ease-in-out infinite;
}

.crosshair {
  position: absolute;
  z-index: 3;
  width: 13px;
  height: 13px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
}

.crosshair-a {
  top: 20%;
  left: 14%;
}

.crosshair-b {
  right: 14%;
  bottom: 20%;
  transform: rotate(180deg);
}

.scan-readout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 12px;
  background: var(--line);
}

.scan-readout span {
  min-height: 70px;
  padding: 14px 12px;
  background: #0d0d0e;
  color: #817e79;
  font-size: 0.64rem;
  line-height: 1.35;
}

.scan-readout b {
  display: block;
  margin-bottom: 4px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.hero-footer {
  position: relative;
  z-index: 1;
  min-height: 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  color: #787570;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-footer span {
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.hero-footer span:last-child {
  border-right: 1px solid var(--line);
}

.section {
  position: relative;
  padding: 140px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 90px;
}

.section-index {
  margin-top: 8px;
  color: #716e69;
}

.section-heading .overline,
.method-intro .overline,
.contact-copy .overline {
  color: var(--accent);
}

.section h2 {
  max-width: 930px;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
}

.section-about {
  background: #0b0b0c;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.about-mark {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent);
}

.about-mark img {
  width: 100%;
  filter: grayscale(0.25);
}

.about-mark span {
  color: #625f5b;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}

.about-mark span:last-child {
  transform: rotate(180deg);
}

.about-copy {
  max-width: 660px;
}

.about-copy p {
  color: var(--muted);
}

.about-copy .lead {
  margin: 0 0 28px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.42;
  letter-spacing: -0.02em;
}

.about-copy blockquote {
  position: relative;
  margin: 48px 0 0;
  padding: 28px 28px 28px 58px;
  border-left: 2px solid var(--accent);
  background: var(--surface);
  font-size: 1.1rem;
  font-weight: 650;
}

.about-copy blockquote span {
  position: absolute;
  top: 14px;
  left: 20px;
  color: var(--accent);
  font-size: 2.6rem;
  line-height: 1;
}

.section-services {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-list {
  border-top: 1px solid var(--line-strong);
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 230px 28px;
  gap: 32px;
  align-items: center;
  min-height: 176px;
  padding: 30px 18px;
  border-bottom: 1px solid var(--line);
  transition: background 220ms ease, padding 220ms var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 220ms var(--ease);
}

.service-card:hover {
  padding-inline: 28px;
  background: var(--surface);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.service-number {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
}

.service-copy h3,
.method-steps h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.service-copy p,
.method-steps p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
}

.service-tag {
  color: #77736e;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-arrow {
  color: #5c5955;
  font-size: 1.2rem;
  transition: color 180ms ease, transform 180ms ease;
}

.service-card:hover .service-arrow {
  color: var(--accent);
  transform: translate(3px, -3px);
}

.section-method {
  background: var(--bg-soft);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 110px;
}

.method-intro {
  position: sticky;
  top: calc(var(--header-height) + 36px);
  align-self: start;
}

.method-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.method-intro > p:last-child {
  max-width: 520px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 1.08rem;
}

.method-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.method-steps li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.method-steps > li > span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
}

.principles {
  padding: 92px 0 110px;
  background: var(--accent);
  color: #fff;
}

.principles .overline {
  color: rgba(255, 255, 255, 0.68);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.principles-grid p {
  min-height: 260px;
  margin: 0;
  padding: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
  font-size: clamp(1.35rem, 2.6vw, 2.15rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.principles-grid p:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.principles-grid span {
  display: block;
  margin-bottom: 65px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

.contact {
  overflow: hidden;
  background: #0b0b0c;
}

.contact-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: end;
}

.contact-copy h2 {
  font-size: clamp(3rem, 5.8vw, 5.8rem);
}

.contact-copy > p:last-child {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-action {
  padding-bottom: 10px;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 126px;
  padding: 24px 28px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.025);
  font-size: clamp(0.94rem, 1.7vw, 1.22rem);
  font-weight: 700;
  transition: background 220ms ease, border-color 220ms ease;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
}

.contact-button small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.contact-button:hover small,
.contact-button:focus-visible small {
  color: rgba(255, 255, 255, 0.72);
}

.contact-button b {
  font-size: 1.6rem;
}

.contact-action > p {
  margin: 16px 0 0;
  color: #77736e;
  font-size: 0.72rem;
}

.site-footer {
  padding: 60px 0 28px;
  border-top: 1px solid var(--line);
  background: #070707;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-top {
  padding-bottom: 55px;
}

.footer-brand {
  width: 220px;
}

.back-to-top {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.back-to-top span {
  margin-left: 8px;
  color: var(--accent);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #65625e;
  font-size: 0.68rem;
}

.footer-bottom p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal-delay {
  transition-delay: 140ms;
}

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

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

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.error-page img {
  width: 190px;
  margin: 0 auto 48px;
}

.error-page > div > span {
  color: var(--accent);
  font: 700 0.75rem ui-monospace, monospace;
  letter-spacing: 0.14em;
}

.error-page h1 {
  margin: 18px 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.error-page p {
  max-width: 520px;
  margin: 0 auto 34px;
  color: var(--muted);
}

@keyframes scan {
  0%,
  100% {
    top: 2%;
    opacity: 0.2;
  }
  50% {
    top: calc(100% - 2px);
    opacity: 0.9;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

@media (max-width: 1020px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 100px;
  }

  .hero-copy {
    max-width: 790px;
  }

  .hero-visual {
    width: min(100%, 620px);
    margin-left: auto;
  }

  .about-layout,
  .method-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 70px;
  }

  .about-mark {
    width: min(100%, 560px);
  }

  .method-layout {
    gap: 70px;
  }

  .method-intro {
    position: static;
  }

  .contact-action {
    max-width: 590px;
  }

  .principles-grid p {
    min-height: 230px;
    padding: 28px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 36px), var(--max-width));
  }

  .brand {
    width: 160px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    padding: 90px 28px 38px;
    background: rgba(8, 8, 8, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.7rem, 7vw, 2.6rem);
    letter-spacing: -0.03em;
    text-transform: none;
  }

  .site-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 20px;
    border: 0;
    color: var(--accent);
  }

  .hero-layout {
    min-height: auto;
    padding-block: 96px 70px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 14vw, 5.4rem);
  }

  .hero-footer {
    grid-template-columns: 1fr 1fr;
  }

  .hero-footer span {
    min-height: 58px;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 100px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 60px;
  }

  .section-index {
    margin-bottom: 20px;
  }

  .service-card {
    grid-template-columns: 50px 1fr 24px;
    gap: 20px;
    min-height: 0;
    padding-block: 28px;
  }

  .service-tag {
    display: none;
  }

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

  .principles-grid p {
    min-height: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .principles-grid p:last-child {
    border-bottom: 0;
  }

  .principles-grid span {
    margin-bottom: 32px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .hero h1 br {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .text-link {
    align-self: flex-start;
  }

  .scan-card {
    padding: 10px;
  }

  .scan-topline {
    font-size: 0.5rem;
  }

  .scan-readout span {
    min-height: 62px;
    padding: 10px 8px;
    font-size: 0.55rem;
  }

  .hero-footer {
    grid-template-columns: 1fr;
  }

  .hero-footer span {
    border-right: 1px solid var(--line);
  }

  .about-mark {
    gap: 8px;
    padding: 14px;
  }

  .service-card {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .service-arrow {
    display: none;
  }

  .method-steps li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
  }

  .contact-button {
    min-height: 112px;
    padding: 20px;
  }

  .contact-button b {
    font-size: 1.2rem;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
  }
}

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

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

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