:root {
  --pink: #e8759a;
  --pink-hot: #ff5f9f;
  --pink-dark: #b83f67;
  --pink-soft: #fff0f6;
  --pink-wash: #ffe3ee;
  --black: #111111;
  --charcoal: #1b1b20;
  --ink: #24222a;
  --muted: #6f6670;
  --line: #ead8df;
  --surface: #f7f7f8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Trebuchet MS", "Avenir Next", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  letter-spacing: 0;
}
body.nav-open { overflow: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3.25vw, 3.55rem);
  max-width: 820px;
  font-weight: 800;
}
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  font-weight: 800;
}
h3 { font-size: 1.05rem; }
ul { margin: 0; padding: 0; }
li { list-style: none; }

.container { width: min(100% - 32px, var(--container)); margin: 0 auto; }
.narrow { max-width: 820px; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 99999;
  padding: 10px 14px;
  background: var(--pink);
  color: var(--black);
  border-radius: var(--radius);
  font-weight: 800;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease;
}
.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(17, 17, 17, 0.96);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}
.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}
.brand img,
.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
}
.brand span,
.footer-brand span {
  font-size: 1.08rem;
  line-height: 1.1;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav > a,
.nav-dropdown > button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.nav-phone { color: #ffe3ec; }
.nav-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 285px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: 160ms ease;
}
.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
}
.dropdown-panel a:hover { background: var(--pink-soft); color: var(--pink-dark); }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--pink); color: var(--black); border-color: var(--pink); }
.btn-primary:hover { background: #f39ab7; border-color: #f39ab7; }
.btn-outline { color: var(--white); border-color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.08); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-small { min-height: 42px; padding: 8px 14px; }
.button-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 26px; }
.button-row.center { justify-content: center; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-dark);
  font-weight: 900;
  margin-top: 8px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}
.inner-hero {
  min-height: 430px;
  padding-top: 90px;
  background-size: cover;
  background-position: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.78), rgba(184, 63, 103, 0.42), rgba(17, 17, 17, 0.55)),
    rgba(0, 0, 0, 0.38);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 150px 0 84px;
}
.home-hero .hero-content {
  text-align: center;
  display: grid;
  justify-items: center;
}
.hero h1 {
  text-shadow:
    0 0 12px rgba(255, 95, 159, 0.58),
    0 0 34px rgba(232, 117, 154, 0.45),
    0 3px 18px rgba(0, 0, 0, 0.75);
}
.hero-content p {
  max-width: 760px;
  font-size: 1.06rem;
  color: rgba(255,255,255,0.88);
}
.hero-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--pink);
  font-size: 0.77rem;
  font-weight: 950;
  text-transform: uppercase;
}
.hero-kicker {
  padding: 8px 14px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 95, 159, 0.33);
  border: 1px solid rgba(255, 186, 209, 0.72);
  box-shadow: 0 0 24px rgba(255, 95, 159, 0.32);
}
.hero-stats {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 54px;
}
.hero-stats div {
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,0.28);
}
.hero-stats div:last-child { border-right: 0; }
.hero-stats strong { display: block; font-size: 2.2rem; line-height: 1; }
.hero-stats span {
  display: block;
  margin-top: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

.section { padding: 82px 0; }
.bg-soft { background: var(--pink-soft); }
.bg-dark {
  background: linear-gradient(135deg, var(--black) 0%, #211018 58%, #4a1729 100%);
  color: var(--white);
}
.bg-dark p,
.bg-dark li,
.bg-dark .section-intro p { color: rgba(255,255,255,0.78); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
}
.section-intro {
  max-width: 760px;
  margin-bottom: 34px;
}
.section-intro.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-intro p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 14px;
}
.media-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.media-pair img {
  min-height: 340px;
}
.media-pair img:nth-child(2) {
  margin-top: 50px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.service-card,
.value-grid article,
.standards-list article,
.expertise-grid article,
.service-photo,
.process-step,
.contact-card,
.related-box,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17,17,17,0.06);
}
.service-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border-top: 4px solid var(--pink);
}
.service-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.service-card div { padding: 18px; }
.service-card p { color: var(--muted); font-size: 0.95rem; }
.service-card a {
  color: var(--pink-dark);
  font-weight: 950;
}

.standards-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
}
.standards-list {
  display: grid;
  gap: 16px;
}
.standards-list article,
.value-grid article,
.expertise-grid article {
  padding: 24px;
}
.value-grid article,
.expertise-grid article,
.standards-list article {
  background: linear-gradient(180deg, var(--white), #fff7fa);
}
.standards-list p,
.value-grid p,
.expertise-grid p {
  color: var(--muted);
  margin-bottom: 0;
}
.value-grid,
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.expertise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.process-step {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  padding: 24px;
}
.process-step span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--black);
  font-weight: 950;
}
.process-step p { margin-bottom: 0; }

