:root {
  --ink-950: #06080f;
  --ink-900: #0a0d16;
  --ink-800: #121824;
  --ink-700: #1b2535;
  --slate-500: #667086;
  --slate-400: #8a93a8;
  --slate-300: #b3bbca;
  --slate-200: #d8dde7;
  --page: #edf1f6;
  --card: #ffffff;
  --line: #d8dfeb;
  --brand-red: #cc1117;
  --brand-red-strong: #e0181f;
  --brand-red-dark: #9d0d12;
  --silver: #e6ebf3;
  --shadow-soft: 0 14px 32px rgba(7, 12, 22, 0.08);
  --shadow-card: 0 12px 26px rgba(10, 14, 24, 0.09);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.58;
  color: var(--ink-800);
  background: var(--page);
}

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

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

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

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

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  padding: 0.7rem 0.95rem;
  border-radius: 10px;
  background: var(--brand-red);
  color: #fff;
  font-weight: 700;
}

.top-strip {
  background: linear-gradient(90deg, #131926 0%, #241014 100%);
  border-bottom: 1px solid rgba(230, 235, 243, 0.14);
  color: #edf1f8;
  font-size: 0.95rem;
}

.top-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.3rem;
  padding: 0.55rem 0;
}

.top-strip strong {
  color: #ffffff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 3000;
  border-bottom: 1px solid transparent;
  background: rgba(6, 8, 15, 0.72);
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.site-header.scrolled {
  background: rgba(6, 8, 15, 0.94);
  border-color: rgba(217, 224, 236, 0.15);
}

.nav-row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand .label {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
  color: #f6f8fd;
  letter-spacing: 0.01em;
  font-size: 1.42rem;
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.26rem;
}

.main-nav a,
.nav-services-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: #eef2fb;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0.62rem 0.92rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-services-toggle {
  appearance: none;
  background: transparent;
  cursor: pointer;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-services:hover .nav-services-toggle,
.nav-services:focus-within .nav-services-toggle {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(211, 220, 235, 0.25);
}

.nav-services {
  position: relative;
}

.nav-services-menu {
  position: absolute;
  top: 108%;
  left: 0;
  min-width: 286px;
  padding: 0.3rem;
  border-radius: 14px;
  background: #111827;
  border: 1px solid #2f3e57;
  box-shadow: 0 18px 30px rgba(4, 6, 10, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-services:hover .nav-services-menu,
.nav-services:focus-within .nav-services-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-services-menu a {
  display: block;
  border-radius: 10px;
  padding: 0.7rem 0.85rem;
}

.nav-services-menu a:hover,
.nav-services-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font: inherit;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 0.78rem 1.35rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(130deg, var(--brand-red-strong), var(--brand-red-dark));
  border-color: #ef3d44;
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(130deg, #ef252d, #ab0f14);
}

.btn-outline {
  border-color: #2a3448;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.9);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #131b2b;
  background: #fff;
}

.hero .btn-outline,
.site-header .btn-outline {
  border-color: rgba(226, 233, 245, 0.45);
  background: transparent;
  color: #f7f9fd;
}

.hero .btn-outline:hover,
.hero .btn-outline:focus-visible,
.site-header .btn-outline:hover,
.site-header .btn-outline:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.menu-toggle {
  display: none;
  font: inherit;
  font-weight: 700;
  color: #ecf1fb;
  border: 1px solid #38465e;
  border-radius: 10px;
  background: #0f1522;
  padding: 0.45rem 0.6rem;
}

.mobile-nav {
  display: none;
  border-top: 1px solid rgba(215, 224, 236, 0.18);
  padding: 0.8rem 0 1rem;
}

.mobile-nav a {
  display: block;
  margin-bottom: 0.4rem;
  padding: 0.72rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #2f3d56;
  background: #101827;
  font-weight: 700;
  color: #f0f4fc;
}

.mobile-nav .service-links {
  padding-left: 0.55rem;
}

.page-main {
  overflow: clip;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding-top: 126px;
  color: #fff;
  background: #090c14;
}

.hero.short {
  min-height: 62vh;
}

.hero .backdrop {
  position: absolute;
  inset: 0;
}

.hero .backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7, 10, 17, 0.78) 0%, rgba(7, 10, 17, 0.54) 48%, rgba(7, 10, 17, 0.66) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  padding: 2.8rem 0 4rem;
}

.hero-home .hero-content {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.78rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffe3e4;
  border: 1px solid rgba(255, 121, 127, 0.55);
  background: rgba(204, 17, 23, 0.22);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  line-height: 1.1;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 5.4vw, 4.2rem);
  margin-top: 0.95rem;
}

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

