:root {
  --pink: #ef4f91;
  --pink-dark: #c72c6f;
  --black: #070707;
  --ink: #191416;
  --muted: #685d63;
  --white: #ffffff;
  --soft: #fff4f8;
  --soft-2: #f7f2f4;
  --line: #ead8e0;
  --shadow: 0 18px 60px rgba(7, 7, 7, 0.14);
  --pink-glow: 0 0 28px rgba(239, 79, 145, 0.34);
  --pink-glow-strong: 0 0 42px rgba(239, 79, 145, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
}

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

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

img {
  height: auto;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
}

h1 {
  font-size: 3.85rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 1.18rem;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(880px, calc(100% - 40px));
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 10000;
  transition: background 180ms ease, box-shadow 180ms ease, border 180ms ease;
  color: var(--white);
}

.site-header.scrolled,
body:not(:has(.hero, .page-hero)) .site-header {
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(7, 7, 7, 0.08);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  width: min(1220px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-logo {
  width: 106px;
  height: 62px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 4px;
}

.brand-text {
  font-size: 1rem;
}

.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.desktop-nav a,
.nav-dropdown button,
.phone-link {
  color: inherit;
  font: inherit;
  font-weight: 700;
  font-size: 0.93rem;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px 0;
}

.nav-dropdown {
  position: relative;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  min-width: 280px;
  transform: translateX(-50%);
  padding: 10px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, top 160ms ease;
}

.dropdown-panel a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: 700;
}

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

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease;
}

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

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: var(--pink-glow);
}

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

.btn-secondary {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(7, 7, 7, 0.18);
}

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

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
}

.site-header.scrolled .menu-toggle {
  border-color: var(--line);
  background: var(--white);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
}

.mobile-panel {
  display: none;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 12px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-panel.open {
  display: grid;
  gap: 8px;
}

.mobile-panel a {
  padding: 10px;
  border-radius: 6px;
  font-weight: 800;
}

.mobile-panel a:hover {
  background: var(--soft);
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  color: var(--white);
  padding: 136px 0 72px;
}

.hero-video,
.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 7px;
  background: var(--pink);
  z-index: 1;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 0;
  text-align: center;
}

.hero-content {
  max-width: 910px;
  margin: 0 auto;
}

.hero-eyebrow,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--pink);
}

.hero-eyebrow {
  color: var(--white);
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: rgba(239, 79, 145, 0.68);
}

.eyebrow.light {
  color: var(--white);
}

.hero-content p,
.page-hero-content p {
  max-width: 760px;
  margin-top: 18px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.inline-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  max-width: 650px;
  gap: 10px;
  margin: 42px auto 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.38);
}

.hero-stats strong {
  display: block;
  font-size: 1.85rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 0.86rem;
}

.hero-content h1,
.page-hero h1 {
  text-shadow: 0 0 34px rgba(239, 79, 145, 0.45), 0 4px 24px rgba(0, 0, 0, 0.52);
}

.section {
  padding: 92px 0;
}

.bg-soft {
  background: var(--soft);
}

.bg-black {
  background: var(--black);
  color: var(--white);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-head.left {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 16px;
}

.section-head h2,
.feature-panel h2,
.cta-inner h2 {
  text-shadow: 0 0 22px rgba(239, 79, 145, 0.16);
}

.light-text p,
.bg-black p {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 54px;
}

.split.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.split.reverse > img,
.split.reverse > .rounded-image {
  order: -1;
}

.rounded-image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-stack {
  position: relative;
  min-height: 500px;
}

.image-stack .rounded-image {
  height: 420px;
}

.floating-image {
  position: absolute;
  width: 48%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  right: 24px;
  bottom: 0;
  border-radius: 8px;
  border: 8px solid var(--white);
  box-shadow: var(--shadow), var(--pink-glow);
}

.brand-glow-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 7, 7, 0.98) 0%, rgba(34, 15, 25, 0.98) 46%, rgba(255, 244, 248, 0.98) 46%, rgba(255, 255, 255, 1) 100%);
}

.brand-glow-grid {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.brand-promo-image {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  border: 1px solid rgba(239, 79, 145, 0.36);
  box-shadow: 0 24px 70px rgba(7, 7, 7, 0.2), var(--pink-glow-strong);
}

.brand-glow-copy {
  border-left: 0;
  border-top: 6px solid var(--pink);
  background: rgba(255, 255, 255, 0.96);
}

.service-grid,
.promise-grid,
.expertise-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card,
.promise-grid article,
.expertise-grid article,
.process-grid article,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(7, 7, 7, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.promise-grid article:hover,
.expertise-grid article:hover,
.process-grid article:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 79, 145, 0.34);
  box-shadow: 0 18px 46px rgba(7, 7, 7, 0.1), var(--pink-glow);
}

.service-card a {
  display: grid;
  height: 100%;
}

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

.card-body {
  padding: 24px;
}

.card-body p,
.promise-grid p,
.expertise-grid p,
.process-grid p,
.feature-panel p,
.contact-card p {
  color: var(--muted);
}

