  :root{
    --bg: #f8ece7;
    --bg-card: #fffaf8;
    --bg-soft: #f2ddd6;
    --pink: #a9687a;
    --pink-deep: #8a4d5e;
    --pink-pale: #eccdd2;
    --lilac: #c98fa0;
    --gold: #c9a24a;
    --text: #241b1c;
    --text-dim: #6b5a58;
    --max-w: 1120px;
  }

  *{ box-sizing: border-box; margin:0; padding:0; }
  html{ scroll-behavior: smooth; }

  body{
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior: auto; }
    *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  }

  h1,h2,h3,.serif{
    font-family: 'Fraunces', serif;
    font-weight: 600;
    letter-spacing: -0.01em;
  }

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

  .wrap{
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
  }

  .eyebrow{
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--pink-deep);
  }

  /* ---------- THREAD (signature element) ---------- */
  .thread-rail{
    position: fixed;
    left: 34px;
    top: 0;
    bottom: 0;
    width: 2px;
    z-index: 40;
    display: none;
  }
  @media (min-width: 980px){ .thread-rail{ display: block; } }

  .thread-track{
    position: absolute;
    top: 120px;
    bottom: 120px;
    left: 0;
    width: 2px;
    border-radius: 2px;
    background: var(--pink-pale);
  }
  .thread-fill{
    position: absolute;
    top: 120px;
    left: 0;
    width: 2px;
    border-radius: 2px;
    height: 0%;
    background: linear-gradient(180deg, var(--pink), var(--pink-deep));
    transition: height 0.08s linear;
  }
  .thread-dot{
    position: absolute;
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--pink-pale);
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  }
  .thread-dot.lit{
    background: var(--pink);
    border-color: var(--pink);
    box-shadow: 0 0 14px rgba(169,104,122,0.42);
    transform: scale(1.15);
  }

  /* ---------- NAV ---------- */
  header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(248,236,231,0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--pink-pale);
  }
  nav{
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo{
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .logo-leaf{ width: 26px; height: 26px; flex-shrink: 0; }
  .logo-script{
    font-family: 'Petit Formal Script', cursive;
    font-size: 26px;
    color: var(--pink-deep);
    line-height: 1;
  }
  .nav-links{
    display: none;
    gap: 32px;
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 500;
  }
  @media (min-width: 780px){ .nav-links{ display: flex; } }
  .nav-links a:hover{ color: var(--pink-deep); }
  .btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
  }
  .btn-pink{
    background: var(--pink);
    color: #fff;
    box-shadow: 0 6px 18px rgba(169,104,122,0.28);
  }
  .btn-pink:hover{
    background: var(--pink-deep);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(169,104,122,0.38);
  }
  .btn-outline{
    border: 2px solid var(--pink-pale);
    color: var(--text);
  }
  .btn-outline:hover{ border-color: var(--pink); color: var(--pink-deep); }

  /* ---------- HERO ---------- */
  .hero{
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 90px;
    position: relative;
    background:
      radial-gradient(ellipse 800px 550px at 88% 8%, rgba(201,143,160,0.16), transparent 60%),
      radial-gradient(ellipse 700px 500px at 6% 92%, rgba(201,162,74,0.14), transparent 60%),
      var(--bg);
    overflow: hidden;
  }
  .hero .wrap{ position: relative; z-index: 2; }

  .hero-blob{
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.55;
    z-index: 1;
  }
  .blob-1{ width: 280px; height: 280px; background: var(--pink-pale); top: 8%; right: 6%; animation: float-a 9s ease-in-out infinite; }
  .blob-2{ width: 160px; height: 160px; background: #ecc9ae; bottom: 12%; right: 22%; animation: float-b 7s ease-in-out infinite; }
  .blob-3{ width: 90px; height: 90px; background: #f2dfab; top: 20%; right: 32%; animation: float-a 6s ease-in-out infinite reverse; }
  @keyframes float-a{ 0%,100%{ transform: translateY(0px); } 50%{ transform: translateY(-18px); } }
  @keyframes float-b{ 0%,100%{ transform: translateY(0px) translateX(0); } 50%{ transform: translateY(14px) translateX(-10px); } }

  .hero h1{
    font-size: clamp(2.3rem, 5.4vw, 4rem);
    line-height: 1.12;
    margin: 20px 0 26px;
    max-width: 15ch;
    color: var(--text);
  }
  .hero h1 em{
    font-style: italic;
    color: var(--pink);
  }
  .hero p.lead{
    max-width: 46ch;
    font-size: 18px;
    color: var(--text-dim);
    margin-bottom: 38px;
  }
  .hero-ctas{ display: flex; gap: 14px; flex-wrap: wrap; }
  .hero-note{
    margin-top: 28px;
    font-size: 13px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
  }
  .hero-note .dot{ width:6px; height:6px; border-radius:50%; background: var(--pink); flex-shrink:0; }

  .scroll-cue{
    position: absolute;
    bottom: 36px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    font-weight: 600;
    z-index: 2;
  }
  .scroll-cue .line{
    width: 2px; height: 34px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--pink), transparent);
    animation: pulse-down 2.2s ease-in-out infinite;
  }
  @keyframes pulse-down{ 0%,100%{ opacity: 0.3; } 50%{ opacity: 1; } }

  /* ---------- SECTION BACKGROUND DECORATIONS ---------- */
  section{ overflow: hidden; }
  .wrap{ position: relative; z-index: 1; }
  .section-deco{
    position: absolute;
    width: 380px;
    height: 380px;
    opacity: 0.09;
    pointer-events: none;
    z-index: 0;
  }
  .section-deco.pos-tr{ top: -70px; right: -70px; }
  .section-deco.pos-bl{ bottom: -70px; left: -70px; transform: rotate(180deg); }
  .section-deco.pos-br{ bottom: -90px; right: -50px; transform: rotate(90deg); }
  .section-deco.pos-tl{ top: -50px; left: -90px; transform: rotate(-90deg); }
  .deco-terracotta{ color: var(--lilac); }
  .deco-gold{ color: var(--gold); }
  .deco-teal{ color: var(--pink); }

  section{ padding: 110px 0; position: relative; }
  .section-white{ background: var(--bg); }
  .section-soft{ background: var(--bg-soft); }

  .section-head{ max-width: 640px; margin-bottom: 56px; }
  .section-head h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-top: 14px; color: var(--text); }

  /* ---------- CARDS: symptoms ---------- */
  .card-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
  }
  .symptom-card{
    background: var(--bg-card);
    border: 1px solid var(--pink-pale);
    border-radius: 20px;
    padding: 28px 26px;
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }
  .symptom-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 34px rgba(201,143,160,0.16);
    border-color: var(--pink);
  }
  .symptom-card h3{
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--pink-deep);
  }
  .symptom-card p{ font-size: 15px; color: var(--text-dim); }

  /* ---------- ABOUT / QUOTE ---------- */
  .about-grid{
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 56px;
    align-items: start;
  }
  @media (max-width: 780px){ .about-grid{ grid-template-columns: 1fr; } }
  .photo-frame{
    aspect-ratio: 4/5;
    width: 100%;
    background: linear-gradient(160deg, var(--pink-pale), #f2dfab);
    border: 1px solid var(--pink-pale);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pink-deep);
    font-size: 13px;
    font-weight: 500;
    object-fit: cover;
  }
  .about-text h3{ font-size: 1.6rem; margin-bottom: 4px; color: var(--text); }
  .about-role{ font-size: 14px; color: var(--pink-deep); margin-bottom: 22px; font-weight: 700; }
  .about-text p{ margin-bottom: 16px; color: var(--text-dim); }
  .formation-note{
    margin-top: 26px;
    padding: 18px 22px;
    background: #fff;
    border-left: 3px solid var(--pink);
    border-radius: 4px 16px 16px 4px;
    font-size: 14.5px;
    color: var(--text);
    box-shadow: 0 8px 20px rgba(169,104,122,0.08);
  }

  /* ---------- QUOTE block ---------- */
  .pull-quote{
    max-width: 720px;
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-weight: 500;
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    line-height: 1.5;
    color: var(--text);
    border-left: 3px solid var(--pink);
    padding-left: 28px;
    margin: 50px 0;
  }
  .pull-quote span{ display:block; margin-top: 14px; font-family:'Inter',sans-serif; font-style: normal; font-size: 13px; font-weight: 600; color: var(--pink-deep); }

  /* ---------- STEPS ---------- */
  .steps{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px,1fr));
    gap: 0;
    counter-reset: step;
    margin-top: 10px;
  }
  .step{
    position: relative;
    padding: 30px 26px 30px 0;
    border-top: 2px solid var(--pink-pale);
  }
  .step::before{
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--pink);
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 14px;
  }
  .step h3{ font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text); }
  .step p{ font-size: 14.5px; color: var(--text-dim); }

  .online-banner{
    margin-top: 44px;
    border-radius: 24px;
    padding: 32px 34px;
    background: linear-gradient(120deg, #fff, var(--pink-pale));
    border: 1px solid var(--pink-pale);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .online-banner h4{ font-family:'Fraunces',serif; font-size: 19px; margin-bottom: 6px; color: var(--pink-deep); font-weight: 600; }
  .online-banner p{ font-size: 14.5px; color: var(--text-dim); max-width: 46ch; }

  /* ---------- FAQ ---------- */
  .faq-item{ border-bottom: 1px solid var(--pink-pale); }
  .faq-q{
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 22px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 17px;
    color: var(--text);
  }
  .faq-icon{
    font-size: 22px;
    color: var(--pink);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
  }
  .faq-item.open .faq-icon{ transform: rotate(45deg); }
  .faq-a{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    font-size: 15px;
    color: var(--text-dim);
    padding: 0 4px;
  }
  .faq-item.open .faq-a{ max-height: 240px; padding: 0 4px 22px; }

  /* ---------- CONTACT / FOOTER ---------- */
  .contact-grid{
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
  }
  @media (max-width: 780px){ .contact-grid{ grid-template-columns: 1fr; } }
  .contact-list{ margin-top: 30px; display: flex; flex-direction: column; gap: 16px; }
  .contact-row{
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--pink-pale);
  }
  .contact-row .k{ color: var(--text-dim); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; width: 90px; flex-shrink: 0; font-weight: 700; }
  .contact-row a{ font-weight: 500; }
  .contact-row a:hover{ color: var(--pink-deep); }

  .emergency-box{
    background: #fff;
    border: 1px solid var(--pink-pale);
    border-radius: 20px;
    padding: 24px 26px;
    font-size: 13.5px;
    color: var(--text-dim);
    line-height: 1.6;
  }
  .emergency-box strong{ color: var(--pink-deep); }

  footer{
    padding: 40px 0 50px;
    border-top: 1px solid var(--pink-pale);
    font-size: 13px;
    color: var(--text-dim);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .whatsapp-float{
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 60;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--pink);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(169,104,122,0.38);
    transition: transform 0.2s ease, background 0.2s ease;
  }
  .whatsapp-float:hover{ transform: scale(1.08); background: var(--pink-deep); }
  .whatsapp-float svg{ width: 27px; height: 27px; fill: #fff; }

  ::selection{ background: var(--pink); color: #fff; }
