
:root {
  --pink: #f84098;
  --pink-dark: #c9176f;
  --pink-soft: #fff0f7;
  --black: #050505;
  --ink: #171417;
  --muted: #666066;
  --line: #e8e2e6;
  --surface: #f7f5f6;
  --stone: #817974;
  --green: #3c7a3d;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(5, 5, 5, .12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: 2.05rem;
  font-weight: 850;
}

h2 {
  font-size: 2rem;
  font-weight: 850;
}

h3 {
  font-size: 1.15rem;
}

@media (min-width: 760px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.45rem;
  }
}

@media (min-width: 1180px) {
  h1 {
    font-size: 3rem;
  }
}

.h1-accent {
  color: var(--pink);
}

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

.narrow {
  width: min(100% - 32px, 840px);
}

.center {
  text-align: center;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 10000;
  background: var(--pink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(255,255,255,.96);
  border-color: rgba(5,5,5,.08);
  box-shadow: 0 10px 28px rgba(5,5,5,.08);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--white);
  font-weight: 800;
}

.brand img {
  width: 66px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.3));
}

.brand span {
  max-width: 190px;
  font-size: .95rem;
  line-height: 1.1;
}

.site-header.is-scrolled .brand,
.site-header.menu-open .brand {
  color: var(--black);
}

.desktop-nav,
.nav-actions {
  display: none;
}

.desktop-nav {
  align-items: center;
  gap: 4px;
}

.desktop-nav > a,
.nav-dropdown > button {
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  font-size: .92rem;
  font-weight: 700;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-header.is-scrolled .desktop-nav > a,
.site-header.is-scrolled .nav-dropdown > button {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 255px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease;
}

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

.dropdown-menu a {
  display: block;
  padding: 9px 10px;
  color: var(--ink);
  font-size: .9rem;
  border-radius: 6px;
}

.dropdown-menu a:hover {
  background: var(--pink-soft);
  color: var(--pink-dark);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.9);
  font-weight: 800;
  font-size: .92rem;
}

.site-header.is-scrolled .nav-phone {
  color: var(--ink);
}

.mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255,255,255,.12);
  cursor: pointer;
}

.site-header.is-scrolled .mobile-toggle,
.site-header.menu-open .mobile-toggle {
  background: var(--pink-soft);
  color: var(--pink-dark);
}

.mobile-panel {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-header.menu-open .mobile-panel {
  display: block;
}

.mobile-panel-inner {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
  padding: 12px 0 22px;
  display: grid;
  gap: 5px;
}

.mobile-panel a,
.mobile-panel p {
  margin: 0;
  padding: 10px 4px;
  color: var(--ink);
  font-weight: 750;
}

.mobile-panel p {
  color: var(--pink-dark);
  text-transform: uppercase;
  font-size: .78rem;
}

.mobile-call {
  color: var(--pink-dark) !important;
}

@media (min-width: 1040px) {
  .desktop-nav,
  .nav-actions {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .brand img {
    width: 76px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 850;
  border: 2px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-primary-small {
  color: var(--white);
  background: var(--pink);
  border-color: var(--pink);
}

.btn-primary:hover,
.btn-primary-small:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
}

.btn-primary-small {
  min-height: 40px;
  padding: 9px 14px;
  font-size: .9rem;
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.02);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--black);
}

.btn-outline-dark {
  color: var(--black);
  border-color: var(--black);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--black);
  color: var(--white);
}

.btn-light {
  color: var(--pink-dark);
  background: var(--white);
  border-color: var(--white);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.center-row {
  justify-content: center;
}

.home-hero,
.page-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
}

.page-hero {
  min-height: 430px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,5,5,.86), rgba(5,5,5,.58) 48%, rgba(5,5,5,.32));
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  color: var(--white);
}

.hero-content {
  max-width: 1180px;
}

.hero-content h1,
.page-hero h1 {
  color: var(--white);
  max-width: 820px;
}

