:root {
  --color-brand: #da0812;
  --color-brand-hover: #b90810;
  --color-brand-dark: #a7070d;
  --color-dark: #1d1d1b;
  --color-dark-secondary: #292927;
  --color-surface-dark: #242422;
  --color-white: #ffffff;
  --color-background-light: #f6f6f5;
  --color-surface-light: #ffffff;
  --color-border-light: #e4e4e2;
  --color-text-dark: #1d1d1b;
  --color-text-muted: #666663;
  --container: 1320px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 18px 50px rgb(15 15 14 / 10%);
  --header-height: 84px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text-dark);
  background: var(--color-background-light);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--color-brand);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 18px;
  color: var(--color-white);
  background: var(--color-brand);
  transform: translateY(-160%);
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--color-brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1.2;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button::after {
  font-size: 1.2em;
  line-height: 1;
  content: "↗";
}

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

.button-primary {
  color: var(--color-white);
  background: var(--color-brand);
}

.button-primary:hover {
  background: var(--color-brand-hover);
}

.button-secondary {
  color: var(--color-white);
  border-color: rgb(255 255 255 / 45%);
  background: rgb(255 255 255 / 6%);
}

.button-secondary:hover {
  border-color: var(--color-white);
  background: rgb(255 255 255 / 13%);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 100;
}

.header-utility {
  color: rgb(255 255 255 / 78%);
  background: rgb(12 12 11 / 72%);
  font-size: 0.82rem;
}

.header-utility .container {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
}

.utility-links {
  display: flex;
  gap: 24px;
}

.utility-links a:hover {
  color: var(--color-white);
}

.header-main {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 32px;
  margin-top: 14px;
  padding: 12px 18px 12px 24px;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: margin 180ms ease, border-radius 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  position: fixed;
}

.site-header.is-scrolled .header-utility {
  display: none;
}

.site-header.is-scrolled .header-main {
  min-height: 68px;
  margin-top: 8px;
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  box-shadow: 0 12px 36px rgb(15 15 14 / 14%);
}

.brand-logo {
  position: relative;
  z-index: 2;
  width: 205px;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: auto;
}

.primary-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 28px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a,
.nav-toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 0;
  color: var(--color-dark);
  background: transparent;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.nav-list a:hover,
.nav-toggle:hover,
.nav-list a[aria-current="page"],
.nav-toggle[aria-current="page"] {
  color: var(--color-brand);
}

.nav-item-dropdown {
  position: relative;
}

.nav-toggle::after {
  margin-left: 7px;
  font-size: 0.78em;
  content: "⌄";
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: -18px;
  min-width: 255px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-submenu a {
  min-height: 46px;
  padding: 8px 12px;
  border-radius: 10px;
  white-space: normal;
}

.nav-submenu a:hover {
  background: var(--color-background-light);
}

.nav-item-dropdown:hover .nav-submenu,
.nav-item-dropdown:focus-within .nav-submenu,
.nav-item-dropdown.is-open .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.header-cta {
  min-height: 48px;
  padding-inline: 20px;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-dark);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  margin-block: 4px;
}

.hero {
  position: relative;
  min-height: 840px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-dark);
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 68%;
}