h3 {
  font-size: clamp(1.2rem, 1.95vw, 1.62rem);
}

.hero p {
  color: #d7deec;
  max-width: 690px;
  font-size: clamp(0.97rem, 1.25vw, 1.12rem);
  margin: 1rem 0 1.7rem;
}

.hero-home .hero p {
  margin-inline: auto;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.hero-home .action-row {
  justify-content: center;
}

.stat-bar {
  margin-top: 2.1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
}

.hero-home .stat-bar {
  justify-content: center;
  gap: 0.2rem;
}

.stat-chip {
  min-width: 160px;
  border-radius: 12px;
  border: 1px solid rgba(218, 226, 240, 0.24);
  background: rgba(8, 12, 20, 0.46);
  padding: 0.8rem 1rem;
}

.hero-home .stat-chip {
  min-width: 172px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(216, 225, 240, 0.24);
  border-radius: 0;
  padding: 0.8rem 1.4rem;
}

.hero-home .stat-chip:last-child {
  border-right: 0;
}

.stat-chip strong {
  display: block;
  color: #fff;
  font-size: 1.75rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 700;
}

.stat-chip span {
  color: #ccd5e8;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-band {
  background: linear-gradient(90deg, #19111a 0%, #111a28 100%);
  border-top: 1px solid rgba(216, 224, 236, 0.13);
  border-bottom: 1px solid rgba(216, 224, 236, 0.13);
  color: #ecf1fb;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  padding: 0.95rem 0;
  font-weight: 700;
}

.section {
  padding: 5.15rem 0;
}

.section.tight {
  padding: 4.15rem 0;
}

.section.alt {
  background: #f4f7fc;
}

.section.dark-slab {
  background: linear-gradient(135deg, #121a2a 0%, #1c0f14 100%);
  color: #f4f8ff;
}

.section.dark-slab .section-title p {
  color: #cfdae8;
}

.section.dark-slab .tag {
  border-color: rgba(255, 150, 155, 0.56);
  color: #ffe6e8;
}

.section-title {
  max-width: 790px;
  margin-bottom: 1.45rem;
}

.section-title p {
  margin: 0.8rem 0 0;
  color: var(--slate-500);
  font-size: 1.08rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  align-items: center;
  gap: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.card.pad {
  padding: 1.3rem;
}

.card p {
  color: var(--slate-500);
}

.bullet-list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.bullet-list li {
  position: relative;
  padding-left: 1.55rem;
  font-weight: 600;
  color: #1a2437;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 999px;
  background: linear-gradient(130deg, var(--brand-red-strong), var(--brand-red-dark));
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card img {
  height: 240px;
  object-fit: cover;
}

.service-card .content {
  padding: 1.12rem 1rem 1.18rem;
}

.service-card h3 {
  margin-bottom: 0.45rem;
}

.service-card p {
  margin: 0 0 0.8rem;
  color: var(--slate-500);
}

.service-card .link {
  color: var(--brand-red-dark);
  font-weight: 700;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
  pointer-events: none;
}

.service-card:hover::after {
  border-color: #e86e73;
}

.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rule-box {
  border-radius: var(--radius);
  border: 1px solid #d5ddeb;
  background: #fff;
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-soft);
}

.rule-box h3 {
  margin-bottom: 0.68rem;
}

.rule-box ul {
  margin: 0;
  padding-left: 1.1rem;
}

.rule-box li {
  margin-bottom: 0.42rem;
  color: #263147;
}

.rule-alert {
  border-radius: 14px;
  border: 1px solid #ff9ea3;
  background: #ffe2e3;
  color: #7e0c11;
  padding: 0.95rem 1rem;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.82rem;
}

.gallery-grid .item {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d4dceb;
  background: #fff;
}

.gallery-grid img {
  height: 200px;
  object-fit: cover;
}

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

.faq-item {
  border: 1px solid #d5ddeb;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.92rem 1rem;
  font-weight: 700;
  color: #141d2f;
}

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

.faq-item p {
  margin: 0;
  padding: 0 1rem 0.98rem;
  color: var(--slate-500);
}

.cta-band {
  border-radius: 24px;
  border: 1px solid #f06c73;
  background: linear-gradient(130deg, #cb1218 0%, #8f0d12 100%);
  color: #fff;
  padding: 2.1rem;
  text-align: center;
  box-shadow: 0 18px 36px rgba(153, 13, 18, 0.28);
}

.cta-band p {
  margin-top: 0.8rem;
  color: #ffe8e8;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.1rem;
}

.quote-frame {
  min-height: 680px;
  border-radius: var(--radius);
  border: 1px dashed #cad3e3;
  background: #f5f7fb;
  overflow: hidden;
}

.quote-contact {
  padding: 1.15rem;
}

.detail-row {
  display: flex;
  gap: 0.66rem;
  margin-bottom: 0.88rem;
}

.detail-row strong {
  display: block;
  color: #10192b;
}

.detail-row span {
  color: var(--slate-500);
}

.detail-row a {
  color: #111a2d;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.detail-row a:hover {
  color: #000;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.82rem;
  font-size: 0.94rem;
  color: #d9e1ef;
}

.breadcrumbs a {
  color: #f4f7fc;
}

.split-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #cfd8e8;
  box-shadow: var(--shadow-card);
}

.split-image img {
  height: 100%;
  max-height: 480px;
  object-fit: cover;
}

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

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

.step-card {
  padding: 1.2rem 1.05rem;
}

.step-number {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 36, 42, 0.14);
  border: 1px solid rgba(224, 36, 42, 0.36);
  color: var(--brand-red-dark);
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.step-card p {
  margin: 0.55rem 0 0;
}

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

.review-card {
  padding: 1.2rem 1.05rem;
}

.review-stars {
  font-size: 1rem;
  color: #d19100;
  letter-spacing: 0.04em;
  margin-bottom: 0.65rem;
}

.review-card blockquote {
  margin: 0;
  color: #1e2940;
  font-weight: 500;
}

.review-meta {
  margin-top: 0.95rem;
  padding-top: 0.85rem;
  border-top: 1px solid #dfe5f0;
}

.review-meta strong {
  display: block;
}

.review-meta span {
  color: var(--slate-500);
}

.areas-wrap {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 1rem;
}

.areas-box {
  border-radius: var(--radius);
  border: 1px solid rgba(223, 231, 244, 0.2);
  background: rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.area-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.area-list li {
  border-radius: 10px;
  border: 1px solid rgba(228, 236, 247, 0.2);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.52rem 0.62rem;
  font-weight: 600;
}

.map-frame {
  border-radius: var(--radius);
  border: 1px solid rgba(223, 231, 244, 0.25);
  overflow: hidden;
  min-height: 430px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.mini-stat {
  border: 1px solid #d6deeb;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  padding: 1rem 0.8rem;
  box-shadow: var(--shadow-soft);
}

.mini-stat strong {
  display: block;
  font-size: 1.72rem;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  color: #121b2d;
}

.mini-stat span {
  display: block;
  color: var(--slate-500);
  font-weight: 700;
}

.footer {
  margin-top: 4rem;
  background: #0b111d;
  color: #ecf2ff;
  border-top: 1px solid rgba(224, 231, 243, 0.16);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
  gap: 1rem;
  padding: 2.25rem 0;
}

.footer .brand .label {
  color: #f7faff;
}

.footer p,
.footer li,
.footer a {
  color: #c7d0e2;
}

.footer ul {
  margin: 0.36rem 0 0;
  padding-left: 1.1rem;
}

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

.copyright {
  border-top: 1px solid rgba(216, 225, 238, 0.14);
  color: #9ca8be;
  text-align: center;
  padding: 1rem 0 1.2rem;
  font-size: 0.92rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (max-width: 1060px) {
  .main-nav,
  .nav-cta {
    display: none;
  }

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

  .mobile-nav.open {
    display: block;
  }

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

  .two-col,
  .quote-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .areas-wrap {
    grid-template-columns: 1fr;
  }

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

  .hero-home .stat-chip {
    border-right: 0;
    border: 1px solid rgba(218, 226, 240, 0.24);
    border-radius: 12px;
  }
}

@media (max-width: 700px) {
  .section {
    padding: 4rem 0;
  }

  .hero {
    min-height: 84vh;
    padding-top: 112px;
  }

  .section-title p {
    font-size: 1rem;
  }

  .service-grid,
  .steps-grid,
  .review-grid,
  .columns-3,
  .gallery-grid,
  .rules-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .area-list {
    grid-template-columns: 1fr;
  }

  .quote-frame {
    min-height: 620px;
  }

  .brand .label {
    font-size: 1.35rem;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .top-strip .container {
    justify-content: flex-start;
  }
}