.card-body span {
  display: inline-block;
  margin-top: 12px;
  color: var(--pink-dark);
  font-weight: 900;
}

.feature-panel {
  background: var(--white);
  border-left: 6px solid var(--pink);
  padding: 34px;
  border-radius: 8px;
  box-shadow: var(--shadow), var(--pink-glow);
  text-align: center;
}

.mini-grid,
.value-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

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

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

.mini-grid div,
.value-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  text-align: center;
}

.process-grid article {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  padding: 24px;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 6px;
  background: var(--pink);
  color: var(--white);
  font-weight: 900;
}

.promise-grid article,
.expertise-grid article {
  padding: 24px;
}

.promise-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.area-section {
  background: var(--pink);
  color: var(--white);
}

.area-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.area-section .section-head p {
  color: rgba(255, 255, 255, 0.84);
}

.map-card,
.area-list-wrap {
  padding: 30px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(7, 7, 7, 0.1), var(--pink-glow);
}

.area-map {
  width: 100%;
  height: 340px;
  margin: 22px 0;
  border: 0;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px var(--line);
}

.area-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.area-list li {
  padding: 0;
}

.area-button {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  text-align: center;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.area-button:hover,
.area-button.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: var(--pink-glow);
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 64px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 14px;
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 34px;
  align-items: start;
}

.form-shell {
  height: auto;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--line);
  overflow: visible;
  box-shadow: var(--shadow), var(--pink-glow);
}

.form-shell iframe {
  display: block;
  width: 100% !important;
  height: 1040px !important;
  min-height: 1040px;
  border-radius: 8px 8px 0 0 !important;
}

.form-shell .ep-iFrameContainer,
.form-shell .ep-wrapper {
  min-height: 1040px !important;
}

.form-fallback {
  margin: 10px 14px 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.form-fallback a {
  color: var(--pink-dark);
  font-weight: 900;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-stack a {
  display: block;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  color: var(--white);
  padding: 132px 0 72px;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
  font-weight: 800;
}

.breadcrumbs a::after {
  content: "/";
  margin-left: 9px;
  color: rgba(255, 255, 255, 0.55);
}

.page-hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.contact-card {
  padding: 26px;
}

.big-contact {
  display: inline-block;
  margin-top: 14px;
  color: var(--pink-dark);
  font-size: 1.25rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.reviews-section {
  position: relative;
}

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

.review-grid article {
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(239, 79, 145, 0.22);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(7, 7, 7, 0.08);
  text-align: center;
}

.stars {
  color: var(--pink);
  font-size: 1.35rem;
  letter-spacing: 0;
  text-shadow: var(--pink-glow);
  margin-bottom: 14px;
}

.review-grid p {
  color: var(--muted);
}

.reviews-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

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

.check-list li,
.included-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before,
.included-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--pink);
}

.included-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.included-list {
  margin-top: 0;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.included-list li {
  color: rgba(255, 255, 255, 0.86);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-logo {
  width: 126px;
  height: 74px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  padding: 6px;
}

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

.footer-heading {
  color: var(--white) !important;
  font-weight: 900;
  margin-bottom: 16px;
}

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

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

.footer-bottom p {
  margin: 0;
}

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

  h2 {
    font-size: 2rem;
  }

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

  .menu-toggle {
    display: block;
  }

  .split,
  .split.reverse,
  .area-grid,
  .quote-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse > img,
  .split.reverse > .rounded-image {
    order: 0;
  }

  .service-grid,
  .promise-grid,
  .promise-grid.four,
  .expertise-grid,
  .process-grid,
  .review-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  h3 {
    font-size: 1.05rem;
  }

  .wrap,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .brand-logo {
    width: 88px;
    height: 52px;
  }

  .brand-text {
    max-width: 140px;
    line-height: 1.1;
  }

  .hero {
    min-height: 760px;
    padding: 94px 0 56px;
  }

  .page-hero {
    min-height: 560px;
    padding: 94px 0 56px;
  }

  .hero-content,
  .page-hero-content {
    padding-top: 0;
  }

  .hero-content p,
  .page-hero-content p {
    font-size: 1.02rem;
  }

  .hero-stats,
  .service-grid,
  .promise-grid,
  .promise-grid.four,
  .expertise-grid,
  .process-grid,
  .review-grid,
  .contact-grid,
  .footer-grid,
  .mini-grid,
  .mini-grid.two,
  .area-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 68px 0;
  }

  .rounded-image {
    height: 300px;
    min-height: 0;
  }

  .brand-promo-image {
    height: 430px;
  }

  .image-stack {
    min-height: auto;
  }

  .image-stack .rounded-image {
    height: auto;
  }

  .floating-image {
    position: static;
    width: 100%;
    margin-top: 16px;
    border-width: 0;
  }

  .feature-panel,
  .area-list-wrap,
  .contact-card {
    padding: 22px;
  }

  .cta-inner {
    display: block;
  }

  .form-shell {
    height: auto;
  }
}
