/* ============================================================
   CLEANE — Dra. Cleane Almeida · Harmonização Facial
   Warm-gold luxury aesthetic-clinic system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
  /* surfaces */
  --cream:    #FBF6EE;
  --cream-2:  #F5ECDD;
  --paper:    #FFFFFF;
  --paper-2:  #FDFAF4;

  /* ink */
  --ink:      #2B2118;
  --ink-2:    #4A3D2E;
  --ink-soft: #847666;
  --line:     #EBE0CE;
  --line-2:   #E0D2BA;

  /* gold */
  --gold:      #BE9748;
  --gold-2:    #D9B772;
  --gold-3:    #EBD5A0;
  --gold-deep: #99722B;
  --gold-grad: linear-gradient(118deg, #E7CD8C 0%, #C89E51 52%, #A37C34 100%);
  --gold-grad-soft: linear-gradient(120deg, #F0E2BD 0%, #E4CC8E 100%);

  /* brown (dark bands) */
  --brown:    #3A2A19;
  --brown-2:  #54381F;
  --brown-grad: linear-gradient(125deg, #3A2A19 0%, #5A3D20 60%, #3A2917 100%);

  --shadow-sm: 0 4px 18px -8px rgba(80, 55, 20, .22);
  --shadow:    0 18px 50px -22px rgba(80, 55, 20, .32);
  --shadow-lg: 0 40px 90px -40px rgba(70, 48, 18, .45);

  --r:    18px;
  --r-lg: 28px;
  --maxw: 1180px;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---------- type ---------- */
.serif { font-family: 'Cormorant Garamond', serif; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.01em;
  color: var(--ink);
}

.eyebrow {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 56ch;
  font-weight: 400;
}

em.g, .gold-ital {
  font-style: italic;
  color: var(--gold-deep);
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: 28px; }
section { position: relative; }
.pad { padding-block: clamp(72px, 9vw, 140px); }

/* ---------- buttons ---------- */
.btn {
  --bg: var(--gold-grad);
  display: inline-flex; align-items: center; gap: .6em;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bg);
  border: none;
  padding: 17px 34px;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 34px -14px rgba(160, 120, 40, .7);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
  isolation: isolate;
}
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(118deg, #F3DFA8, #D2A95C 55%, #B68A3D);
  opacity: 0;
  transition: opacity .45s var(--ease);
  z-index: -1;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 24px 46px -16px rgba(160, 120, 40, .85); }
.btn:hover::after { opacity: 1; }
.btn .arw { transition: transform .4s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

.btn.ghost {
  background: transparent;
  color: var(--gold-deep);
  border: 1.5px solid var(--line-2);
  box-shadow: none;
}
.btn.ghost::after { display: none; }
.btn.ghost:hover { border-color: var(--gold); color: var(--ink); background: var(--paper); }

.btn.light {
  background: #fff; color: var(--gold-deep);
  box-shadow: 0 16px 40px -18px rgba(0,0,0,.4);
}
.btn.light::after { background: #fff7e8; }

/* ---------- nav ---------- */
header.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease);
  padding-block: 22px;
}
header.nav.scrolled {
  background: rgba(251, 246, 238, .85);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(80,55,20,.4);
  padding-block: 12px;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.logo-mark { height: 48px; width: auto; display: block; transition: height .5s var(--ease); }
header.nav.scrolled .logo-mark { height: 40px; }
.ft-brand img { height: 104px; width: auto; display: block; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-grad);
  display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  color: #fff; font-size: 1.4rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.3), var(--shadow-sm);
}
.brand .bn { line-height: 1.05; }
.brand .bn b { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.32rem; letter-spacing: .02em; color: var(--ink); display: block; }
.brand .bn span { font-size: .6rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .82rem; font-weight: 500; letter-spacing: .04em;
  color: var(--ink-2); text-decoration: none; position: relative;
  transition: color .3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1.5px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav .btn { white-space: nowrap; padding: 14px 26px; font-size: .76rem; }
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: block;
  padding-top: 190px; padding-bottom: 90px;
  overflow: hidden;
  background: linear-gradient(120deg, #FBF6EE 0%, #F7EFE0 60%, #F2E7D2 100%);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url('assets/hero-banner.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 104%;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(97deg, #FBF6EE 34%, rgba(251,246,238,.86) 50%, rgba(251,246,238,0) 70%);
}
.hero .wrap { position: relative; z-index: 2; width: 100%; }
.hero-grid {
  display: block; max-width: 460px; margin-right: auto; margin-left: clamp(40px, 20vw, 380px);
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.hero h1 .accent { color: var(--gold-deep); font-style: italic; }
.hero .lead { margin-top: 26px; font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero-trust { display: flex; align-items: center; gap: 22px; margin-top: 40px; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars image-slot, .hero-trust .avatars .av {
  width: 46px; height: 46px; border-radius: 50%; margin-left: -12px; object-fit: cover;
  border: 3px solid var(--cream); box-shadow: var(--shadow-sm);
  background: var(--cream-2);
}
.hero-trust .avatars > :first-child { margin-left: 0; }
.hero-trust .tx { font-size: .86rem; color: var(--ink-soft); line-height: 1.4; }
.hero-trust .tx b { color: var(--ink); font-weight: 700; }
.stars-hidden{}
.stars { color: var(--gold); letter-spacing: 2px; font-size: .8rem; }

.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: 220px 220px 26px 26px;
  overflow: hidden; aspect-ratio: 3/4;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.6);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 16%; display: block; }
.hero-photo image-slot { width: 100%; height: 100%; }
.hero-badge {
  position: absolute; background: var(--paper); border-radius: 16px;
  box-shadow: var(--shadow); padding: 16px 20px; display: flex; gap: 13px; align-items: center;
  border: 1px solid var(--line);
}
.hero-badge .ic { width: 38px; height: 38px; border-radius: 11px; background: var(--gold-grad-soft); display: grid; place-items: center; color: var(--gold-deep); }
.hero-badge .num { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; line-height: 1; color: var(--ink); }
.hero-badge .lb { font-size: .68rem; letter-spacing: .04em; color: var(--ink-soft); }
.hb-1 { bottom: 36px; left: -34px; }
.hb-2 { top: 40px; right: -28px; }

/* decorative blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: 0; pointer-events: none; }
.blob.g { background: radial-gradient(circle, rgba(216,183,114,.6), transparent 70%); }

/* ---------- gallery section ---------- */
.gallery-sec { background: var(--paper); }
.gallery-sec .ba-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.gallery-sec .ba { padding: 10px; border-radius: var(--r); }
.gallery-sec .ba-img { aspect-ratio: 4 / 5; cursor: zoom-in; }
.gallery-sec .ba-img::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: radial-gradient(circle at 50% 50%, rgba(40,28,15,0) 60%, rgba(40,28,15,.18) 100%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.gallery-sec .ba:hover .ba-img::after { opacity: 1; }
.gallery-sec .ba-img .zoom {
  position: absolute; z-index: 4; right: 12px; bottom: 12px;
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.9); color: var(--gold-deep); box-shadow: var(--shadow-sm);
  opacity: 0; transform: translateY(6px) scale(.9); transition: all .45s var(--ease); pointer-events: none;
}
.gallery-sec .ba:hover .ba-img .zoom { opacity: 1; transform: none; }
.gallery-sec .ba-meta { padding: 12px 8px 4px; }
.gallery-sec .ba-meta h4 { font-size: 1.14rem; }
.gallery-sec .ba-meta span { font-size: .68rem; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center; padding: 4vw;
  background: rgba(28, 20, 12, .58); backdrop-filter: blur(10px) saturate(1.05);
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox .lb-stage {
  position: relative; max-width: min(560px, 92vw); width: 100%;
  background: var(--paper); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.5);
  transform: translateY(24px) scale(.96); transition: transform .5s var(--ease);
}
.lightbox.open .lb-stage { transform: none; }
.lightbox .lb-stage img { width: 100%; height: auto; max-height: 78vh; object-fit: contain; display: block; background: var(--cream-2); }
.lightbox .lb-cap {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 22px; background: var(--paper);
}
.lightbox .lb-cap h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; }
.lightbox .lb-cap span { font-size: .74rem; color: var(--gold-deep); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.lb-close {
  position: absolute; top: 14px; right: 14px; z-index: 5;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.92); color: var(--ink); font-size: 1.1rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), background .35s;
}
.lb-close:hover { transform: rotate(90deg); background: #fff; }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 46px; height: 46px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.85); color: var(--gold-deep); font-size: 1.3rem;
  display: grid; place-items: center; box-shadow: var(--shadow); transition: background .35s, transform .35s var(--ease);
}
.lb-nav:hover { background: #fff; }
.lb-prev { left: 14px; } .lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next { right: 14px; } .lb-next:hover { transform: translateY(-50%) translateX(3px); }

/* ---------- generic section heading ---------- */
.sec-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.sec-head h2 { font-size: clamp(2.1rem, 4vw, 3.3rem); margin-top: 16px; }
.sec-head p { margin-top: 18px; color: var(--ink-soft); }

/* ---------- intro cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.icard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 38px 32px; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  position: relative; overflow: hidden;
}
.icard::before {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 100%;
  background: var(--gold-grad); transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.icard:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: var(--line-2); }
.icard:hover::before { transform: scaleX(1); }
.icard .ic {
  width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center;
  background: var(--gold-grad-soft); color: var(--gold-deep); margin-bottom: 22px;
}
.icard h3 { font-size: 1.55rem; margin-bottom: 10px; }
.icard p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- gold band: o que é ---------- */
.band-gold {
  background: var(--gold-grad); color: #fff; overflow: hidden;
}
.band-gold::before, .band-gold::after {
  content: ""; position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
}
.band-gold::before { width: 460px; height: 460px; right: -160px; top: -160px; }
.band-gold::after  { width: 300px; height: 300px; left: -120px; bottom: -150px; }
.band-gold .eyebrow { color: #fff6e2; }
.band-gold .eyebrow::before { background: linear-gradient(90deg, transparent, #fff6e2); }
.band-gold .eyebrow.center::after { background: linear-gradient(90deg, #fff6e2, transparent); }
.band-gold h2 { color: #fff; }
.band-gold .lead { color: rgba(255,255,255,.86); }
.feat-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 50px; }
.fcard {
  background: rgba(255,255,255,.96); border-radius: var(--r); padding: 34px 28px;
  color: var(--ink); box-shadow: 0 30px 60px -30px rgba(110,75,20,.6);
  transition: transform .5s var(--ease);
}
.fcard:hover { transform: translateY(-8px); }
.fcard .ic { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-grad); color:#fff; display: grid; place-items: center; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.fcard h3 { font-size: 1.45rem; margin-bottom: 8px; }
.fcard p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- benefits ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr) 1.3fr; gap: 22px; }
.benefit-grid .bcol { display: grid; gap: 22px; }
.bcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.bcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.bcard .n { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold-2); line-height: 1; font-weight: 600; }
.bcard h3 { font-size: 1.3rem; margin: 12px 0 8px; }
.bcard p { font-size: .9rem; color: var(--ink-soft); }
.bcard.tall { display: flex; flex-direction: column; justify-content: flex-end; padding: 0; overflow: hidden; min-height: 320px; position: relative; border: none; }
.bcard.tall image-slot, .bcard.tall img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.bcard.tall .cap { position: relative; z-index: 2; padding: 28px; color: #fff; background: linear-gradient(to top, rgba(40,28,15,.86), transparent); }
.bcard.tall .cap h3 { color: #fff; }
.bcard.tall .cap p { color: rgba(255,255,255,.85); }

/* ---------- philosophy quote ---------- */
.philo { text-align: center; }
.philo .big {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.18; max-width: 18ch; margin: 24px auto 0;
  text-wrap: balance;
}
.philo .qmark { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold-2); line-height: .4; }
.philo-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.pcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 30px 24px; text-align: center; transition: transform .5s var(--ease), box-shadow .5s; }
.pcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pcard .ic { width: 50px; height: 50px; margin: 0 auto 16px; border-radius: 50%; background: var(--gold-grad-soft); color: var(--gold-deep); display: grid; place-items: center; }
.pcard h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 6px; }
.pcard p { font-size: .85rem; color: var(--ink-soft); }

/* ---------- before / after ---------- */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ba {
  margin: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 16px; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s;
}
.ba:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ba-img { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 277 / 360; background: var(--cream-2); }
.ba-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .7s var(--ease); }
.ba:hover .ba-img img { transform: scale(1.04); }
.ba-img .tag {
  position: absolute; top: 12px; z-index: 3;
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; padding: 5px 12px; border-radius: 999px; backdrop-filter: blur(4px);
}
.ba-img .tag.before { left: 12px; background: rgba(60,42,25,.7); }
.ba-img .tag.after { right: 12px; background: var(--gold-grad); }
.ba-meta { display: flex; align-items: center; justify-content: space-between; padding: 16px 10px 6px; }
.ba-meta h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600; }
.ba-meta span { font-size: .78rem; color: var(--gold-deep); font-weight: 600; letter-spacing: .04em; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq {
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px;
  margin-bottom: 14px; overflow: hidden; transition: box-shadow .4s, border-color .4s;
}
.faq.open { box-shadow: var(--shadow); border-color: var(--line-2); }
.faq button {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--ink);
}
.faq .pl { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 50%; background: var(--gold-grad-soft); color: var(--gold-deep); display: grid; place-items: center; position: relative; transition: transform .4s var(--ease); }
.faq.open .pl { transform: rotate(135deg); }
.faq .pl::before, .faq .pl::after { content:""; position: absolute; background: var(--gold-deep); border-radius: 2px; }
.faq .pl::before { width: 12px; height: 2px; }
.faq .pl::after { width: 2px; height: 12px; }
.faq .ans { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq .ans p { padding: 0 28px 26px; color: var(--ink-soft); font-size: .96rem; max-width: 60ch; }

/* ---------- about specialist ---------- */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.about-photo { position: relative; }
.about-photo .ring { position: absolute; inset: -22px; border: 1px solid var(--line-2); border-radius: 50%; }
.about-photo .disc { aspect-ratio: 1; border-radius: 50%; overflow: hidden; box-shadow: var(--shadow); border: 6px solid var(--paper); }
.about-photo image-slot, .about-photo .disc img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; display: block; }
.about-photo .chip {
  position: absolute; bottom: 18px; right: -10px; background: var(--paper); padding: 14px 20px;
  border-radius: 14px; box-shadow: var(--shadow); border: 1px solid var(--line); text-align: center;
}
.about-photo .chip b { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; color: var(--gold-deep); display: block; line-height: 1; }
.about-photo .chip span { font-size: .68rem; letter-spacing: .06em; color: var(--ink-soft); }
.about-grid h2 { font-size: clamp(2rem, 3.6vw, 3rem); margin: 14px 0 20px; }
.about-grid p { color: var(--ink-soft); margin-bottom: 16px; }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 30px; }
.credentials li { list-style: none; display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--ink-2); }
.credentials .ck { flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%; background: var(--gold-grad); color: #fff; display: grid; place-items: center; font-size: .7rem; margin-top: 2px; }

/* ---------- dark emotional band ---------- */
.band-dark { background: var(--brown-grad); color: #fff; text-align: center; overflow: hidden; }
.band-dark::before { content:""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 120%, rgba(216,183,114,.22), transparent 60%); }
.band-dark .wrap { position: relative; z-index: 2; }
.band-dark .eyebrow { color: var(--gold-3); justify-content: center; }
.band-dark .eyebrow::before { background: linear-gradient(90deg, transparent, var(--gold-3)); }
.band-dark .eyebrow::after { content:""; width: 34px; height: 1px; background: linear-gradient(90deg, var(--gold-3), transparent); }
.band-dark h2 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.4rem); margin: 18px auto; max-width: 18ch; }
.band-dark p { color: rgba(255,255,255,.78); max-width: 60ch; margin: 0 auto 34px; }

