:root {
  --ink: #17242a;
  --ink-soft: #33454d;
  --paper: #ffffff;
  --mist: #eef3f4;
  --line: #d8e1e3;
  --cyan: #63c3d1;
  --cyan-dark: #2f8da0;
  --yellow: #f2df16;
  --wine: #571f26;
  --shadow: 0 18px 50px rgb(17 37 45 / 12%);
  --radius: 18px;
  --shell: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 4% 6%, rgb(99 195 209 / 8%), transparent 28rem),
    #f8fafb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-150%);
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  transform: none;
}

.topbar {
  color: #dbe7ea;
  background: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
}

.topbar .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 24px;
}

.topbar .shell > div {
  display: flex;
  gap: 22px;
}

.topbar a {
  color: #fff;
  text-decoration: none;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgb(255 255 255 / 95%);
  border-bottom: 1px solid rgb(23 36 42 / 8%);
  backdrop-filter: blur(14px);
}

.header-main {
  display: flex;
  align-items: center;
  min-height: 96px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 64px;
  height: 69px;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgb(23 36 42 / 13%);
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong {
  color: var(--wine);
  font-size: 1.06rem;
  letter-spacing: 0.09em;
}

.brand small {
  margin-top: 7px;
  color: var(--cyan-dark);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: clamp(11px, 1.4vw, 23px);
}

.main-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a:not(.reserved-link)::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--cyan-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.reserved-link {
  padding: 8px 11px;
  color: var(--wine) !important;
  border: 1px solid rgb(87 31 38 / 28%);
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 10px;
  margin-left: auto;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: clamp(380px, 54vw, 580px);
  isolation: isolate;
  display: grid;
  overflow: clip;
  color: #fff;
}

.hero > img,
.hero-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero > img {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(13 29 36 / 90%) 0%, rgb(13 29 36 / 67%) 48%, rgb(13 29 36 / 14%) 100%),
    linear-gradient(0deg, rgb(13 29 36 / 36%), transparent 45%);
}

.hero-content {
  align-self: center;
  padding-block: 76px;
}

.hero-content > * {
  max-width: 760px;
}

.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.7rem);
  line-height: 0.97;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero p {
  max-width: 670px;
  margin: 25px 0 0;
  color: #e7f0f2;
  font-size: clamp(1rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.hero-home {
  min-height: clamp(540px, 68vw, 730px);
}

.hero-home h1 {
  max-width: 820px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--yellow);
  box-shadow: 0 12px 30px rgb(242 223 22 / 22%);
}

.button-primary:hover {
  background: #fff200;
}

.button-ghost {
  color: #fff;
  background: rgb(255 255 255 / 6%);
  border-color: rgb(255 255 255 / 45%);
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

.section {
  width: var(--shell);
  margin-inline: auto;
  padding-block: clamp(72px, 9vw, 118px);
}

.section-tint {
  position: relative;
}

.section-tint::before {
  position: absolute;
  z-index: -1;
  inset: 26px -6vw;
  content: "";
  background: var(--mist);
  border-radius: 28px;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 44px;
}

.section-heading h2,
.intro-copy h2,
.contact-card h2,
.performance-band h2,
.download-panel h2,
.company-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.72fr);
  gap: clamp(42px, 8vw, 105px);
}

.intro-copy {
  font-size: 1.08rem;
}

