:root {
  --red: #dc1f26;
  --red-dark: #b4181e;
  --ink: #111111;
  --ink-2: #1a1a1a;
  --paper: #f3f2ee;
  --white: #ffffff;
  --muted: #5e5e5e;
  --line: #e6e4de;
  --line-dark: rgba(255, 255, 255, 0.12);
  --font: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul,
ol,
dl,
figure {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

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

.skip {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 80;
  background: var(--red);
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
}

.skip:focus {
  top: 12px;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--red);
}

h1,
.h1 {
  font-size: clamp(2.15rem, 4.6vw, 3.85rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;
}

h2,
.h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 600;
}

.lead {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: min(40rem, 100%);
}

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

.icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--red);
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

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

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  border-color: #fff;
}

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

.btn-dark:hover {
  background: #000;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent);
  border-bottom: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav.is-scrolled,
.nav.is-solid {
  background: rgba(17, 17, 17, 0.94);
  border-bottom-color: var(--line-dark);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 2rem));
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}

.brand img {
  height: 42px;
  width: auto;
  background: #fff;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name strong {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-name span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  display: none;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
}

.nav-panel {
  display: none;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: #111;
  border-bottom: 1px solid var(--line-dark);
  padding: 0.5rem 1rem 1.25rem;
}

.nav.is-open .nav-panel {
  display: block;
}

.nav-panel a {
  display: block;
  padding: 0.85rem 0;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  overflow: hidden;
  background: #0b0b0b;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.62) 46%, rgba(8, 8, 8, 0.28) 100%),
    linear-gradient(to top, rgba(8, 8, 8, 0.55), transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: calc(var(--nav-h) + 4.5rem) 1rem 4.5rem;
  width: 100%;
  max-width: min(1120px, 100vw);
  min-width: 0;
  margin-inline: auto;
  box-sizing: border-box;
}

.hero-content h1 {
  max-width: 18ch;
  margin: 0.9rem 0 1.1rem;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.78);
  width: min(36rem, calc(100vw - 2rem));
  max-width: 100%;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.75rem;
  width: min(28rem, calc(100vw - 2rem));
  max-width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  width: min(36rem, calc(100vw - 2rem));
  max-width: 100%;
  min-width: 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-facts > div {
  min-width: 0;
}

.hero-facts strong {
  display: block;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--ink);
  color: #fff;
}

.section-white {
  background: #fff;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.4rem;
}

.section-head p {
  max-width: 36rem;
  color: var(--muted);
}

.section-dark .section-head p,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

.split {
  display: grid;
  gap: 2.2rem;
  align-items: stretch;
}

.split figure {
  margin: 0;
  overflow: hidden;
  background: #d9d6cf;
}

.about-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-copy .lead,
.about-copy p {
  margin-top: 1rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.stat-row strong {
  display: block;
  color: var(--red);
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat-row span {
  font-size: 0.82rem;
  color: var(--muted);
}

.values {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
}

.value {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.value h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.value p {
  font-size: 0.92rem;
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service {
  background: var(--ink-2);
  padding: 1.6rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
}

.service-index {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 600;
}

.service h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.service p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
}

.steps {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  list-style: none;
}

.step {
  background: #fff;
  padding: 1.5rem 1.25rem;
}

.step-num {
  color: var(--red);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.step h3 {
  margin: 0.55rem 0 0.4rem;
  font-size: 1.15rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.logo-cell {
  background: #fff;
  min-height: 168px;
  padding: 1.4rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.9rem;
}

.logo-cell img {
  max-height: 68px;
  max-width: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.logo-cell h3 {
  font-size: 0.82rem;
  font-weight: 500;
  color: #4f4f4f;
  letter-spacing: 0.01em;
}

.note {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  padding: 0 1.15rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding: 1.05rem 0;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--red);
  font-weight: 500;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  padding: 0 0 1.15rem;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 1.15rem;
  margin: 1.5rem 0;
}

.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

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

.contact-list a:hover {
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.map-wrap {
  min-height: 360px;
  border: 1px solid var(--line-dark);
  overflow: hidden;
  background: #000;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

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

.cta-band .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

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

.cta-band .btn:hover {
  background: var(--paper);
}

.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.72);
  padding: 3rem 0 1.6rem;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

.footer-brand img {
  height: 38px;
  width: auto;
  background: #fff;
  margin-bottom: 0.85rem;
}

.footer-brand strong {
  display: block;
  color: #fff;
  margin-bottom: 0.35rem;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.footer-bottom a {
  color: #fff;
}

.legal {
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
}

.legal h1 {
  margin: 0.6rem 0 1.2rem;
}

.legal h2 {
  font-size: 1.2rem;
  margin: 1.8rem 0 0.6rem;
}

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

.legal ul {
  padding-left: 1.2rem;
  display: grid;
  gap: 0.35rem;
  margin: 0.6rem 0 1rem;
}

.not-found {
  min-height: 70svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 6rem 1rem;
}

@media (min-width: 560px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-actions .btn {
    width: auto;
  }
}

@media (min-width: 720px) {
  .split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 3rem;
  }

  .about-photo {
    min-height: 100%;
    height: 100%;
  }

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

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

  .logo-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 460px;
    height: 100%;
  }

  .cta-band .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 980px) {
  .nav-toggle,
  .nav-panel {
    display: none !important;
  }

  .nav-links,
  .nav-cta {
    display: flex;
  }

  .service-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .service {
    grid-column: span 2;
  }

  .service:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .service:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
  }
}

@media (max-width: 640px) {
  .brand-name {
    display: none;
  }

  .hero-facts {
    gap: 0.75rem;
  }

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

  .hero-facts span {
    font-size: 0.75rem;
  }
}

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

  * {
    transition: none !important;
  }
}
