:root {
  --primary-50: #fff1f2;
  --primary-100: #ffe4e6;
  --primary-200: #fecdd3;
  --primary-300: #fda4af;
  --primary-400: #fb7185;
  --primary-500: #e11d48;
  --primary-600: #be123c;
  --primary-700: #9f1239;
  --primary-800: #881337;
  --primary-900: #4c0519;

  --neutral-0: #ffffff;
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-500: #64748b;
  --neutral-700: #334155;
  --neutral-900: #0f172a;

  --success: #166534;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--neutral-900);
  background: var(--neutral-0);
  line-height: 1.6;
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--neutral-200);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--neutral-500);
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--neutral-200);
  background: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--neutral-700);
}

.site-nav a:hover {
  color: var(--primary-600);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--neutral-300);
  background: #fff;
  color: var(--neutral-900);
  font-weight: 700;
}

.social-pill:hover {
  border-color: var(--primary-300);
  color: var(--primary-600);
}

.social-inline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: -0.25rem;
  color: var(--neutral-700);
  flex-wrap: wrap;
}

.social-inline span {
  color: var(--neutral-500);
  font-size: 0.95rem;
}

.social-inline a {
  color: var(--primary-700);
  font-weight: 700;
}

.social-inline a:hover {
  color: var(--primary-500);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--primary-500);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--primary-600);
}

.btn-secondary {
  background: #fff;
  border-color: var(--neutral-300);
  color: var(--neutral-900);
}

.btn-secondary:hover {
  border-color: var(--primary-300);
  color: var(--primary-600);
}

.btn-light {
  background: #fff;
  color: var(--primary-700);
}

.btn-full {
  width: 100%;
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(225, 29, 72, 0.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fff8f9 100%);
  padding: 5.5rem 0 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary-700);
  font-size: 0.9rem;
  font-weight: 700;
}

.eyebrow-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.hero h1,
.section-heading h2,
.cta-box h2,
#contact h2 {
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.contact-copy {
  color: var(--neutral-700);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.75rem 0;
  flex-wrap: wrap;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
  color: var(--neutral-700);
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-card-inner {
  width: 100%;
  max-width: 420px;
  padding: 2rem;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 24px;
  box-shadow: var(--shadow);
}


.hero-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero-logo {
  width: 136px;
  height: 136px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
}

.badge {
  display: inline-flex;
  margin: 0 0 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #fef2f2;
  color: var(--primary-700);
  font-weight: 700;
}

.hero-card-inner h2 {
  margin: 0 0 0.6rem;
  font-size: 1.8rem;
}

.contact-card {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  background: var(--neutral-50);
}

.contact-card span,
.contact-list span,
.form-note {
  display: block;
  color: var(--neutral-500);
  font-size: 0.92rem;
}

.contact-card a,
.contact-list a {
  font-weight: 700;
}

.highlights {
  padding: 0 0 1.5rem;
}

.highlight-grid,
.service-grid,
.feature-grid,
.testimonial-grid,
.contact-grid {
  display: grid;
  gap: 1.25rem;
}

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

.highlight-grid article,
.service-card,
.feature-card,
.testimonial-card,
.contact-form {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: var(--shadow);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--neutral-50);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
#contact h2,
.cta-box h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.service-grid,
.feature-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card h3,
.feature-card h3,
.highlight-grid h3 {
  margin-top: 0;
}

.review-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.review-stats > div {
  padding: 1.25rem;
  background: var(--primary-50);
  border: 1px solid var(--primary-100);
  border-radius: var(--radius);
  text-align: center;
}

.review-stats strong {
  display: block;
  font-size: 2rem;
  color: var(--primary-700);
}

.review-stats span {
  color: var(--neutral-700);
}

.testimonial-card p {
  margin-top: 0;
  font-size: 1.05rem;
}

.testimonial-card span {
  color: var(--neutral-500);
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 1rem 1.15rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  color: var(--neutral-700);
  margin-bottom: 0;
}

.cta-section {
  padding: 0 0 5rem;
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
  color: #fff;
  border-radius: 28px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-list > div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--neutral-200);
}

.contact-form h3 {
  margin-top: 0;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  border: 1px solid var(--neutral-300);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(225, 29, 72, 0.15);
  border-color: var(--primary-400);
}

.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--neutral-200);
  background: #fff;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .hero-grid,
  .contact-grid,
  .highlight-grid,
  .service-grid,
  .feature-grid,
  .testimonial-grid,
  .review-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: 100%;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .hero {
    padding-top: 4rem;
  }

  .nav-cta {
    display: none;
  }

  .social-pill {
    min-height: 40px;
    padding: 0.65rem 0.9rem;
    font-size: 0.92rem;
  }

  .hero-grid,
  .contact-grid,
  .highlight-grid,
  .service-grid,
  .feature-grid,
  .testimonial-grid,
  .review-stats,
  .footer-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .hero-card {
    justify-content: stretch;
  }

  .hero-actions,
  .trust-list {
    flex-direction: column;
    align-items: flex-start;
  }
}


.booking-section {
  padding-top: 0;
}

.booking-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--neutral-200);
  border-radius: 28px;
  background: linear-gradient(180deg, #fff 0%, #fff6f7 100%);
  box-shadow: var(--shadow);
}

.booking-copy h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.booking-copy p {
  color: var(--neutral-700);
  max-width: 58ch;
}

.booking-steps {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
}

.booking-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-500);
  color: #fff;
  font-size: 0.95rem;
}

.booking-step span {
  font-weight: 600;
}

.booking-card {
  align-self: center;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 22px;
}

.booking-card h3 {
  margin: 0.35rem 0 0.5rem;
  font-size: 1.5rem;
}

.booking-card p {
  color: var(--neutral-700);
}

.booking-actions {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 0.85rem;
}

.booking-note {
  font-size: 0.95rem;
  color: var(--neutral-500);
}

@media (max-width: 900px) {
  .booking-box {
    grid-template-columns: 1fr;
  }
}


.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.before-after-card {
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.before-after-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.before-after-images figure {
  margin: 0;
}

.before-after-images img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.before-after-images figcaption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #111827;
  text-align: center;
}

.before-after-copy {
  padding-top: 0.9rem;
}

.before-after-copy h3 {
  margin: 0 0 0.35rem;
}

.before-after-copy p {
  margin: 0;
  color: #6b7280;
}

@media (max-width: 900px) {
  .before-after-grid {
    grid-template-columns: 1fr;
  }
}


.sms-btn {
  white-space: nowrap;
}



.seo-copy {
  max-width: 900px;
  margin: 0.75rem auto 0;
}