.hero-media::after {
  background: linear-gradient(90deg, rgb(12 12 11 / 92%) 0%, rgb(12 12 11 / 72%) 44%, rgb(12 12 11 / 20%) 75%), linear-gradient(0deg, rgb(12 12 11 / 68%) 0%, transparent 52%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 840px;
  align-items: end;
  padding-top: 190px;
  padding-bottom: 92px;
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 850px;
}

.hero .eyebrow {
  color: #ff5960;
}

.hero h1,
.hero h2 {
  max-width: 810px;
  margin: 0;
  font-size: clamp(3.4rem, 6.1vw, 6.7rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 span,
.hero h2 span {
  color: #ff3c45;
}

.hero-lead {
  max-width: 690px;
  margin: 28px 0 34px;
  color: rgb(255 255 255 / 82%);
  font-size: clamp(1rem, 1.45vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-index {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  width: min(34vw, 460px);
  align-items: center;
  justify-content: space-between;
  padding: 22px 34px;
  background: var(--color-brand);
}

.hero-index strong {
  font-size: 1.2rem;
}

.hero-index span {
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.facts {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  color: var(--color-white);
  background: var(--color-dark);
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgb(255 255 255 / 14%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.fact {
  min-height: 142px;
  padding: 30px 26px;
  border-right: 1px solid rgb(255 255 255 / 14%);
}

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

.fact strong {
  display: block;
  color: var(--color-white);
  font-size: clamp(2rem, 3vw, 3.35rem);
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 9px;
  color: rgb(255 255 255 / 58%);
  font-size: 0.83rem;
  line-height: 1.35;
}

.offer-preview {
  padding: 110px 0;
  background: var(--color-background-light);
}

.offer-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.offer-intro h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.offer-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.08rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.offer-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background: var(--color-dark-secondary);
}

.offer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.offer-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(12 12 11 / 92%) 0%, rgb(12 12 11 / 12%) 68%);
  content: "";
}

.offer-card:hover img {
  transform: scale(1.035);
}

.offer-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 38px;
}

.offer-card small {
  color: #ff646b;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card h3 {
  max-width: 500px;
  margin: 12px 0 16px;
  font-size: clamp(1.8rem, 3vw, 3.05rem);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.offer-card p {
  max-width: 520px;
  margin: 0 0 20px;
  color: rgb(255 255 255 / 76%);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-weight: 800;
}

.text-link::after {
  color: var(--color-brand);
  font-size: 1.35em;
  content: "→";
}

@media (max-width: 1180px) {
  .header-cta {
    display: none;
  }

  .nav-list {
    gap: 13px;
  }

  .nav-list a,
  .nav-toggle {
    font-size: 0.84rem;
  }

  .brand-logo {
    width: 180px;
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 70px;
  }

  .header-utility {
    display: none;
  }

  .header-main {
    min-height: var(--header-height);
    margin-top: 12px;
    padding: 10px 12px 10px 18px;
    border-radius: 20px;
  }

  .brand-logo {
    width: 175px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 1;
    display: grid;
    align-content: start;
    padding: 112px 24px 40px;
    background: var(--color-white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .menu-open .primary-nav {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-list {
    display: grid;
    align-items: stretch;
    gap: 0;
    margin-top: 30px;
  }

  .nav-list > li {
    border-bottom: 1px solid var(--color-border-light);
  }

  .nav-list a,
  .nav-toggle {
    width: 100%;
    min-height: 54px;
    justify-content: space-between;
    font-size: 1.1rem;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    padding: 0 0 10px 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-item-dropdown.is-open .nav-submenu {
    display: block;
  }

  .menu-open .menu-toggle span {
    opacity: 0;
  }

  .menu-open .menu-toggle::before {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-open .menu-toggle::after {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero,
  .hero-inner {
    min-height: 740px;
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(3rem, 10vw, 5.6rem);
  }

  .hero-index {
    display: none;
  }

  .facts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .fact:nth-child(3) {
    border-right: 0;
  }

  .fact:nth-child(n + 4) {
    border-top: 1px solid rgb(255 255 255 / 14%);
  }

  .offer-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

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

  .brand-logo {
    width: 152px;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    padding-top: 140px;
    padding-bottom: 66px;
  }

  .hero-media img {
    object-position: 58% 70%;
  }

  .hero-media::after {
    background: linear-gradient(90deg, rgb(12 12 11 / 94%) 0%, rgb(12 12 11 / 60%) 100%), linear-gradient(0deg, rgb(12 12 11 / 75%) 0%, transparent 62%);
  }

  .hero h1,
  .hero h2 {
    font-size: clamp(2.3rem, 11.8vw, 4.2rem);
    overflow-wrap: anywhere;
  }

  .hero-lead {
    margin: 22px 0 28px;
    font-size: 1rem;
  }

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

  .button {
    width: 100%;
  }

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

  .fact,
  .fact:nth-child(3) {
    min-height: 116px;
    padding: 23px 18px;
    border-top: 1px solid rgb(255 255 255 / 14%);
    border-right: 1px solid rgb(255 255 255 / 14%);
  }

  .fact:nth-child(even) {
    border-right: 0;
  }

  .fact:first-child,
  .fact:nth-child(2) {
    border-top: 0;
  }

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

  .offer-preview {
    padding: 72px 0;
  }

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

  .offer-card {
    min-height: 460px;
  }

  .offer-card-content {
    padding: 28px 24px;
  }
}

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

/* Shared editorial system */
.section {
  padding: 110px 0;
}

.section-white {
  background: var(--color-white);
}

.section-light {
  background: var(--color-background-light);
}

.section-dark {
  color: var(--color-white);
  background: var(--color-dark);
}

.section-dark .section-lead,
.section-dark .muted,
.section-dark p {
  color: rgb(255 255 255 / 68%);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading.is-centered {
  display: block;
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.is-centered .eyebrow {
  justify-content: center;
}

.section-title {
  margin: 0;
  font-size: clamp(2.45rem, 4.3vw, 5rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-title em {
  color: var(--color-brand);
  font-style: normal;
}

.section-lead {
  max-width: 700px;
  margin: 0;
  color: var(--color-text-muted);
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
}

.kicker {
  margin: 0 0 14px;
  color: var(--color-brand);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.muted {
  color: var(--color-text-muted);
}

.prose {
  max-width: 760px;
}

.prose h2,
.prose h3 {
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.prose h2 {
  margin: 48px 0 18px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.prose h3 {
  margin: 34px 0 12px;
  font-size: 1.42rem;
}

.prose p,
.prose li {
  color: var(--color-text-muted);
}

.prose a {
  color: var(--color-brand);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.subhero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-dark);
}

.subhero-media,
.subhero-media::after {
  position: absolute;
  inset: 0;
}

.subhero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, 50% 58%);
}

.subhero-media::after {
  background: linear-gradient(90deg, rgb(14 14 13 / 94%) 0%, rgb(14 14 13 / 74%) 48%, rgb(14 14 13 / 22%) 100%), linear-gradient(0deg, rgb(14 14 13 / 48%) 0%, transparent 60%);
  content: "";
}

.subhero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  justify-content: end;
  padding-top: 190px;
  padding-bottom: 76px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0 0 28px;
  padding: 0;
  color: rgb(255 255 255 / 62%);
  font-size: 0.88rem;
  list-style: none;
}

.breadcrumb li + li::before {
  margin-right: 8px;
  color: var(--color-brand);
  content: "/";
}

.breadcrumb a:hover {
  color: var(--color-white);
}

.subhero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(3.1rem, 5.6vw, 6.4rem);
  font-weight: 850;
  letter-spacing: -0.062em;
  line-height: 0.95;
  text-wrap: balance;
}

.subhero h1 em {
  color: #ff444c;
  font-style: normal;
}

.subhero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 6vw, 88px);
  align-items: center;
}

.split.is-reversed .media-frame {
  order: 2;
}

.split-content h2 {
  margin: 0 0 22px;
  font-size: clamp(2.2rem, 3.9vw, 4.3rem);
  letter-spacing: -0.055em;
  line-height: 1;
  text-wrap: balance;
}

.split-content > p {
  color: var(--color-text-muted);
  font-size: 1.06rem;
}

.section-dark .split-content > p {
  color: rgb(255 255 255 / 68%);
}

.media-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-dark-secondary);
}

.media-frame.is-landscape {
  min-height: 460px;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--image-position, 50% 50%);
}

.media-frame::after {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 74px;
  height: 74px;
  border: 1px solid rgb(255 255 255 / 44%);
  border-radius: 50%;
  box-shadow: inset 0 0 0 14px rgb(218 8 18 / 72%);
  content: "";
}

.check-list,
.plain-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--color-text-dark);
  font-weight: 650;
}

.section-dark .check-list li {
  color: var(--color-white);
}

.check-list li::before {
  position: absolute;
  top: 0.35em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-brand);
  font-size: 0.72rem;
  content: "✓";
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button-dark {
  color: var(--color-white);
  background: var(--color-dark);
}

.button-dark:hover {
  background: var(--color-dark-secondary);
}

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

.button-outline-dark:hover {
  color: var(--color-white);
  background: var(--color-dark);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--color-border-light);
  border-left: 1px solid var(--color-border-light);
}

.feature-card {
  min-height: 300px;
  padding: 34px;
  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  background: var(--color-white);
  transition: background-color 180ms ease, color 180ms ease;
}

.feature-card:hover {
  color: var(--color-white);
  background: var(--color-dark);
}

.feature-card:hover p {
  color: rgb(255 255 255 / 68%);
}

.feature-index {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--color-brand);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.feature-index::after {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.feature-card h3 {
  margin: 54px 0 14px;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.feature-card p {
  margin: 0;
  color: var(--color-text-muted);
  transition: color 180ms ease;
}

.spec-table-wrap {
  overflow-x: auto;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-md);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  padding: 20px 24px;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
  text-align: left;
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 32%;
  color: rgb(255 255 255 / 56%);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-table td {
  color: var(--color-white);
  font-weight: 700;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgb(255 255 255 / 14%);
  border-left: 1px solid rgb(255 255 255 / 14%);
}

.number-card {
  min-height: 210px;
  padding: 28px;
  border-right: 1px solid rgb(255 255 255 / 14%);
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.number-card strong {
  display: block;
  color: #ff454e;
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 1;
}

.number-card h3 {
  margin: 22px 0 8px;
  font-size: 1.2rem;
}

.number-card p {
  margin: 0;
  color: rgb(255 255 255 / 60%);
  font-size: 0.92rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  counter-reset: step;
}

.step {
  position: relative;
  min-height: 290px;
  padding: 32px;
  border-top: 1px solid var(--color-border-light);
  border-right: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  counter-increment: step;
}

.step:first-child {
  border-left: 1px solid var(--color-border-light);
}

.step::before {
  display: block;
  margin-bottom: 68px;
  color: var(--color-brand);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  content: "0" counter(step);
}

.step h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.step p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

.equipment-grid,
.tech-grid,
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.equipment-card,
.tech-card,
.industry-card {
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.equipment-card,
.tech-card {
  padding: 30px;
}

.equipment-card h3,
.tech-card h3 {
  margin: 28px 0 10px;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.equipment-card p,
.tech-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.card-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-brand);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.tech-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
}

.tech-card::after {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 96px;
  height: 96px;
  border: 18px solid rgb(218 8 18 / 8%);
  border-radius: 50%;
  content: "";
}

.tech-card .benefit {
  display: block;
  margin-top: 20px;
  color: var(--color-dark);
  font-size: 0.87rem;
  font-weight: 800;
}

.industry-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-dark);
}

.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.industry-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(12 12 11 / 92%) 0%, rgb(12 12 11 / 12%) 72%);
  content: "";
}

.industry-card:hover img {
  transform: scale(1.035);
}

.industry-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 28px;
}

.industry-card h3 {
  margin: 0 0 8px;
  font-size: 1.6rem;
  letter-spacing: -0.035em;
}

.industry-card p {
  margin: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 0.92rem;
}

.industry-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 28px 80px;
  padding: 42px 0;
  border-top: 1px solid var(--color-border-light);
}

.industry-detail:last-child {
  border-bottom: 1px solid var(--color-border-light);
}

.industry-detail h2 {
  margin: 0;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.industry-detail p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.03rem;
}

.callout {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background: var(--color-dark);
}

.callout::after {
  position: absolute;
  right: -110px;
  bottom: -170px;
  width: 420px;
  height: 420px;
  border: 68px solid rgb(218 8 18 / 76%);
  border-radius: 50%;
  content: "";
}

.callout > * {
  position: relative;
  z-index: 2;
}

.callout h2 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2.4rem, 4.5vw, 5.2rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.callout p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: 1.08rem;
}

.footer {
  color: var(--color-white);
  background: #151514;
}

.footer-cta {
  padding: 82px 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: end;
}

.footer-cta h2 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.45rem, 4.6vw, 5.2rem);
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) 0.8fr 0.9fr 1.1fr;
  gap: 56px;
  padding: 78px 0 60px;
}

