:root {
  --bg: #0d0f12;
  --surface: #131820;
  --surface-2: #1a2230;
  --card: #11161f;
  --text: #f3f5f8;
  --muted: #b6beca;
  --line: #263042;
  --brand: #e6252a;
  --brand-2: #ff4b50;
  --brand-3: #ff8b8f;
  --accent: #ffffff;
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 8%, #1a202b 0%, var(--bg) 46%), var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a { color: var(--brand-3); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

.container { width: min(1200px, 92vw); margin: 0 auto; }
.section { padding: 4.8rem 0; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.16;
  letter-spacing: -0.012em;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 600;
}
p { margin: 0; color: #c4cedd; }

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(230, 37, 42, 0.18);
  color: #ffd7d8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.62rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 24px rgba(230, 37, 42, 0.33);
}
.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.85);
  background: transparent;
}
.btn-dark-outline {
  color: #e9edf3;
  border-color: #9aa6b9;
  background: transparent;
}
.btn-light {
  color: #1c2433;
  border-color: #ffffff;
  background: #ffffff;
}

.top-strip {
  background: linear-gradient(90deg, #2c2f36, #1e2229);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-strip-grid {
  min-height: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: #dce2eb;
}
.top-strip a { color: #fff; font-weight: 700; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  background: rgba(11, 14, 20, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.64rem;
  color: #fff;
  font-weight: 600;
  min-width: 270px;
}
.brand:hover { text-decoration: none; }
.brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
  filter: drop-shadow(0 5px 14px rgba(0, 0, 0, 0.35));
}
.brand-text {
  font-size: 0.93rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
}