.embed-shell {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.reviews-shell { min-height: 260px; padding: 8px; }
.form-shell {
  height: 980px;
  min-height: 980px;
  overflow: visible;
}
.quote-grid { align-items: start; }
.contact-stack {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.contact-stack a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.gallery-grid,
.service-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.gallery-item,
.service-photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}
.gallery-item img,
.service-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease;
  border-radius: var(--radius);
  box-shadow: none;
}
.gallery-item:hover img,
.service-photo:hover img { transform: scale(1.03); }
.gallery-item figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(17,17,17,0.7);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
}

.location-section .split { align-items: stretch; }
.map-shell {
  min-height: 470px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.hours-list {
  display: grid;
  gap: 8px;
  margin: 26px 0;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details { padding: 0; overflow: hidden; }
.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary h3 {
  display: inline;
  font-size: 1rem;
}
.faq-list p {
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-band {
  background: linear-gradient(135deg, var(--pink-hot), var(--pink), var(--pink-wash));
  color: var(--black);
}
.cta-content {
  text-align: center;
  max-width: 850px;
}
.cta-content p {
  color: rgba(17,17,17,0.72);
  font-size: 1.08rem;
}
.cta-band .btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.cta-band .btn-outline {
  color: var(--black);
  border-color: rgba(17,17,17,0.55);
  background: rgba(255,255,255,0.16);
}

.stats-band {
  padding: 44px 0;
  background: var(--black);
  color: var(--white);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stat-grid div {
  padding: 18px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.stat-grid strong {
  display: block;
  color: var(--pink);
  font-size: 2rem;
}
.stat-grid span { color: rgba(255,255,255,0.78); font-weight: 800; }
.check-list {
  display: grid;
  gap: 12px;
}
.check-list li {
  padding-left: 28px;
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 14px;
  border-right: 3px solid var(--pink-dark);
  border-bottom: 3px solid var(--pink-dark);
  transform: rotate(45deg);
}
.contact-card,
.related-box {
  padding: 28px;
}
.big-phone {
  display: block;
  margin: 16px 0 8px;
  color: var(--pink-dark);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 950;
}
.included-list {
  display: grid;
  gap: 12px;
}
.included-list li {
  padding: 16px 18px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-weight: 800;
}
.related-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.related-links a {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-weight: 900;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 68px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 32px;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,0.78);
}
.site-footer h3 {
  color: var(--pink);
  margin-bottom: 14px;
}
.site-footer ul {
  display: grid;
  gap: 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 28px;
  margin-top: 34px;
  border-top: 1px solid rgba(255,255,255,0.16);
}
.footer-bottom p { margin: 0; font-size: 0.9rem; }

@media (max-width: 1060px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 80px 0 auto 0;
    max-height: calc(100vh - 80px);
    overflow: auto;
    display: none;
    padding: 18px 16px 28px;
    background: rgba(17,17,17,0.98);
    border-top: 1px solid rgba(255,255,255,0.14);
  }
  .site-header.is-open .site-nav {
    display: grid;
    gap: 6px;
  }
  .site-nav > a,
  .nav-dropdown > button {
    width: 100%;
    justify-content: space-between;
    padding: 13px 10px;
  }
  .dropdown-panel {
    position: static;
    width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 4px 0 10px;
  }
  .nav-dropdown.is-open .dropdown-panel { display: block; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .value-grid,
  .process-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, var(--container)); }
  h1 { font-size: clamp(1.6rem, 8vw, 2.45rem); }
  h2 { font-size: clamp(1.55rem, 8vw, 2.15rem); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 50px; height: 50px; }
  .site-nav { inset: 72px 0 auto 0; }
  .hero { min-height: 720px; }
  .inner-hero { min-height: 500px; }
  .hero-content { padding: 122px 0 58px; }
  .hero-content p { font-size: 0.98rem; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; margin-top: 34px; }
  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.22);
    padding: 0 0 14px;
  }
  .section { padding: 66px 0; }
  .split,
  .standards-grid,
  .quote-grid,
  .includes-grid,
  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .service-grid,
  .value-grid,
  .expertise-grid,
  .process-grid,
  .gallery-grid,
  .service-photo-grid,
  .related-links {
    grid-template-columns: 1fr;
  }
  .media-pair { grid-template-columns: 1fr; }
  .media-pair img:nth-child(2) { margin-top: 0; }
  .map-shell { min-height: 360px; }
  .form-shell {
    height: 1120px;
    min-height: 1120px;
  }
  .footer-bottom { flex-direction: column; }
  .button-row,
  .button-row.center { align-items: stretch; }
  .btn { width: 100%; }
}