.footer-brand {
  max-width: 330px;
}

.footer-logo-wrap {
  display: inline-flex;
  width: 230px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--color-white);
}

.footer-brand p {
  margin: 24px 0 0;
  color: rgb(255 255 255 / 60%);
}

.footer h3 {
  margin: 0 0 22px;
  color: rgb(255 255 255 / 46%);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.footer-list a:hover {
  color: #ff5159;
}

.footer-contact-block + .footer-contact-block {
  margin-top: 22px;
}

.footer-contact-block strong {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.footer-contact-block a,
.footer-contact-block span {
  display: block;
  color: rgb(255 255 255 / 68%);
}

.footer-bottom {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid rgb(255 255 255 / 12%);
  color: rgb(255 255 255 / 48%);
  font-size: 0.85rem;
}

/* Home */
.hero-slides,
.hero-slide,
.hero-slide::after {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--slide-position, 52% 68%);
}

.hero-slide::after {
  background: linear-gradient(90deg, rgb(12 12 11 / 92%) 0%, rgb(12 12 11 / 74%) 43%, rgb(12 12 11 / 19%) 76%), linear-gradient(0deg, rgb(12 12 11 / 70%) 0%, transparent 52%);
  content: "";
}

.hero-panel {
  display: none;
}

.hero-panel.is-active {
  display: block;
}

.slider-controls {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 92px;
  z-index: 4;
  display: flex;
  gap: 10px;
}

.slider-button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 44%);
  border-radius: 50%;
  color: var(--color-white);
  background: rgb(15 15 14 / 42%);
  cursor: pointer;
}

