:root {
  --red: #b90438;
  --red-dark: #830025;
  --ink: #111114;
  --charcoal: #222329;
  --muted: #686b73;
  --line: #ded7cf;
  --paper: #fffdf9;
  --warm: #f4efe7;
  --teal: #1e5c61;
  --gold: #b6914c;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(17, 17, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 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;
}

.hidden-field {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 42px;
  color: var(--white);
  background: rgba(8, 8, 10, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(13, 13, 16, 0.94);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.brand span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
  white-space: nowrap;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  line-height: 1.1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.86);
  border-radius: 8px;
  font-size: 0.93rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/hero-acquisition.png");
  background-position: center right;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 7, 9, 0.91) 0%, rgba(11, 11, 13, 0.76) 38%, rgba(12, 12, 14, 0.3) 76%),
    linear-gradient(0deg, rgba(11, 11, 13, 0.92) 0%, rgba(11, 11, 13, 0.1) 34%);
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: #ffcedb;
}

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

h1 {
  max-width: 810px;
  margin-bottom: 22px;
  font-size: 4.7rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  max-width: 100%;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.94rem;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button.primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 32px rgba(185, 4, 56, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #d30845;
  border-color: #d30845;
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.36);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.button.mini {
  min-height: 44px;
  padding: 0 15px;
  color: var(--white);
  background: var(--ink);
}

.button.wide {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(880px, 100%);
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-facts div {
  padding: 18px;
  background: rgba(8, 8, 10, 0.38);
}

.hero-facts dt {
  color: #ffd4df;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 6px 0 0;
  color: var(--white);
  line-height: 1.35;
}

.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

section {
  scroll-margin-top: 84px;
}

.band-light {
  background: var(--warm);
}

.intro {
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.7rem;
  line-height: 1.06;
  letter-spacing: 0;
}

.intro p,
.section-heading p,
.legacy-copy p,
.contact p {
  color: var(--charcoal);
  font-size: 1.05rem;
  line-height: 1.75;
}

.model {
  padding: 86px 0;
  background: var(--paper);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.compact {
  max-width: 720px;
}

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

.model-item {
  min-height: 310px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.item-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 32px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 800;
}

.model-item:nth-child(2) .item-kicker,
.model-item:nth-child(4) .item-kicker {
  background: var(--teal);
}

.model-item h3,
.timeline h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.model-item p,
.timeline p,
.fit-list li {
  color: var(--muted);
  line-height: 1.65;
}

.fit {
  padding: 66px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 15, 18, 0.94), rgba(131, 0, 37, 0.92)),
    var(--red-dark);
}

.fit .eyebrow {
  color: #ffd3df;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1fr);
  gap: 56px;
  align-items: start;
}

.fit h2 {
  margin-bottom: 0;
}

.fit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding: 18px 18px 18px 44px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.fit-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 25px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.legacy {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: #f8f7f4;
}

.legacy-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 18px;
  padding: 42px;
  opacity: 0.13;
  transform: rotate(-8deg) scale(1.08);
  pointer-events: none;
}

.legacy-bg span {
  display: grid;
  place-items: center;
  min-height: 92px;
  color: var(--ink);
  border: 2px solid currentColor;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1.2rem;
}

.legacy-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  gap: 70px;
  align-items: center;
}

.legacy-copy {
  max-width: 690px;
}

.legacy-panel {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.preview-logo {
  display: grid;
  min-height: 230px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  text-align: center;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.14), transparent 30%),
    linear-gradient(145deg, var(--red-dark), var(--ink) 58%, var(--teal));
  border-radius: 8px;
}

.preview-logo span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--red);
  border-radius: 8px;
  font-size: 2.5rem;
  font-weight: 900;
}

.preview-logo strong {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: 1.35rem;
  line-height: 1.2;
}

.preview-logo small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.legacy-panel label {
  display: block;
  margin-top: 18px;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--ink);
}

.legacy-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc7bd;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  min-height: 48px;
  padding: 12px 13px;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(185, 4, 56, 0.18);
  border-color: var(--red);
}

.process {
  padding: 86px 0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.timeline li {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 280px;
  padding: 26px;
  background: rgba(255, 253, 249, 0.74);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-weight: 900;
}

.timeline li:nth-child(even) span {
  background: var(--red);
}

.contact {
  padding: 90px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(9, 9, 11, 0.96), rgba(35, 36, 41, 0.94)),
    var(--ink);
}

.contact .eyebrow {
  color: #ffd3df;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1fr);
  gap: 72px;
  align-items: start;
}

.contact p {
  color: rgba(255, 255, 255, 0.78);
}

address {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
  line-height: 1.8;
}

address a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  line-height: 1.3;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #060607;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand img {
  width: 38px;
  height: 38px;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 1060px) {
  h1 {
    max-width: 720px;
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .model-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .model-item,
  .timeline li {
    min-height: 240px;
  }

  .fit-grid,
  .legacy-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 18px;
  }

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

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

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 69px;
    left: 18px;
    right: 18px;
    display: none;
    padding: 10px;
    flex-direction: column;
    align-items: stretch;
    background: rgba(11, 11, 13, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  }

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

  .site-nav a {
    min-height: 46px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 7, 9, 0.94) 0%, rgba(11, 11, 13, 0.78) 66%, rgba(12, 12, 14, 0.44) 100%),
      linear-gradient(0deg, rgba(11, 11, 13, 0.92) 0%, rgba(11, 11, 13, 0.22) 40%);
  }

  .hero-content,
  .section-inner {
    width: min(100% - 32px, 1180px);
  }

  .hero-content {
    padding-top: 112px;
    padding-bottom: 40px;
  }

  h1 {
    font-size: 3rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-copy {
    font-size: 1.06rem;
  }

  .hero-facts,
  .intro-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-facts div {
    padding: 14px;
  }

  .intro,
  .model,
  .legacy,
  .process,
  .contact {
    padding: 60px 0;
  }

  .model-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .model-item,
  .timeline li {
    min-height: auto;
  }

  .legacy-bg {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    padding: 20px;
  }

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

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 450px) {
  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand small {
    display: none;
  }

  .hero-content {
    padding-top: 100px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.72rem;
  }

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

  .contact-form,
  .legacy-panel {
    padding: 18px;
  }
}
