:root {
  color-scheme: dark;
  --bg: #0d0f12;
  --bg-alt: #15171b;
  --surface: #1a1d22;
  --surface-soft: #20242a;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f1ea;
  --muted: #b8b1a5;
  --muted-strong: #ddd5c8;
  --accent: #ba1d23;
  --accent-soft: #df5a5f;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

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

a:hover {
  color: var(--muted-strong);
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--text);
  color: var(--bg);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(13, 15, 18, 0.84);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 13px;
  height: 13px;
  background: linear-gradient(135deg, var(--accent), #741216);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-nav a {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease;
}

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

.button-primary {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.08);
  color: white;
}

.button-primary:hover {
  background: #a31a20;
  color: white;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0b0c0e;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 7, 9, 0.9) 0%, rgba(6, 7, 9, 0.72) 42%, rgba(6, 7, 9, 0.34) 100%),
    linear-gradient(180deg, rgba(6, 7, 9, 0.05) 0%, rgba(6, 7, 9, 0.42) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 100px 0 92px;
  max-width: 760px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: #f0d1d2;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  font-weight: 800;
}

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

h1 {
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 11ch;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.5rem;
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 16ch;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-subtitle {
  max-width: 66ch;
  font-size: 1.15rem;
  color: var(--muted-strong);
}

.hero-copy,
.section-intro,
.intro-grid p,
.split-layout p,
.benefit-card p,
.process-step p,
.service-card p,
.location-card p,
.final-cta p,
.faq-list p,
.site-footer p,
.info-panel li {
  color: var(--muted);
}

.hero-copy {
  max-width: 68ch;
}

.cta-row,
.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-line {
  margin-top: 18px;
  max-width: 68ch;
  color: #d9d1c7;
  font-size: 0.94rem;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: #f5f1ea;
  color: #111318;
}

.section-light h2,
.section-light h3 {
  color: #111318;
}

.section-light .section-label {
  color: #8f262b;
}

.section-dark {
  background: var(--bg-alt);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin-bottom: 0;
  max-width: 18ch;
}

.intro-grid,
.split-layout,
.footer-grid {
  display: grid;
  gap: 36px;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.85fr);
  align-items: start;
}

.info-panel {
  padding: 24px;
  background: #ede6dc;
  border: 1px solid rgba(17, 19, 24, 0.1);
}

.info-panel h3 {
  margin-bottom: 14px;
}

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

.check-list li {
  position: relative;
  padding-left: 18px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  transform: translateY(-50%);
}

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

.service-card,
.location-card,
.benefit-card,
.process-step {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
}

.section-light .service-card,
.section-light .location-card,
.section-light .benefit-card,
.section-light .process-step {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(17, 19, 24, 0.1);
}

.service-card a {
  display: inline-block;
  margin-top: 10px;
  color: #e69ca0;
  font-weight: 600;
}

.section-light .service-card a,
.section-light .inline-link {
  color: #8f262b;
}

.split-layout {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.split-layout-reverse > :first-child {
  order: 2;
}

.split-layout-reverse > :last-child {
  order: 1;
}

.image-frame {
  border: 1px solid var(--line);
  overflow: hidden;
}

.section-light .image-frame {
  border-color: rgba(17, 19, 24, 0.12);
}

.image-frame img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.feature-list {
  margin: 20px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

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

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-grid span {
  border: 1px solid rgba(17, 19, 24, 0.12);
  background: rgba(255, 255, 255, 0.45);
  padding: 10px 14px;
  font-size: 0.95rem;
  font-weight: 600;
}

.section-dark .tag-grid span {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}

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

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-step span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 20px;
}

.section-light .faq-list details {
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(17, 19, 24, 0.1);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq-list details p {
  margin: 14px 0 0;
  max-width: 78ch;
}

.final-cta {
  display: grid;
  gap: 20px;
}

.final-cta p {
  max-width: 74ch;
}

.contact-line {
  margin-top: 24px;
  color: #111318;
}

.contact-line span {
  font-weight: 700;
}

.site-footer {
  background: #0b0d10;
  border-top: 1px solid var(--line);
  padding: 52px 0 28px;
}

.footer-partners {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.footer-partners h3 {
  margin: 0;
  font-size: 1rem;
}

.partner-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.partner-links a {
  color: var(--muted);
}

.partner-links a:hover {
  color: var(--text);
}

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

.site-footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

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

.footer-bottom {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .service-grid,
  .location-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .header-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 0;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    padding: 84px 0 72px;
  }

  h1 {
    font-size: 2.95rem;
  }

  h2 {
    font-size: 2rem;
  }

  .intro-grid,
  .split-layout,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .split-layout-reverse > :first-child,
  .split-layout-reverse > :last-child {
    order: initial;
  }

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

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

  .hero-content {
    padding: 68px 0 62px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.72rem;
  }

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

  .button {
    width: 100%;
  }

  .cta-row,
  .contact-line {
    align-items: stretch;
  }

  .contact-line span {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