.slider-button:hover {
  background: var(--color-brand);
}

.advantage-band {
  position: relative;
  overflow: hidden;
}

.advantage-band::before {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  border: 74px solid rgb(218 8 18 / 78%);
  border-radius: 50%;
  content: "";
}

.home-projects {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.project-stack {
  display: grid;
  gap: 18px;
}

.project-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--color-dark-secondary);
}

.project-stack .project-card {
  min-height: 296px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(12 12 11 / 76%) 0%, transparent 54%);
  content: "";
}

.project-label {
  position: absolute;
  right: 22px;
  bottom: 20px;
  left: 22px;
  z-index: 2;
  color: var(--color-white);
}

.project-label strong {
  display: block;
  font-size: 1.25rem;
}

.project-label span {
  color: rgb(255 255 255 / 62%);
  font-size: 0.85rem;
}

/* Gallery */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid var(--color-border-light);
  border-radius: 999px;
  color: var(--color-text-muted);
  background: var(--color-white);
  font-weight: 750;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--color-dark);
  color: var(--color-white);
  background: var(--color-dark);
}

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

.gallery-item {
  grid-column: span 4;
}

.gallery-item:nth-child(6n + 1),
.gallery-item:nth-child(6n + 5) {
  grid-column: span 7;
}

.gallery-item:nth-child(6n + 2),
.gallery-item:nth-child(6n + 6) {
  grid-column: span 5;
}

