
  :root {
    --blush: #f2a4b0;
    --rose: #d4607a;
    --deep: #2a1a2e;
    --cream: #fdf6f0;
    --gold: #c9976e;
    --muted: #7a6370;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--deep);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 4rem;
    background: rgba(253,246,240,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,96,122,0.15);
  }
  .logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--rose);
    letter-spacing: -0.5px;
  }
  .logo span { color: var(--gold); font-style: italic; }
  nav ul { list-style: none; display: flex; gap: 2.5rem; }
  nav ul a {
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted);
    transition: color 0.3s;
  }
  nav ul a:hover { color: var(--rose); }
  .nav-cta {
    background: var(--rose);
    color: #fff !important;
    padding: 0.55rem 1.4rem;
    border-radius: 50px;
    transition: background 0.3s !important;
  }
  .nav-cta:hover { background: var(--deep) !important; color: #fff !important; }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 7rem 4rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; right: -10%; top: 10%;
    width: 55vw; height: 55vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,164,176,0.35) 0%, rgba(253,246,240,0) 70%);
    animation: pulse 6s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.05); opacity: 1; }
  }
  .hero-text { position: relative; z-index: 2; }
  .hero-badge {
    display: inline-block;
    background: rgba(212,96,122,0.1);
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212,96,122,0.3);
    animation: fadeUp 0.8s ease both;
  }
  .hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    line-height: 1.1;
    color: var(--deep);
    margin-bottom: 1.5rem;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero h1 em { color: var(--rose); font-style: italic; }
  .hero p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 2.5rem;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; animation: fadeUp 0.8s 0.45s ease both; }
  .btn-primary {
    background: var(--rose);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--deep); transform: translateY(-2px); }
  .btn-outline {
    background: transparent;
    color: var(--rose);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid var(--rose);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover { background: var(--rose); color: #fff; }

  .hero-visual {
    position: relative; z-index: 2;
    display: flex; justify-content: center; align-items: center;
    animation: fadeUp 0.8s 0.2s ease both;
  }
  .hero-card {
    background: #fff;
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(42,26,46,0.12);
    max-width: 380px;
    width: 100%;
    position: relative;
  }
  .hero-card::before {
    content: '';
    position: absolute; top: -20px; right: -20px;
    width: 100px; height: 100px;
    border-radius: 50%;
    background: rgba(242,164,176,0.4);
  }
  .card-icon { font-size: 3rem; margin-bottom: 1rem; }
  .hero-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--deep);
    margin-bottom: 0.8rem;
  }
  .hero-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
  .stats-row {
    display: flex; gap: 1.5rem; margin-top: 1.5rem;
    padding-top: 1.5rem; border-top: 1px solid rgba(0,0,0,0.06);
  }
  .stat { text-align: center; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--rose); font-weight: 700; }
  .stat-label { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* SERVICES */
  .services {
    padding: 6rem 4rem;
    background: #fff;
  }
  .section-label {
    display: inline-block;
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--deep);
    margin-bottom: 1rem;
    max-width: 500px;
  }
  .section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 500px; margin-bottom: 3.5rem; }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  }
  .service-card {
    border: 1px solid rgba(212,96,122,0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--blush));
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }
  .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(212,96,122,0.12); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-icon {
    width: 56px; height: 56px;
    background: rgba(242,164,176,0.2);
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--deep);
    margin-bottom: 0.6rem;
  }
  .service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

  /* ABOUT */
  .about {
    padding: 6rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--cream);
  }
  .about-visual {
    position: relative;
  }
  .about-img-box {
    background: linear-gradient(135deg, var(--blush), var(--rose));
    border-radius: 2rem;
    height: 420px;
    display: flex; align-items: center; justify-content: center;
    font-size: 6rem;
    position: relative;
    overflow: hidden;
  }
  .about-img-box::before {
    content: '';
    position: absolute; top: -30%; left: -30%;
    width: 160%; height: 160%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  }
  .about-badge-float {
    position: absolute; bottom: -15px; right: -15px;
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--deep);
  }
  .about-badge-float span { color: var(--rose); font-size: 1.2rem; font-weight: 700; display: block; }

  .about-text .section-title { max-width: 100%; }
  .about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem; font-size: 0.98rem; }
  .about-features { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.8rem; }
  .feature-row { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; color: var(--deep); }
  .feature-check {
    width: 24px; height: 24px;
    background: var(--rose);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 0.7rem; flex-shrink: 0;
  }

  /* TESTIMONIALS */
  .testimonials {
    padding: 6rem 4rem;
    background: var(--deep);
    color: #fff;
    text-align: center;
  }
  .testimonials .section-label { color: var(--blush); }
  .testimonials .section-title { color: #fff; margin: 0 auto 1rem; }
  .testimonials .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto 3.5rem; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    text-align: left;
  }
  .test-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1.5rem;
    padding: 2rem;
  }
  .stars { color: var(--blush); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
  .test-card p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
  .test-author { display: flex; align-items: center; gap: 0.8rem; }
  .test-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--blush), var(--rose));
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  }
  .test-name { font-size: 0.88rem; font-weight: 500; color: #fff; }
  .test-loc { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

  /* APPOINTMENT */
  .appointment {
    padding: 6rem 4rem;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }
  .appt-form { background: var(--cream); border-radius: 2rem; padding: 2.5rem; }
  .appt-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--deep);
    margin-bottom: 1.8rem;
  }
  .form-group { margin-bottom: 1.2rem; }
  .form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--muted); margin-bottom: 0.4rem; letter-spacing: 0.04em; text-transform: uppercase; }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid rgba(212,96,122,0.2);
    border-radius: 0.7rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.92rem;
    background: #fff;
    color: var(--deep);
    outline: none;
    transition: border-color 0.3s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus { border-color: var(--rose); }
  .form-group textarea { resize: vertical; height: 90px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .submit-btn {
    width: 100%;
    background: var(--rose);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: all 0.3s;
    font-family: 'DM Sans', sans-serif;
  }
  .submit-btn:hover { background: var(--deep); }

  .appt-info .section-title { max-width: 100%; }
  .appt-info p { color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
  .contact-items { display: flex; flex-direction: column; gap: 1rem; }
  .contact-item {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(212,96,122,0.15);
    border-radius: 1rem;
    font-size: 0.9rem;
    color: var(--deep);
  }
  .contact-item-icon {
    width: 40px; height: 40px;
    background: rgba(242,164,176,0.2);
    border-radius: 0.7rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .contact-item strong { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 0.1rem; text-transform: uppercase; letter-spacing: 0.04em; }

  /* FOOTER */
  footer {
    background: var(--deep);
    color: rgba(255,255,255,0.6);
    padding: 3rem 4rem 2rem;
    text-align: center;
  }
  footer .logo { display: block; margin-bottom: 0.8rem; font-size: 1.3rem; }
  footer p { font-size: 0.85rem; line-height: 1.7; max-width: 500px; margin: 0 auto 1.5rem; }
  .footer-links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
  .footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.82rem; transition: color 0.3s; }
  .footer-links a:hover { color: var(--blush); }
  .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
  .footer-bottom { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1rem 2rem; }
    nav ul { display: none; }
    .hero, .about, .appointment { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem 3rem; }
    .hero-visual { display: none; }
    .services, .testimonials { padding: 4rem 2rem; }
    footer { padding: 3rem 2rem 2rem; }
  }

  /* PRIVACY NOTICE */
  .privacy-bar {
    background: rgba(212,96,122,0.08);
    border-left: 3px solid var(--rose);
    padding: 0.8rem 1.5rem;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 0;
    display: flex; align-items: center; gap: 0.8rem;
  }

  /* scroll animations */
  .reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ===== BANNER 1: Scrolling Trust Bar ===== */
  .banner-trust {
    background: linear-gradient(135deg, var(--rose), #b5445e);
    overflow: hidden;
    padding: 0.9rem 0;
  }
  .banner-scroll-track { overflow: hidden; white-space: nowrap; }
  .banner-scroll-items {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    animation: scrollLeft 30s linear infinite;
    font-size: 0.88rem;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.03em;
  }
  .banner-scroll-items .sep { color: rgba(255,255,255,0.5); font-size: 0.7rem; }
  @keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ===== BANNER 2: Full Width CTA ===== */
  .banner-cta {
    position: relative;
    padding: 4.5rem 4rem;
    overflow: hidden;
    background: var(--deep);
  }
  .banner-cta-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 20% 50%, rgba(212,96,122,0.3) 0%, transparent 60%),
      radial-gradient(ellipse at 80% 50%, rgba(242,164,176,0.15) 0%, transparent 60%);
    pointer-events: none;
  }
  .banner-cta::before {
    content: '❤';
    position: absolute; right: 5%; top: 50%;
    transform: translateY(-50%);
    font-size: 18rem;
    opacity: 0.04;
    line-height: 1;
  }
  .banner-cta-content {
    position: relative; z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
  }
  .banner-cta-tag {
    display: inline-block;
    background: rgba(212,96,122,0.25);
    color: var(--blush);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(212,96,122,0.4);
  }
  .banner-cta-left h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
  .banner-cta-left h2 em { color: var(--blush); font-style: italic; }
  .banner-cta-left p { color: rgba(255,255,255,0.6); font-size: 0.98rem; line-height: 1.6; max-width: 400px; }
  .banner-cta-right {
    display: flex; flex-direction: column; gap: 1rem; align-items: flex-start;
  }
  .banner-call-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
  }
  .banner-call-btn:hover { background: rgba(255,255,255,0.15); border-color: var(--blush); }

  /* ===== BANNER 3: Stats Banner ===== */
  .banner-stats {
    background: linear-gradient(135deg, #fdf0f3, #fff5f8);
    border-top: 1px solid rgba(212,96,122,0.12);
    border-bottom: 1px solid rgba(212,96,122,0.12);
    padding: 3.5rem 4rem;
  }
  .banner-stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
  }
  .bstat {
    text-align: center;
    padding: 1rem 3rem;
    flex: 1;
    min-width: 150px;
  }
  .bstat-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 0.4rem;
  }
  .bstat-num span { font-size: 1.5rem; color: var(--gold); }
  .bstat-label {
    font-size: 0.82rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
  }
  .bstat-divider {
    width: 1px;
    height: 60px;
    background: rgba(212,96,122,0.2);
    flex-shrink: 0;
  }

  @media (max-width: 900px) {
    .banner-cta { padding: 3rem 2rem; }
    .banner-stats { padding: 3rem 2rem; }
    .bstat-divider { display: none; }
    .bstat { padding: 1rem 1.5rem; }
    .banner-cta-content { flex-direction: column; text-align: center; }
    .banner-cta-right { align-items: center; }
    .banner-cta-left p { margin: 0 auto; }
  }


  .popup-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(42,26,46,0.65);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 1rem;
  }
  .popup-overlay.active { opacity: 1; pointer-events: all; }
  .popup-box {
    background: #fff;
    border-radius: 2rem;
    max-width: 440px;
    width: 100%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(42,26,46,0.25);
    transform: translateY(40px) scale(0.95);
    transition: transform 0.5s ease;
  }
  .popup-overlay.active .popup-box { transform: translateY(0) scale(1); }
  .popup-close {
    position: absolute; top: 1rem; right: 1rem;
    background: rgba(212,96,122,0.1);
    border: none; cursor: pointer;
    width: 34px; height: 34px; border-radius: 50%;
    font-size: 0.85rem; color: var(--rose);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; z-index: 2;
  }
  .popup-close:hover { background: var(--rose); color: #fff; }
  .popup-header {
    background: linear-gradient(135deg, var(--rose), #b5445e);
    padding: 2.5rem 2.5rem 2rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .popup-header::before {
    content: '';
    position: absolute; top: -40%; left: -20%;
    width: 140%; height: 140%;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  }
  .popup-icon { font-size: 2.8rem; margin-bottom: 0.8rem; position: relative; z-index: 1; }
  .popup-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: #fff;
    margin-bottom: 0.4rem; position: relative; z-index: 1;
  }
  .popup-header p { color: rgba(255,255,255,0.75); font-size: 0.85rem; position: relative; z-index: 1; }
  .popup-body { padding: 2rem 2.5rem 2.5rem; }
  .popup-body .form-group { margin-bottom: 1rem; }
  .popup-body .form-group label {
    display: block; font-size: 0.78rem; font-weight: 500;
    color: var(--muted); margin-bottom: 0.35rem;
    text-transform: uppercase; letter-spacing: 0.04em;
  }
  .popup-body .form-group input,
  .popup-body .form-group select {
    width: 100%; padding: 0.75rem 1rem;
    border: 1.5px solid rgba(212,96,122,0.2);
    border-radius: 0.7rem;
    font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
    background: #fff; color: var(--deep); outline: none;
    transition: border-color 0.3s;
  }
  .popup-body .form-group input:focus,
  .popup-body .form-group select:focus { border-color: var(--rose); }
  .popup-body .submit-btn { margin-top: 0.5rem; font-size: 0.9rem; }
  .popup-privacy { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 0.8rem; }
  .popup-info-box {
    display: flex; flex-wrap: wrap; gap: 0.5rem;
    margin-bottom: 1.2rem;
    background: rgba(212,96,122,0.07);
    border-radius: 0.8rem;
    padding: 0.8rem 1rem;
  }
  .popup-info-box span {
    font-size: 0.78rem; font-weight: 500; color: var(--rose);
    background: rgba(212,96,122,0.1);
    padding: 0.25rem 0.7rem; border-radius: 50px;
    border: 1px solid rgba(212,96,122,0.2);
  }
