:root {
  --ink: #19191b;
  --charcoal: #29292b;
  --copper: #b85627;
  --copper-dark: #853b1b;
  --copper-soft: #f4e5db;
  --paper: #fff;
  --warm: #faf7f4;
  --muted: #6b6968;
  --line: #e6e1dd;
  --shadow: 0 24px 70px rgba(31, 25, 21, 0.11);
  --radius: 26px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--warm);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}
:focus-visible {
  outline: 3px solid rgba(184, 86, 39, 0.42);
  outline-offset: 4px;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
}
.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(42, 42, 44, 0.08);
  background: rgba(250, 247, 244, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand {
  display: block;
  width: 190px;
  line-height: 0;
}
.brand img {
  width: 100%;
  height: auto !important;
  aspect-ratio: 1453 / 638;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.desktop-nav a {
  position: relative;
  color: #3e3b39;
  font-size: 0.87rem;
  font-weight: 700;
}
.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  background: var(--copper);
  transition: transform 180ms ease;
}
.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-call {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.header-call span {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.header-call strong {
  color: var(--copper-dark);
  font-size: 0.94rem;
}
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  background:
    radial-gradient(
      circle at 4% 22%,
      rgba(184, 86, 39, 0.1),
      transparent 24rem
    ),
    linear-gradient(135deg, #faf7f4 0%, #fff 68%);
}
.hero::before {
  position: absolute;
  top: 0;
  right: -5%;
  width: 45%;
  height: 100%;
  content: "";
  background-image:
    linear-gradient(rgba(42, 42, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 44, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to left, black, transparent);
  mask-image: linear-gradient(to left, black, transparent);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(370px, 0.93fr);
  gap: 86px;
  align-items: center;
  min-height: 680px;
}
.eyebrow {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 20px;
  color: var(--copper-dark);
  font-size: 0.73rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--copper);
}
.eyebrow-light {
  color: #e79b73;
}
.hero h1,
.section-heading h2,
.capability-copy h2,
.safety-heading h2,
.coverage h2,
.contact h2,
.legal-page h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5.6vw, 5.35rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.hero h1 em {
  color: var(--copper);
  font-style: normal;
}
.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: #565250;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  background: var(--copper);
  color: white;
  box-shadow: 0 14px 30px rgba(184, 86, 39, 0.24);
}
.button-primary:hover {
  background: var(--copper-dark);
  box-shadow: 0 18px 36px rgba(137, 62, 28, 0.28);
}
.button-secondary {
  border-color: #d8d1cc;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 650px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-trust div {
  display: flex;
  flex-direction: column;
}
.hero-trust strong {
  font-size: 0.88rem;
}
.hero-trust span {
  color: var(--muted);
  font-size: 0.75rem;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 470px;
  justify-self: end;
}
.hero-image-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 8px solid white;
  border-radius: 34px;
  background: #ddd;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}
.hero-image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  max-width: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
}
.visual-label {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(31, 25, 21, 0.13);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.visual-label span {
  color: var(--copper);
}
.visual-label-top {
  top: 17%;
  left: -54px;
}
.visual-label-bottom {
  right: -34px;
  bottom: 19%;
}
.visual-stamp {
  position: absolute;
  right: -34px;
  bottom: -25px;
  display: grid;
  width: 112px;
  height: 112px;
  place-content: center;
  border: 6px solid var(--warm);
  border-radius: 50%;
  background: var(--charcoal);
  color: white;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  letter-spacing: 0.08em;
}
.visual-stamp small {
  color: #df9b78;
  font-size: 0.55rem;
  font-weight: 700;
}
.hero-contact-strip {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 54px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}
.hero-contact-strip > span {
  margin-right: auto;
}
.hero-contact-strip a {
  color: var(--copper-dark);
  font-weight: 800;
}

.intro,
.process,
.contact {
  background: white;
}
.intro-grid,
.services-head,
.process-head {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 100px;
  align-items: start;
}
.section-heading h2,
.capability-copy h2,
.safety-heading h2,
.coverage h2,
.contact h2 {
  font-size: clamp(2.35rem, 4.2vw, 4rem);
  line-height: 1.04;
}
.intro-copy {
  padding-top: 40px;
}
.intro-copy p,
.services-head > p,
.process-head > p,
.capability-copy > p,
.coverage-options p {
  color: var(--muted);
}
.large-copy {
  margin-top: 0;
  color: var(--ink) !important;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.55;
}
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 74px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}
.outcome-grid article {
  min-height: 250px;
  padding: 30px;
  background: var(--warm);
}
.outcome-grid article > span,
.process-grid article > span {
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.outcome-grid h3 {
  margin: 54px 0 10px;
  font-size: 1.05rem;
}
.outcome-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.services,
.coverage {
  background: var(--warm);
}
.services-head > p,
.process-head > p {
  margin-top: 44px;
  font-size: 1rem;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 64px;
}
.service-card {
  min-height: 290px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 86, 39, 0.38);
  box-shadow: 0 18px 40px rgba(31, 25, 21, 0.08);
}
.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--copper-soft);
  color: var(--copper-dark);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.service-number {
  color: #b0aaa6;
  font-size: 0.72rem;
  font-weight: 800;
}
.service-card h3 {
  margin: 50px 0 12px;
  font-size: 1.05rem;
}
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.capabilities {
  overflow: hidden;
  background: var(--charcoal);
  color: white;
}
.capability-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 110px;
}
.capability-copy {
  position: sticky;
  top: 130px;
  align-self: start;
}
.capability-copy h2 {
  color: white;
}
.capability-copy > p {
  margin: 30px 0 0;
  color: #c9c6c4;
}
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 28px;
  color: #eda782;
  font-weight: 800;
}
.capability-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.capability-list > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}
.capability-list span {
  grid-row: span 2;
  color: #df8d64;
  font-size: 0.75rem;
  font-weight: 800;
}
.capability-list h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}
.capability-list p {
  margin: 0;
  color: #aaa6a4;
  font-size: 0.88rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.process-grid article {
  min-height: 230px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid h3 {
  margin: 48px 0 8px;
  font-size: 1.08rem;
}
.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.safety {
  background:
    linear-gradient(135deg, rgba(184, 86, 39, 0.96), rgba(137, 62, 28, 0.98)),
    var(--copper);
  color: white;
}
.safety-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 100px;
}
.safety-heading h2 {
  color: white;
}
.safety .eyebrow {
  color: white;
}
.safety .eyebrow span {
  background: rgba(255, 255, 255, 0.72);
}
.safety-content .large-copy {
  color: white !important;
}
.safety-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 40px;
}
.safety-points div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  background: rgba(42, 42, 44, 0.13);
}
.safety-points strong,
.safety-points span {
  display: block;
}
.safety-points strong {
  margin-bottom: 7px;
  font-size: 0.9rem;
}
.safety-points span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}
.coverage-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.coverage-options article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
.coverage-options span {
  color: var(--copper);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.coverage-options h3 {
  margin: 26px 0 8px;
  font-size: 1rem;
}
.coverage-options p {
  margin: 0;
  font-size: 0.84rem;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 78px;
  padding: 60px;
  border-radius: 32px;
  background: var(--charcoal);
  color: white;
  box-shadow: var(--shadow);
}
.contact h2 {
  color: white;
}
.contact-copy > p:not(.eyebrow) {
  margin-top: 26px;
  color: #c7c3c0;
}
.direct-contact {
  display: grid;
  gap: 14px;
  margin-top: 44px;
}
.direct-contact a,
.direct-contact div {
  display: flex;
  flex-direction: column;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.direct-contact small {
  color: #bfbbb8;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.direct-contact strong {
  font-size: 0.92rem;
}
.contact-form {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 30px;
  border-radius: 22px;
  background: white;
  color: var(--ink);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form label,
.contact-form label > span {
  display: block;
}
.contact-form label > span {
  margin-bottom: 7px;
  color: #5c5754;
  font-size: 0.75rem;
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #ddd7d2;
  border-radius: 12px;
  background: #fbfaf9;
  color: var(--ink);
  outline: none;
}
.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 13px;
}
.contact-form textarea {
  min-height: 124px;
  resize: vertical;
  padding: 12px 13px;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(184, 86, 39, 0.1);
}
.contact-form .button {
  justify-self: start;
  border: 0;
}
.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}
.form-note a {
  color: var(--copper-dark);
  font-weight: 800;
}
.form-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.form-status.is-success {
  color: #287341;
}
.form-status.is-error {
  color: #a32f26;
}
.website-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.site-footer {
  padding: 78px 0 26px;
  background: #202022;
  color: white;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  gap: 80px;
}
.footer-brand img {
  width: 230px;
  max-width: 100%;
  height: auto !important;
  aspect-ratio: 1453 / 638;
  object-fit: contain;
  padding: 8px;
  border-radius: 8px;
  background: white;
}
.footer-brand p {
  max-width: 420px;
  margin-top: 24px;
  color: #c8c4c2;
  font-weight: 700;
}
.site-footer h2 {
  margin: 0 0 20px;
  color: #eaa17c;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: #c8c4c2;
  font-size: 0.84rem;
}
.site-footer a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 58px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom p,
.footer-bottom a {
  margin: 0;
  color: #918d8b;
  font-size: 0.75rem;
}

.legal-page {
  min-height: 100vh;
  padding: 70px 0;
  background: var(--warm);
}
.legal-shell {
  max-width: 830px;
}
.legal-logo img {
  width: 230px;
  height: auto !important;
  aspect-ratio: 1453 / 638;
  object-fit: contain;
  margin-bottom: 70px;
}
.legal-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
}
.legal-lead {
  margin: 28px 0 50px;
  color: var(--muted);
  font-size: 1.2rem;
}
.legal-page h2 {
  margin: 36px 0 8px;
  color: var(--copper-dark);
  font-size: 1.1rem;
}
.legal-page p {
  color: #55514f;
}
.legal-page p a {
  color: var(--copper-dark);
  font-weight: 800;
}
.legal-meta {
  margin: 50px 0 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}