.gallery-card {
  position: relative;
  width: 100%;
  min-height: 390px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  color: var(--color-white);
  background: var(--color-dark);
  cursor: zoom-in;
}

.gallery-item:nth-child(6n + 1) .gallery-card,
.gallery-item:nth-child(6n + 5) .gallery-card {
  min-height: 500px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-card:hover img {
  transform: scale(1.035);
}

.gallery-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 60px 22px 20px;
  background: linear-gradient(0deg, rgb(10 10 9 / 88%) 0%, transparent 100%);
  text-align: left;
}

.gallery-caption strong,
.gallery-caption span {
  display: block;
}

.gallery-caption span {
  color: rgb(255 255 255 / 62%);
  font-size: 0.82rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
  color: var(--color-white);
  background: rgb(10 10 9 / 96%);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-figure {
  display: grid;
  max-width: min(1400px, calc(100vw - 130px));
  max-height: calc(100vh - 90px);
  margin: 0;
  gap: 12px;
}

.lightbox-image {
  max-width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
}

.lightbox-caption {
  color: rgb(255 255 255 / 72%);
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 30%);
  border-radius: 50%;
  color: var(--color-white);
  background: rgb(255 255 255 / 6%);
  cursor: pointer;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  top: 50%;
  left: 24px;
}

.lightbox-next {
  top: 50%;
  right: 24px;
}

/* FAQ */
.faq-list {
  border-top: 1px solid var(--color-border-light);
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 88px;
  grid-template-columns: 1fr 44px;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  color: var(--color-dark);
  background: transparent;
  font-size: clamp(1.06rem, 1.5vw, 1.3rem);
  font-weight: 780;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--color-brand);
  font-size: 1.3rem;
  font-weight: 400;
  content: "+";
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 900px;
  margin: 0;
  padding: 0 70px 28px 0;
  color: var(--color-text-muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

/* Forms and contact */
.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 24px;
  align-items: start;
}

.form-aside,
.quote-form,
.contact-card {
  border-radius: var(--radius-md);
  background: var(--color-white);
}

.form-aside {
  position: sticky;
  top: 112px;
  padding: 38px;
}

.form-aside h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.form-aside p {
  color: var(--color-text-muted);
}

.form-aside .contact-line {
  display: block;
  margin-top: 12px;
  color: var(--color-dark);
  font-weight: 800;
}

.quote-form {
  padding: 44px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

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

.form-field label,
.form-label {
  color: var(--color-dark);
  font-size: 0.88rem;
  font-weight: 780;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  color: var(--color-dark);
  background: #fbfbfa;
  font-size: 16px;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-brand);
  outline: 2px solid rgb(218 8 18 / 14%);
}

.form-field [aria-invalid="true"] {
  border-color: var(--color-brand);
}