.hero-content p,
.page-hero p {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255,255,255,.84);
  font-size: 1.12rem;
}

.eyebrow,
.section-heading span {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content .eyebrow,
.page-hero .eyebrow {
  background: rgba(248,64,152,.18);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

.breadcrumbs a:hover {
  color: var(--white);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 46px;
}

.hero-stats div {
  border-left: 2px solid var(--pink);
  padding-left: 16px;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--white);
  font-size: 1.25rem;
}

.hero-stats span {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.info-strip {
  background: var(--pink);
  color: var(--white);
}

.info-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 28px;
  padding: 13px 0;
  font-weight: 800;
  font-size: .92rem;
}

.info-strip span,
.info-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section {
  padding: 82px 0;
}

.section:nth-of-type(even) {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 28px;
}

.section-heading.center {
  max-width: 840px;
  margin: 0 auto 42px;
}

.section-heading p {
  margin: 16px auto 0;
  max-width: 760px;
  font-size: 1.05rem;
}

.split {
  display: grid;
  gap: 42px;
  align-items: center;
}

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

@media (min-width: 900px) {
  .split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .reverse > :first-child {
    order: 0;
  }
}

.image-stack {
  position: relative;
}

.image-stack img,
.rounded-media {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack img {
  max-height: 650px;
}

.stack-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  border-radius: var(--radius);
  background: rgba(5,5,5,.88);
  color: var(--white);
  padding: 16px;
  border-left: 4px solid var(--pink);
}

.stack-card strong,
.stack-card span {
  display: block;
}

.stack-card span {
  color: rgba(255,255,255,.78);
  font-size: .92rem;
}

.services-grid,
.feature-grid,
.process-grid,
.related-grid,
.value-grid,
.contact-detail-grid {
  display: grid;
  gap: 22px;
}

@media (min-width: 700px) {
  .feature-grid,
  .process-grid,
  .related-grid,
  .value-grid,
  .contact-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

.service-card,
.feature-card,
.process-card,
.related-card,
.value-grid article,
.contact-card,
.contact-detail-grid a,
.contact-detail-grid div {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(5,5,5,.06);
}

.service-card {
  overflow: hidden;
}

.service-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-image img,
.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.service-card:hover .service-image img,
.related-card:hover img {
  transform: scale(1.04);
}

.service-body {
  padding: 18px;
}

.service-body span {
  color: var(--pink-dark);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 900;
}

.service-body h3 {
  margin: 8px 0 10px;
}

.service-body p {
  font-size: .92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pink-dark);
  font-weight: 900;
  font-size: .92rem;
}

.check-list p,
.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list svg,
.included-list svg,
.check-icon svg {
  color: var(--pink);
}

.feature-card,
.process-card,
.value-grid article,
.related-card {
  padding: 24px;
}

.check-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--pink-soft);
  color: var(--pink-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

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

.included-list li {
  font-weight: 800;
}

.process-section {
  background: var(--black) !important;
}

.process-section h2,
.process-section h3,
.process-section .section-heading p {
  color: var(--white);
}

.process-card {
  background: #111;
  border-color: rgba(255,255,255,.1);
}

.process-card span {
  color: var(--pink);
  font-weight: 950;
}

.process-card p {
  color: rgba(255,255,255,.72);
}

.areas-section,
.quote-section,
.gallery-section,
.contact-info-section {
  background: var(--surface) !important;
}

.area-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area-pills span,
.area-pills button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 850;
}

.area-pills button {
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.area-pills button:hover,
.area-pills button.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-1px);
}

.area-map-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.area-map-buttons {
  justify-content: flex-start;
}

.area-map-copy,
.local-content-grid article {
  border: 1px solid var(--line);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(5,5,5,.06);
}

.area-map-copy {
  margin-top: 22px;
  padding: 24px;
}

.area-map-copy h3 {
  margin-bottom: 10px;
}