.nav-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  flex: 1;
}
.nav-list li { position: relative; }
.nav-list a,
.dropdown-toggle {
  font-size: 0.93rem;
  font-weight: 600;
  color: #eff3fb;
}
.nav-list a:hover,
.dropdown-toggle:hover { color: #fff; text-decoration: none; }

.dropdown-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
}
.dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 320px;
  border-radius: 12px;
  border: 1px solid #37445e;
  background: #111927;
  box-shadow: var(--shadow);
  display: none;
}
.has-dropdown.open .dropdown-menu { display: block; }
@media (min-width: 961px) {
  .has-dropdown:hover .dropdown-menu { display: block; }
}
.dropdown-menu a {
  display: block;
  padding: 0.58rem 0.72rem;
  border-radius: 8px;
  color: #f4f7ff;
}
.dropdown-menu a:hover {
  background: rgba(230, 37, 42, 0.25);
  text-decoration: none;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.nav-phone {
  color: #ffd7d8;
  font-weight: 600;
  white-space: nowrap;
}
.nav-phone:hover { color: #fff; text-decoration: none; }
.nav-quote { min-height: 42px; padding: 0.5rem 1rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4.8rem;
  min-height: 80vh;
  display: grid;
  align-items: center;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.05) saturate(1.03);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(118deg, rgba(7, 10, 14, 0.86) 0%, rgba(41, 6, 11, 0.75) 58%, rgba(230, 37, 42, 0.45) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 135, 139, 0.25), transparent 38%),
    radial-gradient(circle at 84% 88%, rgba(255, 255, 255, 0.14), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  margin-top: 0.9rem;
  font-size: clamp(2rem, 4.7vw, 4rem);
  color: #fff;
  font-weight: 700;
}
.hero p {
  margin: 1.05rem auto 0;
  max-width: 800px;
  font-size: 1.04rem;
  color: #ebeff5;
}
.cta-row {
  margin-top: 1.55rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.quick-facts {
  margin: 2.4rem auto 0;
  max-width: 680px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fact {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 1rem;
  text-align: center;
}
.fact:last-child { border-right: 0; }
.fact strong {
  display: block;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}
.fact span {
  color: #f8cbcd;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.1rem;
}
.section-head h2 {
  margin-top: 0.66rem;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
}
.section-head p { margin-top: 0.7rem; }

.card {
  border-radius: 18px;
  background: rgba(17, 22, 31, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-grid,
.quote-grid,
.content-grid,
.service-area-grid,
.footer-grid,
.service-hero-grid,
.services-grid,
.process-grid,
.values-grid,
.media-grid {
  display: grid;
  gap: 1rem;
}
.about-grid,
.quote-grid,
.service-area-grid,
.content-grid,
.service-hero-grid {
  grid-template-columns: 1fr 1fr;
}
.services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.media-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #334058;
  background: #111927;
}
.frame img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.about-copy h2,
.content-main h2 { margin-top: 0.85rem; }
.about-copy p,
.content-main p { margin-top: 0.82rem; }

.check-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.62rem;
}
.check-list li {
  list-style: none;
  padding-left: 1.25rem;
  position: relative;
  color: #d8dee8;
}
.check-list li::before {
  content: "?";
  position: absolute;
  left: 0;
  color: #ff8084;
  font-weight: 800;
}

.service-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2f3b51;
  background: #131b29;
}
.service-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-body {
  padding: 0.92rem 0.95rem 1rem;
}
.service-body h3 { color: #ffffff; font-size: 1rem; font-weight: 600; }
.service-body p { margin-top: 0.52rem; font-size: 0.94rem; }
.service-body a {
  margin-top: 0.65rem;
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: #ffd2d3;
}

.process-card,
.value-card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid #2e3a50;
  background: #111826;
}
.process-num {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.process-card h3,
.value-card h3 { margin-top: 0.72rem; font-size: 1.02rem; color: #fff; font-weight: 600; }
.process-card p,
.value-card p { margin-top: 0.45rem; font-size: 0.92rem; }

.review-embed-wrap {
  margin-top: 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #2f3e55;
  background: #0f1624;
}
.review-embed-wrap iframe {
  width: 100%;
  min-height: 430px;
}

.areas-section {
  background: linear-gradient(135deg, #2e0e12, #8e1b20);
}
.areas-section h2,
.areas-section p,
.areas-section h3 { color: #fff; }
.areas-card,
.map-card {
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}
.map-card {
  padding: 0;
  overflow: hidden;
}
.map-embed-wrap {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.map-embed-wrap iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}
.map-card-content {
  padding: 1rem 1rem 1.1rem;
}
.map-card-content p {
  margin-top: 0.48rem;
}
.service-map {
  margin-top: 1rem;
}
.area-grid {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.area-item {
  border-radius: 10px;
  padding: 0.56rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.14);
}
.map-link {
  margin-top: 0.9rem;
  display: inline-flex;
}

.faq-wrap {
  max-width: 980px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid #2f3c52;
  background: #111927;
  padding: 0.22rem 0.95rem;
}
.faq-wrap details {
  border-bottom: 1px solid #2f3c52;
  padding: 0.9rem 0;
}
.faq-wrap details:last-child { border-bottom: 0; }
.faq-wrap summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  list-style: none;
}
.faq-wrap summary::-webkit-details-marker { display: none; }
.faq-wrap p { margin-top: 0.48rem; font-size: 0.95rem; }

.cta-band {
  background: linear-gradient(135deg, #8f191f, #4e0e12);
  text-align: center;
}
.cta-band h2,
.cta-band p { color: #fff; }

.embed,
.contact-panel {
  border-radius: 18px;
  background: #111927;
  border: 1px solid #2f3d54;
  overflow: hidden;
}
.embed { min-height: 760px; }
.embed iframe { width: 100%; height: 100%; border: 0; }
.contact-panel { padding: 1rem; }
.contact-panel h3 { color: #fff; font-size: 1.12rem; }
.contact-list { margin-top: 0.8rem; display: grid; gap: 0.78rem; }
.contact-list-item strong { display: block; color: #fff; font-size: 0.95rem; font-weight: 600; }
.contact-list-item span,
.contact-list-item a { color: #d8deea; font-size: 0.93rem; }
.hours-grid {
  margin-top: 0.68rem;
  display: grid;
  gap: 0.32rem;
  font-size: 0.92rem;
  color: #d8deea;
}

.page-hero,
.service-hero-dark {
  padding: 3.1rem 0 2.7rem;
  background: linear-gradient(130deg, #141c28, #1e1016);
  border-bottom: 1px solid #29344a;
}
.service-breadcrumb {
  color: #b6c0d2;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}
.page-hero h1,
.service-hero-dark h1 { color: #fff; font-size: clamp(1.95rem, 4vw, 3.4rem); }
.page-hero p,
.service-hero-dark p { margin-top: 0.78rem; max-width: 740px; }

.content-main,
.side-card {
  border-radius: 14px;
  background: #111927;
  border: 1px solid #2f3d54;
}
.content-main { padding: 1rem; }
.content-main ul { padding-left: 1.06rem; }
.content-main li { margin: 0.36rem 0; color: #d4dbe8; }
.sidebar { display: grid; gap: 0.8rem; align-content: start; }
.side-card { padding: 0.85rem; }
.side-card h3 { margin-bottom: 0.5rem; color: #fff; }
.side-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
}

.footer {
  background: #0b1018;
  color: #bcc5d5;
  padding: 3.8rem 0 1.2rem;
  border-top: 1px solid #232d40;
}
.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 1.2rem;
}
.footer h3 {
  margin-bottom: 0.64rem;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}
.footer p { color: #cbd3e0; font-size: 0.93rem; }
.footer a { color: #f5f8ff; }
.copy {
  margin-top: 1.8rem;
  border-top: 1px solid #252f42;
  padding-top: 1rem;
  text-align: center;
  color: #97a4bb;
}

@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-grid,
  .values-grid,
  .media-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-grid,
  .quote-grid,
  .content-grid,
  .service-area-grid,
  .footer-grid,
  .service-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .top-strip-grid {
    grid-template-columns: 1fr;
    padding: 0.36rem 0;
    min-height: 0;
    font-size: 0.82rem;
  }
  .brand { min-width: 0; }
  .brand-text { font-size: 0.84rem; }
  .nav-toggle { display: inline-block; margin-left: auto; }
  .nav-panel {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 0.8rem 1rem 1rem;
    background: #0d131d;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }
  .nav-panel.open { display: flex; }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.18rem;
  }
  .dropdown-menu {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    margin-top: 0.2rem;
  }
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-quote { width: 100%; }
  .hero { min-height: 70vh; padding: 4.8rem 0 3.9rem; }
}

@media (max-width: 700px) {
  .section { padding: 3.9rem 0; }
  .services-grid,
  .process-grid,
  .values-grid,
  .media-grid,
  .quick-facts,
  .area-grid { grid-template-columns: 1fr; }
  .fact {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    padding-bottom: 0.68rem;
  }
  .fact:last-child { border-bottom: 0; }
  .hero h1 { font-size: clamp(1.75rem, 8vw, 2.55rem); }
}