.field-error {
  min-height: 1.2em;
  color: var(--color-brand-dark);
  font-size: 0.8rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.form-note,
.form-status {
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.form-note a {
  color: var(--color-brand-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  width: 100%;
  min-height: 1.4em;
  font-weight: 650;
}

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

.contact-card {
  padding: 36px;
  border: 1px solid var(--color-border-light);
}

.contact-card h2,
.contact-card h3 {
  margin: 0 0 20px;
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.contact-card a {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--color-brand);
  font-size: 1.08rem;
  font-weight: 800;
}

.company-data {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 42px;
  padding: 48px;
  border-radius: var(--radius-lg);
  color: var(--color-white);
  background: var(--color-dark);
}

.company-data h2 {
  margin: 0 0 20px;
  font-size: 2.4rem;
  letter-spacing: -0.045em;
}

.company-identifiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: start;
}

.company-identifier {
  padding: 20px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-sm);
}

.company-identifier small,
.company-identifier strong {
  display: block;
}

.company-identifier small {
  color: rgb(255 255 255 / 48%);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.company-identifier strong {
  margin-top: 8px;
  font-size: 1rem;
}

.map-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin-top: 18px;
  color: #ff535b;
  font-weight: 800;
}

.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 20px;
  color: var(--color-white);
  background: var(--color-dark);
  text-align: center;
}

.not-found strong {
  display: block;
  color: var(--color-brand);
  font-size: clamp(6rem, 18vw, 14rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.not-found h1 {
  margin: 30px 0 16px;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  letter-spacing: -0.05em;
}

.not-found p {
  max-width: 620px;
  margin: 0 auto 30px;
  color: rgb(255 255 255 / 68%);
}

[hidden] {
  display: none !important;
}

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

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

@media (max-width: 1080px) {
  .feature-grid,
  .equipment-grid,
  .tech-grid,
  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .step:nth-child(3) {
    border-left: 1px solid var(--color-border-light);
  }

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

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: span 6;
  }

  .gallery-item:nth-child(n) .gallery-card {
    min-height: 430px;
  }

  .company-data {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 78px 0;
  }

  .section-heading,
  .split,
  .industry-detail,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 22px;
  }

  .split.is-reversed .media-frame {
    order: 0;
  }

  .media-frame,
  .media-frame.is-landscape {
    min-height: 480px;
  }

  .form-aside {
    position: static;
  }

  .footer-cta-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-projects {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-stack .project-card {
    min-height: 430px;
  }

  .callout {
    padding: 48px 34px;
  }

  .slider-controls {
    right: 20px;
    bottom: 26px;
  }
}

@media (max-width: 620px) {
  .subhero,
  .subhero-inner {
    min-height: 590px;
  }

  .subhero-inner {
    padding-top: 130px;
    padding-bottom: 56px;
  }

  .subhero h1 {
    font-size: clamp(2.65rem, 13.5vw, 4rem);
  }

  .subhero-media::after {
    background: linear-gradient(90deg, rgb(14 14 13 / 94%) 0%, rgb(14 14 13 / 60%) 100%), linear-gradient(0deg, rgb(14 14 13 / 58%) 0%, transparent 60%);
  }

  .feature-grid,
  .equipment-grid,
  .tech-grid,
  .industry-grid,
  .number-grid,
  .steps,
  .footer-main,
  .form-grid,
  .contact-grid,
  .company-identifiers {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 255px;
  }

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

  .step,
  .step:nth-child(n) {
    min-height: 240px;
    border-left: 1px solid var(--color-border-light);
    border-top: 0;
  }

  .step:first-child {
    border-top: 1px solid var(--color-border-light);
  }

  .step::before {
    margin-bottom: 42px;
  }

  .number-card {
    min-height: 170px;
  }

  .callout {
    padding: 42px 24px;
  }

  .callout::after {
    right: -210px;
  }

  .footer-main {
    gap: 38px;
    padding: 58px 0 44px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
  }

  .gallery-item,
  .gallery-item:nth-child(n) {
    grid-column: 1 / -1;
  }

  .gallery-item:nth-child(n) .gallery-card {
    min-height: 390px;
  }

  .filter-button {
    flex: 1 1 calc(50% - 6px);
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-figure {
    max-width: calc(100vw - 28px);
  }

  .lightbox-prev,
  .lightbox-next {
    top: auto;
    bottom: 18px;
  }

  .quote-form,
  .form-aside,
  .contact-card,
  .company-data {
    padding: 28px 22px;
  }

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