.quote {
  max-width: 800px;
  margin: 0 0 22px;
  color: var(--cyan-dark);
  font-weight: 700;
  font-style: italic;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.trust-row span {
  padding: 8px 12px;
  color: var(--ink-soft);
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-card,
.company-card {
  align-self: start;
  padding: 34px;
  color: #dbe9ec;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card h2,
.company-card h2 {
  color: #fff;
  font-size: 2rem;
}

.contact-card p {
  margin: 20px 0;
}

.contact-link,
.company-card a {
  display: block;
  color: #fff;
}

.contact-card .button {
  margin-top: 28px;
  color: var(--ink);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 285px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 35px rgb(17 37 45 / 5%);
}

.service-number,
.certificate-year {
  color: var(--cyan-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 74px 0 12px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--ink-soft);
}

.text-link {
  display: inline-flex;
  gap: 9px;
  margin-top: 30px;
  color: var(--wine);
  font-weight: 800;
  text-decoration: none;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 28px;
}

.split-heading .text-link {
  margin: 0;
}

.project-strip {
  display: grid;
  grid-auto-columns: minmax(300px, 38%);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 20px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--cyan-dark) var(--line);
}

.project-card {
  scroll-snap-align: start;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.project-card h3 {
  min-height: 94px;
  padding: 20px 22px;
  margin: 0;
  color: var(--wine);
  font-size: 1.02rem;
  line-height: 1.35;
}

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

.feature {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 28px;
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.feature > span {
  color: var(--cyan-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.feature h2 {
  margin: 0 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.feature p {
  max-width: 820px;
  margin: 0;
  color: var(--ink-soft);
}

.performance-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(35px, 6vw, 80px);
  padding-inline: clamp(28px, 5vw, 64px);
  color: #dbe9ec;
  background: var(--ink);
  border-radius: 24px;
}

.performance-band h2 {
  color: #fff;
}

.performance-band img {
  width: 100%;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.certificate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.certificate {
  min-height: 265px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.certificate h2 {
  margin: 60px 0 10px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.certificate p {
  color: var(--ink-soft);
}

.featured-certificate {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(170px, 0.8fr) 1fr;
  gap: 28px;
  color: #fff;
  background: var(--ink);
}

.featured-certificate img {
  width: 100%;
  height: 100%;
  max-height: 310px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
}

.featured-certificate h2 {
  margin: 10px 0 14px;
  color: #fff;
}

.featured-certificate p {
  color: #dbe9ec;
}

.download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 38px;
  margin-top: 36px;
  background: var(--mist);
  border-radius: var(--radius);
}

.download-panel h2 {
  font-size: 2rem;
}

.download-panel p {
  margin: 8px 0 0;
}

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  padding: 9px 14px;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
}

.filter-button.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  display: grid;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 14px;
  cursor: zoom-in;
  text-align: left;
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item img,
.gallery-item span {
  grid-area: 1 / 1;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: 0.88;
  transition: transform 260ms ease, opacity 260ms ease;
}

.gallery-item:hover img {
  opacity: 0.65;
  transform: scale(1.025);
}

.gallery-item span {
  align-self: end;
  z-index: 1;
  padding: 50px 20px 18px;
  background: linear-gradient(transparent, rgb(13 29 36 / 88%));
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.lightbox {
  width: min(1000px, calc(100% - 30px));
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: 16px;
  box-shadow: 0 30px 100px rgb(0 0 0 / 45%);
}

.lightbox::backdrop {
  background: rgb(9 20 25 / 82%);
  backdrop-filter: blur(5px);
}

.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #081116;
}

.lightbox p {
  margin: 0;
  padding: 15px 20px;
}

.lightbox-close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgb(9 20 25 / 78%);
  border: 1px solid rgb(255 255 255 / 35%);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
}

.contact-form {
  padding: clamp(25px, 5vw, 50px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-grid label {
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.form-full {
  grid-column: 1 / -1;
}

input,
textarea {
  width: 100%;
  padding: 12px 13px;
  margin-top: 7px;
  color: var(--ink);
  background: #f9fbfb;
  border: 1px solid #c7d3d6;
  border-radius: 9px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
  border-color: var(--cyan-dark);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 4px 0 0;
}

.form-status {
  min-height: 1.5em;
  color: var(--wine);
  font-size: 0.86rem;
  font-weight: 700;
}

.company-card address {
  margin: 20px 0;
  font-style: normal;
}

.company-card dl {
  margin: 25px 0;
}

.company-card dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.company-card dt {
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-card dd {
  margin: 0;
}

.company-card .button {
  color: #fff;
  border-color: rgb(255 255 255 / 40%);
}

.legal-copy {
  max-width: 840px;
}

.legal-copy h2 {
  margin: 52px 0 12px;
  font-size: 1.65rem;
  line-height: 1.2;
}

.legal-copy p {
  color: var(--ink-soft);
}

.legal-update {
  display: inline-block;
  padding: 7px 11px;
  background: var(--mist);
  border-radius: 999px;
  font-size: 0.8rem;
}

.legal-note {
  padding: 22px;
  margin-top: 38px;
  background: #fffbea;
  border-left: 4px solid var(--yellow);
}

.history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(40px, 7vw, 90px);
}

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

.timeline article {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 25px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.timeline article > span {
  color: var(--cyan-dark);
  font-weight: 900;
}

.timeline h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.timeline p {
  margin: 0;
  color: var(--ink-soft);
}

.history-aside {
  align-self: start;
  position: sticky;
  top: 128px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.history-aside img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.history-aside h2,
.history-aside ul {
  margin-inline: 27px;
}

.history-aside h2 {
  margin-top: 25px;
  font-size: 1.45rem;
}

.history-aside ul {
  padding-left: 20px;
  margin-bottom: 28px;
}

.cta-band {
  color: #fff;
  background: var(--wine);
}

.cta-band .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: clamp(48px, 7vw, 80px);
}

.cta-band h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.site-footer {
  padding-top: 68px;
  color: #c8d7da;
  background: #101a1f;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.75fr 0.55fr;
  gap: 45px;
  padding-bottom: 58px;
}

.footer-grid h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 0.79rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  color: #dfe9eb;
}

.footer-grid address {
  margin-bottom: 10px;
  font-style: normal;
}

.footer-brand {
  margin-bottom: 15px;
  color: #fff !important;
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.footer-grid p {
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 8px;
}

.social-links a {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #fff;
  border: 1px solid rgb(255 255 255 / 25%);
  border-radius: 50%;
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  color: #8ca0a6;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.76rem;
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 135px;
    right: 0;
    left: 0;
    display: grid;
    align-content: start;
    justify-content: stretch;
    max-height: calc(100vh - 135px);
    padding: 22px;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    padding: 11px 10px;
    font-size: 0.95rem;
  }

  .main-nav a:not(.reserved-link)::after {
    display: none;
  }

  .reserved-link {
    margin-top: 8px;
    text-align: center;
  }

  .menu-open .menu-toggle > span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle > span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .home-intro,
  .contact-layout,
  .history-layout {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .company-card {
    width: 100%;
  }

  .history-aside {
    position: static;
  }

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

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1160px);
  }

  body {
    font-size: 15px;
  }

  .topbar .shell > span {
    display: none;
  }

  .topbar .shell,
  .topbar .shell > div {
    justify-content: center;
  }

  .header-main {
    min-height: 84px;
  }

  .brand img {
    width: 50px;
    height: 54px;
  }

  .brand strong {
    font-size: 0.89rem;
  }

  .brand small {
    font-size: 0.55rem;
  }

  .main-nav {
    top: 122px;
    max-height: calc(100vh - 122px);
  }

  .hero,
  .hero-home {
    min-height: 560px;
  }

  .hero > img {
    object-position: 62% center;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgb(13 29 36 / 91%), rgb(13 29 36 / 45%));
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.2rem);
  }

  .hero-actions,
  .cta-band .shell,
  .download-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .service-grid,
  .certificate-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section-tint::before {
    inset-inline: 0;
  }

  .featured-certificate {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 230px;
  }

  .service-card h3 {
    margin-top: 42px;
  }

  .project-strip {
    grid-auto-columns: 85%;
  }

  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .performance-band {
    grid-template-columns: 1fr;
    padding-inline: 24px;
  }

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

  .form-full {
    grid-column: auto;
  }

  .feature {
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

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

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

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