:root {
  --ink: #12151a;
  --steel: #1b222c;
  --panel: #242c38;
  --line: rgba(255, 255, 255, 0.12);
  --muted: #6b7380;
  --paper: #f3f4f6;
  --white: #ffffff;
  --red: #b42318;
  --red-dark: #8f1a12;
  --accent: #7a8494;
  --shadow: 0 18px 40px rgba(18, 21, 26, 0.12);
  --radius: 6px;
  --max: 1100px;
  --header: 72px;
  --font: "IBM Plex Sans", "Segoe UI", sans-serif;
  --display: "IBM Plex Sans Condensed", "Arial Narrow", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}

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

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

a:hover {
  color: var(--red);
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip:focus {
  left: 12px;
  top: 12px;
  z-index: 100;
  background: var(--white);
  padding: 8px 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  height: var(--header);
  display: flex;
  align-items: center;
  background: #101318;
  color: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.wrap {
  width: min(var(--max), calc(100% - 32px));
  max-width: 100%;
  margin: 0 auto;
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--white);
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 1px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-transform: uppercase;
}

.brand-copy span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.nav a {
  padding: 8px 12px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c5ccd6;
}

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

.nav a[aria-current="page"] {
  box-shadow: inset 0 -2px 0 var(--red);
}

.nav .btn:hover {
  color: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

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

.btn-red:hover {
  background: var(--red-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  border-color: var(--white);
  color: var(--white);
}

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

.btn-dark:hover {
  background: #000;
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  padding: 10px 12px;
  border-radius: var(--radius);
  font: inherit;
}

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(16, 19, 24, 0.9) 0%, rgba(16, 19, 24, 0.62) 46%, rgba(16, 19, 24, 0.28) 100%),
    url("../assets/hero-parts.jpg") 32% 58% / cover no-repeat,
    var(--ink);
  color: var(--white);
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 48px 0 56px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 14px;
}

.kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--red);
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
  font-weight: 600;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.6rem);
  max-width: 100%;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
}

.lede {
  max-width: 38rem;
  font-size: 1.12rem;
  color: #d2d7df;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  max-width: 640px;
}

.stat {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
}

.stat b {
  display: block;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
}

.stat span {
  color: #9aa3b0;
  font-size: 0.9rem;
}

.section {
  padding: 80px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head > p,
.muted {
  color: var(--muted);
  max-width: 34rem;
  margin: 0;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  border: 1px solid #e4e7ec;
}

.card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.photo-card {
  padding: 0;
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 40%;
}

.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.photo-split img {
  height: 260px;
}

.photo-card .photo-copy {
  padding: 20px 22px 24px;
}

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

.gallery-item.wide {
  grid-column: 1 / -1;
}

.gallery-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #e4e7ec;
}

.gallery-item img {
  width: 100%;
  height: auto;
  background: #d8dde4;
  object-fit: contain;
}

.gallery-item figcaption {
  padding: 16px 22px 20px;
  color: var(--muted);
  font-size: 0.95rem;
}

.option-bar {
  background: #e8eaee;
  color: #3d4450;
  font-size: 0.88rem;
  padding: 10px 0;
  border-bottom: 1px solid #d5d9e0;
}

.option-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}

.option-bar a {
  color: var(--red);
  font-weight: 600;
}

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

.option-picks a.card {
  color: inherit;
}

.option-picks a.card:hover {
  color: inherit;
  border-color: var(--red);
}

.swatch {
  height: 88px;
  margin: -26px -26px 16px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.swatch-a { background: linear-gradient(135deg, #12151a 40%, #b42318); }
.swatch-b { background: linear-gradient(135deg, #f4f6f8 40%, #1e3a5f); }
.swatch-c { background: linear-gradient(135deg, #0e1116 20%, #3a454f 60%, #b42318); }

.num {
  color: var(--red);
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  margin: 0 0 8px;
}

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

.dark .muted,
.dark .section-head p,
.dark .kicker {
  color: #9aa3b0;
}

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

.step {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.owners {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.logo-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  place-items: center;
  border: 1px solid #e4e7ec;
}

.logo-panel img {
  width: min(100%, 380px);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
}

.cta-band p {
  color: #c5ccd6;
  margin: 0;
}

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0 44px;
}

.page-hero-parts {
  background:
    linear-gradient(105deg, rgba(16, 19, 24, 0.88) 0%, rgba(16, 19, 24, 0.58) 50%, rgba(16, 19, 24, 0.3) 100%),
    url("../assets/hero-parts.jpg") 32% 58% / cover no-repeat,
    var(--ink);
}

.page-hero p {
  max-width: 40rem;
  color: #c5ccd6;
  margin: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 12px 0;
  border-bottom: 1px solid #e4e7ec;
}

.dark .list li {
  border-bottom-color: var(--line);
}

.map {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius);
  margin-top: 8px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
textarea,
select {
  font: inherit;
  padding: 11px 12px;
  border-radius: var(--radius);
  border: 1px solid #d0d5dd;
  background: var(--white);
}

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

.site-footer {
  background: #101318;
  color: #a8b0bb;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

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

.site-footer strong {
  color: var(--white);
  display: block;
  margin-bottom: 10px;
}

.legal {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-size: 0.86rem;
}

@media (max-width: 1100px) {
  .cards,
  .process,
  .owners,
  .split,
  .footer-grid,
  .stats,
  .option-picks,
  .gallery-grid,
  .photo-split {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    min-height: 480px;
    background:
      linear-gradient(180deg, rgba(16, 19, 24, 0.88) 0%, rgba(16, 19, 24, 0.7) 100%),
      url("../assets/hero-parts.jpg") center / cover no-repeat,
      var(--ink);
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    z-index: 50;
    background: #101318;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
  }

  .nav.open {
    display: flex;
  }
}
