:root {
  --ink: #243149;
  --muted: #596579;
  --soft: #fff7fa;
  --pink: #ffd0de;
  --pink-2: #f59abb;
  --rose: #d94e83;
  --line: #f0b9ca;
  --gold: #bf8b13;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(36, 49, 73, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}
.narrow { max-width: 760px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(36, 49, 73, 0.06);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand img { width: 156px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  background: var(--white);
  color: var(--ink);
}
.nav a:hover,
.nav a.is-active {
  background: var(--pink);
  border-color: var(--rose);
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}
.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero-section { background: var(--white); }
.hero-grid {
  min-height: 640px;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 72px;
  align-items: center;
}
.section-label {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.04;
  font-weight: 900;
}
h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 900;
}
h3 { font-size: 21px; line-height: 1.18; }
.hero-copy p:not(.section-label),
.page-hero p,
.split-grid p,
.proof-grid p,
.readable p {
  color: var(--muted);
  font-size: 18px;
}
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid var(--rose);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}
.button.primary {
  background: var(--pink-2);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(217, 78, 131, 0.18);
}
.button.secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}
.button.full {
  width: 100%;
  margin-top: 12px;
}
.hero-media img,
.about-photo-stack img {
  width: 100%;
  aspect-ratio: 1 / 1.1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.pink-section,
.proof-section {
  background: var(--pink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 70px 0;
}
.section-heading {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 32px;
}
.section-heading p {
  color: var(--muted);
  margin: 8px 0 0;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  min-height: 290px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: var(--shadow);
}
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #ffe3ec;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  flex: 0 0 auto;
}
.service-card h3 {
  margin: 16px 0 8px;
}
.service-card p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}
.card-link,
.text-link {
  margin-top: auto;
  padding-top: 18px;
  color: var(--rose);
  font-weight: 900;
  text-decoration: none;
}

.split-section,
.content-section {
  padding: 78px 0;
  background: var(--white);
}
.split-grid,
.proof-grid,
.about-hero,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.split-grid img {
  width: 100%;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-section { background: var(--soft); }
.review-panel,
.side-panel,
.detail-card,
.checklist-card,
.intake-form,
.faq-grid article,
.process-grid article,
.contact-grid a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.review-panel { padding: 28px; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.google-g {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: #4285f4;
  font-weight: 900;
}
.stars { color: var(--gold); letter-spacing: 1px; }
blockquote {
  margin: 12px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--ink);
  font-weight: 700;
}
blockquote span,
.review-mini span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  padding: 78px 0;
  background: var(--white);
}
.pink-hero { background: var(--pink); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(40px, 4vw, 56px); }
.service-detail-list,
.checklist-list {
  display: grid;
  gap: 20px;
}
.detail-card,
.checklist-card,
.side-panel,
.intake-form {
  padding: 30px;
}
.detail-title {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.detail-title h2,
.detail-card h2,
.checklist-card h2,
.side-panel h2,
.intake-form h2 {
  margin: 0 0 10px;
  font-size: 30px;
}
.detail-card p,
.detail-card li,
.side-panel p,
.checklist-card p,
.checklist-card li {
  color: var(--muted);
  font-size: 16px;
}
ul { padding-left: 20px; }
li + li { margin-top: 6px; }

.checklist-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.checklist-nav a {
  padding: 12px 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}
.checklist-head {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.checklist-group {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.checklist-group h3 { margin-bottom: 8px; }

.about-hero { align-items: center; }
.about-photo-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 18px;
  align-items: end;
}
.about-photo-stack img:first-child {
  aspect-ratio: 4 / 5;
}
.about-photo-stack img:last-child {
  aspect-ratio: 1 / 1.08;
  margin-bottom: 34px;
}
.credential-list {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}
.credential-list span {
  display: block;
  padding: 10px 12px;
  border-left: 3px solid var(--rose);
  background: var(--soft);
  font-weight: 800;
}
.readable p { margin-bottom: 18px; }
.faq-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.faq-grid article,
.process-grid article,
.contact-grid a {
  padding: 24px;
}
.process-grid article span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--pink);
  border: 1px solid var(--rose);
  font-weight: 900;
}
.intake-form {
  display: grid;
  gap: 14px;
  align-items: start;
}
label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}
.download-list a { font-weight: 800; color: var(--rose); }
.contact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.contact-grid a {
  text-decoration: none;
  display: grid;
  gap: 8px;
}
.contact-grid span { color: var(--muted); }

.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.hours-strip {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 0;
  color: var(--gold);
  text-align: center;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr 1.1fr;
  gap: 34px;
  padding: 42px 0;
}
.footer-logo { width: 150px; margin-bottom: 12px; }
.site-footer h2 {
  font-size: 18px;
  color: var(--gold);
  margin-bottom: 12px;
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--muted);
  font-size: 15px;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li + li,
.contact-list li + li { margin-top: 8px; }
.review-mini {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 10px;
  background: var(--soft);
}
.review-mini p { margin: 6px 0 0; font-weight: 700; }
.social-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}
.social-row a {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 14px;
  text-align: center;
}
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: #25d366;
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.28);
}

@media (max-width: 1024px) {
  .hero-grid,
  .split-grid,
  .proof-grid,
  .about-hero,
  .two-column {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-grid { min-height: 0; }
  .service-grid,
  .faq-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container { width: min(100% - 32px, 1180px); }
  .header-inner {
    min-height: 70px;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 0;
  }
  .brand img { width: 120px; }
  .menu-button { display: inline-block; margin-left: auto; }
  .nav {
    width: 100%;
    display: none;
    justify-content: flex-start;
    padding-bottom: 8px;
  }
  .nav.is-open { display: flex; }
  .nav a {
    min-height: 34px;
    padding: 0 13px;
    font-size: 13px;
  }
  .hero-grid,
  .page-hero,
  .content-section,
  .split-section,
  .pink-section,
  .proof-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }
  h1 { font-size: 40px; }
  .hero-copy p:not(.section-label),
  .page-hero p,
  .split-grid p,
  .proof-grid p,
  .readable p {
    font-size: 16px;
  }
  .service-grid,
  .faq-grid,
  .process-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .about-photo-stack {
    grid-template-columns: 1fr;
  }
  .about-photo-stack img:last-child {
    margin-bottom: 0;
  }
  .service-card { min-height: 290px; }
  .checklist-head {
    display: grid;
  }
  .whatsapp-float {
    width: 54px;
    min-height: 54px;
    padding: 0;
    font-size: 0;
  }
  .whatsapp-float::before {
    content: "WA";
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}