.error-page {
  padding-top: 2vh;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
  }
  .hero-grid {
    gap: 48px;
  }
  .service-grid,
  .outcome-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .capability-grid,
  .safety-grid,
  .coverage-grid,
  .contact-shell {
    gap: 54px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 82px 0;
  }
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .desktop-nav,
  .header-call {
    display: none;
  }
  .mobile-menu {
    position: relative;
    display: block;
  }
  .mobile-menu summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    border-radius: 50%;
    background: var(--charcoal);
    cursor: pointer;
    list-style: none;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu summary span {
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: white;
  }
  .mobile-menu nav {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: min(300px, calc(100vw - 40px));
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
  }
  .mobile-menu nav a {
    padding: 11px 8px;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
  }
  .mobile-menu nav a:last-child {
    border: 0;
  }
  .mobile-menu .mobile-call {
    margin-top: 8px;
    border-radius: 12px;
    background: var(--copper-soft);
    color: var(--copper-dark);
    text-align: center;
  }
  .hero {
    padding-top: 62px;
  }
  .hero-grid,
  .intro-grid,
  .services-head,
  .process-head,
  .capability-grid,
  .safety-grid,
  .coverage-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 70px;
  }
  .hero-visual {
    width: min(88%, 500px);
    justify-self: center;
  }
  .intro-grid,
  .services-head,
  .process-head {
    gap: 20px;
  }
  .intro-copy,
  .services-head > p,
  .process-head > p {
    padding-top: 0;
    margin-top: 10px;
  }
  .capability-copy {
    position: static;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .coverage-grid {
    gap: 46px;
  }
  .contact-shell {
    padding: 40px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .section {
    padding: 68px 0;
  }
  .header-inner {
    min-height: 72px;
  }
  .brand img {
    width: 100%;
  }
  .brand {
    width: 155px;
  }
  .hero {
    padding-top: 48px;
  }
  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }
  .hero-lead {
    font-size: 1rem;
  }
  .hero-actions,
  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }
  .hero-trust {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .hero-trust div {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
  }
  .visual-label-top {
    left: -12px;
  }
  .visual-label-bottom {
    right: -10px;
  }
  .visual-stamp {
    right: -5px;
    width: 92px;
    height: 92px;
  }
  .hero-contact-strip {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .outcome-grid,
  .service-grid,
  .process-grid,
  .safety-points,
  .coverage-options,
  .field-row {
    grid-template-columns: 1fr;
  }
  .outcome-grid article,
  .service-card,
  .process-grid article {
    min-height: unset;
  }
  .outcome-grid h3,
  .service-card h3,
  .process-grid h3 {
    margin-top: 34px;
  }
  .contact-shell {
    width: 100%;
    padding: 34px 20px;
    border-radius: 0;
  }
  .contact-form {
    padding: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
  .legal-page {
    padding: 38px 0;
  }
  .legal-logo img {
    width: 190px;
    margin-bottom: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