/* ---------- method steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .num {
  width: 70px; height: 70px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line-2); display: grid; place-items: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--gold-deep);
  box-shadow: var(--shadow-sm); position: relative; z-index: 2;
}
.steps .step:not(:last-child)::after {
  content: ""; position: absolute; top: 35px; left: 60%; width: 80%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-2) 0 6px, transparent 6px 12px);
}
.step h3 { font-size: 1.4rem; margin-bottom: 8px; }
.step p { font-size: .88rem; color: var(--ink-soft); }

/* ---------- testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform .5s var(--ease), box-shadow .5s;
  display: flex; flex-direction: column; gap: 18px;
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tcard .stars { font-size: .95rem; }
.tcard p { font-size: .98rem; color: var(--ink-2); line-height: 1.7; font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }
.tcard .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.tcard .who image-slot, .tcard .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.tcard .who b { display: block; font-family: 'Manrope'; font-size: .9rem; font-weight: 700; }
.tcard .who span { font-size: .76rem; color: var(--ink-soft); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.cinfo-item { display: flex; gap: 16px; align-items: flex-start; }
.cinfo-item .ic { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 14px; background: var(--gold-grad-soft); color: var(--gold-deep); display: grid; place-items: center; }
.cinfo-item h4 { font-family: 'Manrope'; font-size: .76rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); font-weight: 700; margin-bottom: 3px; }
.cinfo-item p { font-size: 1rem; color: var(--ink); }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line-2); border-radius: 12px;
  font-family: 'Manrope'; font-size: .96rem; color: var(--ink); background: var(--paper-2);
  transition: border-color .3s, box-shadow .3s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(216,183,114,.22); }
.field textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 8px; }
.form-note { font-size: .76rem; color: var(--ink-soft); text-align: center; margin-top: 14px; }

/* ---------- footer ---------- */
footer.ft { background: var(--brown-grad); color: rgba(255,255,255,.7); padding-block: 64px 28px; }
.ft-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.ft .brand .bn b { color: #fff; }
.ft p { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: 18px; max-width: 34ch; }
.ft h5 { font-family: 'Manrope'; color: #fff; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; font-weight: 700; }
.ft ul { list-style: none; display: grid; gap: 11px; }
.ft a { color: rgba(255,255,255,.66); text-decoration: none; font-size: .9rem; transition: color .3s; }
.ft a:hover { color: var(--gold-3); }
.ft .socials { display: flex; gap: 12px; margin-top: 20px; }
.ft .socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; }
.ft .socials a:hover { background: var(--gold-grad); border-color: transparent; }
.ft-base { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 24px; text-align: center; font-size: .78rem; color: rgba(255,255,255,.5); }

/* ---------- floating whatsapp chatbot ---------- */
.wa-widget { position: fixed; bottom: 24px; right: 24px; z-index: 120; }
.wa-fab {
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 34px -10px rgba(37,211,102,.7);
  transition: transform .4s var(--ease); animation: wa-pulse 2.6s infinite; position: relative;
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab .wa-x { display: none; }
.wa-widget.open .wa-fab .wa-ic { display: none; }
.wa-widget.open .wa-fab .wa-x { display: block; }
.wa-widget.open .wa-fab { animation: none; background: var(--brown-2); }
.wa-dot {
  position: absolute; top: -3px; right: -3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: .68rem; font-weight: 700;
  display: grid; place-items: center; border: 2px solid var(--cream);
}
@keyframes wa-pulse { 0%,100%{ box-shadow:0 14px 34px -10px rgba(37,211,102,.7),0 0 0 0 rgba(37,211,102,.5);} 50%{ box-shadow:0 14px 34px -10px rgba(37,211,102,.7),0 0 0 14px rgba(37,211,102,0);} }

.wa-panel {
  position: absolute; bottom: 78px; right: 0; width: 340px; max-width: calc(100vw - 40px);
  background: var(--paper); border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  transform-origin: bottom right; transform: translateY(16px) scale(.9); opacity: 0; visibility: hidden;
  transition: transform .45s var(--ease), opacity .45s, visibility .45s;
}
.wa-widget.open .wa-panel { transform: none; opacity: 1; visibility: visible; }
.wa-head { background: linear-gradient(120deg, #128C7E, #25D366); color: #fff; padding: 18px 20px; display: flex; gap: 13px; align-items: center; }
.wa-head .av { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.6); background: #fff; }
.wa-head b { font-family: 'Manrope'; font-size: .96rem; font-weight: 700; display: block; line-height: 1.2; }
.wa-head small { font-size: .74rem; opacity: .9; display: flex; align-items: center; gap: 5px; }
.wa-head small::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #baf7c8; box-shadow: 0 0 0 0 rgba(186,247,200,.7); animation: wa-online 2s infinite; }
@keyframes wa-online { 0%,100%{ box-shadow: 0 0 0 0 rgba(186,247,200,.6);} 50%{ box-shadow: 0 0 0 5px rgba(186,247,200,0);} }
.wa-body {
  padding: 18px; background:
    linear-gradient(rgba(251,246,238,.94), rgba(251,246,238,.94)),
    radial-gradient(circle at 20% 15%, rgba(190,151,72,.10) 0 2px, transparent 2px) 0 0 / 22px 22px;
  min-height: 150px; max-height: 300px; overflow-y: auto; display: flex; flex-direction: column; gap: 10px;
}
.wa-msg { max-width: 84%; padding: 10px 14px; font-size: .88rem; line-height: 1.45; border-radius: 16px; animation: wa-pop .4s var(--ease) both; }
.wa-msg.bot { align-self: flex-start; background: #fff; color: var(--ink-2); border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm); }
.wa-msg.user { align-self: flex-end; background: #dcf8c6; color: #123; border-bottom-right-radius: 5px; }
@keyframes wa-pop { from { opacity: 0; transform: translateY(8px); } }
.wa-typing { align-self: flex-start; background: #fff; padding: 12px 16px; border-radius: 16px; border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm); display: none; gap: 4px; }
.wa-typing.show { display: flex; }
.wa-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-soft); animation: wa-blink 1.2s infinite; }
.wa-typing i:nth-child(2){ animation-delay: .2s; } .wa-typing i:nth-child(3){ animation-delay: .4s; }
@keyframes wa-blink { 0%,60%,100%{ opacity: .3; transform: translateY(0);} 30%{ opacity: 1; transform: translateY(-3px);} }
.wa-foot { padding: 12px; border-top: 1px solid var(--line); background: var(--paper); display: flex; gap: 8px; }
.wa-foot input { flex: 1; border: 1.5px solid var(--line-2); border-radius: 999px; padding: 11px 16px; font-family: 'Manrope'; font-size: .88rem; background: var(--paper-2); }
.wa-foot input:focus { outline: none; border-color: #25D366; box-shadow: 0 0 0 3px rgba(37,211,102,.16); }
.wa-foot button { flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer; background: #25D366; color: #fff; display: grid; place-items: center; transition: transform .3s var(--ease); }
.wa-foot button:hover { transform: scale(1.08); }
.wa-quick { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 2px; }
.wa-quick button { background: #fff; border: 1px solid var(--line-2); color: var(--gold-deep); font-family: 'Manrope'; font-size: .78rem; font-weight: 600; padding: 8px 13px; border-radius: 999px; cursor: pointer; transition: all .3s var(--ease); }
.wa-quick button:hover { background: var(--gold-grad); color: #fff; border-color: transparent; }

/* ---------- scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
[data-reveal][data-delay="4"] { transition-delay: .4s; }
[data-reveal].settled { transition: none !important; opacity: 1 !important; transform: none !important; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .wa { animation: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .cards-3, .feat-3, .philo-row, .steps, .testi-grid, .ba-grid { grid-template-columns: 1fr 1fr; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo { max-width: 360px; margin-inline: auto; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-cta > .btn { display: none; }
  .nav-links .menu-cta { width: 100%; justify-content: center; color: #fff; padding: 16px 26px; }
  .nav-links .menu-cta::after { display: none; }
  .burger { display: flex; }
  /* hero: nudge focus so text area stays clear of her */
  .hero-bg { background-size: auto 92%; background-position: right bottom; }
  .hero-bg::after { background: linear-gradient(97deg, #FBF6EE 46%, rgba(251,246,238,.78) 60%, rgba(251,246,238,0) 78%); }
  .hero-grid { max-width: 400px; margin-left: clamp(24px, 8vw, 150px); }
}
@media (max-width: 700px) {
  /* stack hero: banner as top image band, text below on cream */
  .hero {
    flex-direction: column; min-height: 0;
    padding-top: 84px; padding-bottom: 44px;
    background: linear-gradient(180deg, #FBF6EE, #F5ECDD);
  }
  .hero-bg {
    position: relative; inset: auto; z-index: 1;
    width: 100%; height: 46vw; max-height: 320px; min-height: 220px;
    background-position: 76% 22%; background-size: cover;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow);
  }
  .hero-bg::after { display: none; }
  .hero .wrap { padding-top: 26px; }
  .hero-grid { max-width: 100%; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .eyebrow { justify-content: center; }
}
@media (max-width: 600px) {
  .cards-3, .feat-3, .philo-row, .steps, .testi-grid, .ba-grid, .benefit-grid, .form-row, .credentials { grid-template-columns: 1fr; }
  .steps .step::after { display: none; }
  .wrap { padding-inline: 20px; }
}