.map-frame {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

@media (min-width: 900px) {
  .area-map-grid {
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  }
}

.local-content-section {
  background: var(--white) !important;
}

.local-content-grid {
  display: grid;
  gap: 18px;
}

.local-content-grid article {
  padding: 24px;
}

.local-content-grid h3 {
  margin-bottom: 10px;
}

@media (min-width: 760px) {
  .local-content-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gallery-grid {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.gallery-grid figure {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: .82rem;
}

.reviews-section {
  background: var(--white) !important;
}

.review-summary {
  width: min(100%, 620px);
  margin: -12px auto 34px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.review-summary strong {
  font-size: 2rem;
  line-height: 1;
}

.review-summary span,
.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--pink);
}

.review-summary svg,
.stars svg {
  fill: currentColor;
  stroke-width: 1.4;
}

.review-summary p {
  flex-basis: 100%;
  margin: 0;
  text-align: center;
  color: rgba(255,255,255,.74);
  font-size: .92rem;
}

.reviews-grid {
  display: grid;
  gap: 18px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(5,5,5,.06);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-weight: 950;
}

.review-top h3 {
  font-size: 1rem;
}

.review-top p {
  margin: 2px 0 0;
  font-size: .86rem;
}

.review-card blockquote {
  margin: 14px 0 0;
  color: var(--ink);
}

@media (min-width: 760px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1080px) {
  .reviews-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.faq-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px 22px;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  font-weight: 900;
}

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

.faq-list details[open] summary svg {
  transform: rotate(180deg);
}

.faq-list details p {
  padding: 0 0 18px;
}

.cta-band {
  background: var(--pink) !important;
  color: var(--white);
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  max-width: 720px;
  margin: 16px auto 0;
}

.quote-grid {
  display: grid;
  gap: 28px;
}

@media (min-width: 980px) {
  .quote-grid {
    grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
  }
}

.quote-frame {
  min-height: 735px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.contact-card {
  padding: 26px;
  align-self: start;
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-lines a,
.contact-lines div,
.footer-contact a,
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.contact-lines a,
.contact-lines div {
  color: var(--ink);
}

.contact-lines svg,
.contact-detail-grid svg {
  color: var(--pink-dark);
}

.contact-lines small,
.contact-detail-grid small {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  font-weight: 900;
}

.service-areas-mini {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 20px;
}

.stats-band {
  background: var(--pink) !important;
}

.stats-grid {
  display: grid;
  gap: 18px;
  text-align: center;
}

@media (min-width: 740px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.stats-grid strong,
.stats-grid span {
  display: block;
  color: var(--white);
}

.stats-grid strong {
  font-size: 1.7rem;
  line-height: 1.1;
}

.stats-grid span {
  opacity: .78;
  font-weight: 850;
  text-transform: uppercase;
  font-size: .75rem;
}

.related-card {
  overflow: hidden;
  padding: 0;
}

.related-card img {
  aspect-ratio: 4 / 3;
}

.related-card h3,
.related-card p {
  padding: 0 18px;
}

.related-card h3 {
  margin-top: 18px;
}

.related-card p {
  padding-bottom: 20px;
}

.contact-detail-grid a,
.contact-detail-grid div {
  padding: 20px;
  display: flex;
  gap: 12px;
}

.site-footer {
  background: var(--black);
  color: var(--white);
  padding-top: 62px;
}

.footer-grid {
  display: grid;
  gap: 34px;
}

@media (min-width: 760px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.footer-brand img {
  width: 82px;
}

.site-footer h3 {
  color: var(--white);
  font-size: .9rem;
  text-transform: uppercase;
}

.site-footer p,
.site-footer a,
.site-footer li {
  color: rgba(255,255,255,.72);
}

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

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 44px;
  padding: 20px 0;
  text-align: center;
}

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

  .home-hero {
    min-height: 88vh;
  }

  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 14px;
  }
}
