:root {
  /* Base — warm cream (specified) */
  --pearl:     #EDE5D8;   /* main cream bg */
  --pearl-2:   #F3EDE0;   /* lighter cream */
  --pearl-3:   #FAF6F0;   /* near-white cream */
  --sand:      #D6C6AC;
  --sand-2:    #C6B393;

  /* Gold family (primary #C9973A) */
  --gold-100:  #F4E3B8;
  --gold:      #E3B76A;
  --gold-deep: #C9973A;   /* primary gold */
  --gold-800:  #8A5F28;

  /* Rosé / Vinho (primary #A05070) */
  --wine-800:  #5C3820;   /* warm brown (footer) */
  --wine-700:  #7A3844;
  --wine:      #A05070;   /* primary rosé/wine */
  --wine-soft: #C78A92;
  --rose-100:  #EECFCF;

  /* Ink / text — warm brown, never black */
  --ink-900:   #5C3820;   /* warm brown (matches footer) */
  --ink-700:   #6B4D3F;
  --ink-500:   #8A6F5E;
  --ink-300:   #B59E8B;

  /* Accents (secondary, quieter) */
  --lavender:  #b9a4d9;
  --turquoise: #7fb8b5;

  --line-dark:  rgba(43, 28, 24, 0.14);
  --line-gold:  rgba(184, 136, 63, 0.35);

  /* Type */
  --serif: "Cormorant Garamond", "Didot", "Bodoni 72", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--pearl);
  color: var(--ink-900);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.08;
}

.serif { font-family: var(--serif); }
.sans { font-family: var(--sans); }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--gold-deep);
  opacity: 0.7;
}

.section-num {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  opacity: 0.9;
}

/* ---------- Layout containers ---------- */
.page { width: 100%; overflow-x: hidden; }
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.section { position: relative; padding: 120px 0; }

.section--pearl { background: var(--pearl); color: var(--ink-900); }
.section--cream { background: var(--pearl-2); color: var(--ink-900); }
.section--light { background: var(--pearl-3); color: var(--ink-900); }
.section--dark  { background: var(--wine-800); color: var(--pearl-3); }

/* Dark-section eyebrow override */
.section--dark .eyebrow { color: var(--gold-100); }
.section--dark .eyebrow::before { background: var(--gold-100); }
.section--dark .section-num { color: var(--gold-100); opacity: 0.8; }

.divider { height: 1px; background: var(--line-dark); margin: 0 auto; max-width: 1200px; }

/* ---------- Nav ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 24px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.lang-switch .lang-active { color: var(--gold-deep); }
.lang-switch .lang-link { color: var(--ink-700); text-decoration: none; transition: color 0.2s; }
.lang-switch .lang-link:hover { color: var(--gold-deep); }
.lang-switch .lang-sep { opacity: 0.4; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-logo { width: 56px; height: 56px; object-fit: contain; }

/* Floating hero logo */
.hero-logo-float {
  position: absolute;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  object-fit: contain;
  opacity: 0.14;
  pointer-events: none;
  animation: floaty 7s ease-in-out infinite;
  z-index: 1;
}
@keyframes floaty {
  0%, 100% { transform: translateY(-50%) translateY(0); }
  50%      { transform: translateY(-50%) translateY(-14px); }
}

/* Bio section logo as profile emblem */
.bio-logo-emblem {
  width: 120px; height: 120px;
  object-fit: contain;
  margin-bottom: 24px;
  animation: floaty 8s ease-in-out infinite;
}
.brand-name {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-900);
  line-height: 1;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 9.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 6px;
}
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.nav-links a { opacity: 0.85; transition: color .2s ease, opacity .2s ease; }
.nav-links a:hover { color: var(--gold-deep); opacity: 1; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  background: transparent;
  cursor: pointer;
  transition: all .25s ease;
  border-radius: 0;
}
.btn:hover { background: var(--gold-deep); color: var(--pearl-3); }
.btn--filled {
  background: var(--gold-deep);
  color: var(--pearl-3);
  border-color: var(--gold-deep);
}
.btn--filled:hover { background: var(--wine); border-color: var(--wine); color: var(--pearl-3); }
.btn--wine {
  background: var(--wine-800);
  border-color: var(--wine-800);
  color: var(--pearl-3);
}
.btn--wine:hover { background: var(--wine-700); border-color: var(--wine-700); }
.btn--on-dark { border-color: var(--gold-100); color: var(--gold-100); }
.btn--on-dark:hover { background: var(--gold-100); color: var(--wine-800); }
.btn svg { width: 14px; height: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 15%, rgba(244, 227, 184, 0.9), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(199, 138, 146, 0.22), transparent 60%),
    linear-gradient(180deg, #f3ecde 0%, #ebe1d0 60%, #e3d4b9 100%);
}
.hero-rays {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.6;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: center;
  padding-top: 48px;
}
.hero-title {
  font-size: clamp(52px, 6.6vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.hero-title .em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 400;
}
.hero-title .wine {
  font-style: italic;
  color: var(--wine-700);
}
.hero-sub {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.65;
  max-width: 520px;
  color: var(--ink-700);
}
.hero-sub strong { color: var(--gold-deep); font-weight: 500; font-style: italic; }

.hero-meta {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-chip {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-700);
  padding: 6px 14px;
  border: 1px solid var(--line-gold);
  background: rgba(251, 247, 238, 0.4);
}
.hero-cta {
  margin-top: 44px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta .quiet {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-500);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-portrait {
  position: relative;
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  padding: 22px;
}
/* Decorative double-frame: outer offset gold + inner thin frame */
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-deep);
  pointer-events: none;
}
.hero-portrait::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 151, 58, 0.35);
  pointer-events: none;
}
/* Corner ornaments */
.portrait-corner {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--gold-deep);
  border-style: solid;
  border-width: 0;
  z-index: 3;
  pointer-events: none;
}
.portrait-corner.tl { top: 14px;    left: 14px;    border-top-width: 2px;    border-left-width: 2px; }
.portrait-corner.tr { top: 14px;    right: 14px;   border-top-width: 2px;    border-right-width: 2px; }
.portrait-corner.bl { bottom: 14px; left: 14px;    border-bottom-width: 2px; border-left-width: 2px; }
.portrait-corner.br { bottom: 14px; right: 14px;   border-bottom-width: 2px; border-right-width: 2px; }

.portrait-frame {
  display: none;
}
.portrait-img {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--pearl);
  display: block;
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(92, 56, 32, 0.35);
}
.portrait-img .placeholder-label {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ink-700);
  text-transform: uppercase;
  opacity: 0.75;
}
.portrait-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.portrait-photo-logo {
  object-fit: contain;
  object-position: center;
  background: linear-gradient(180deg, #efe6d4 0%, #e3d4b9 100%);
  padding: 24px;
  box-sizing: border-box;
}
.hero-portrait-clean {
  aspect-ratio: auto !important;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.hero-portrait-clean::before,
.hero-portrait-clean::after {
  display: none !important;
}
.hero-logo-img {
  width: 100%;
  height: auto;
  max-width: 520px;
  display: block;
  mix-blend-mode: multiply;
}
.portrait-tag {
  position: absolute;
  bottom: -28px; left: -20px;
  background: var(--pearl);
  padding: 10px 18px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--wine-700);
  border: 1px solid var(--line-gold);
}

.hero-footer {
  position: absolute;
  bottom: 36px; left: 0; right: 0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
}

/* ---------- Intro banner ---------- */
.intro {
  padding: 110px 0;
  background: var(--pearl-2);
  text-align: center;
  position: relative;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.intro-quote {
  font-family: var(--serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.005em;
  max-width: 960px;
  margin: 28px auto 0;
  color: var(--ink-900);
}
.intro-quote em {
  color: var(--gold-deep);
  font-style: italic;
}
.intro-sig {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--wine-700);
}

/* ---------- Pains grid ---------- */
.pains-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.pains-title {
  font-size: clamp(40px, 4.2vw, 62px);
  color: var(--ink-900);
}
.pains-title em { color: var(--wine-700); font-style: italic; }
.pains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-gold);
  border-bottom: 1px solid var(--line-gold);
}
.pain-card {
  padding: 48px 36px;
  border-right: 1px solid var(--line-gold);
  position: relative;
}
.pain-card:last-child { border-right: none; }
.pain-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 52px;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 28px;
}
.pain-text {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.4;
  font-weight: 300;
  color: var(--ink-900);
}
.pain-text strong {
  font-weight: 500;
  color: var(--wine-700);
  font-style: italic;
}
.pains-foot { margin-top: 72px; text-align: center; }
.pains-foot p {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 300;
  max-width: 820px;
  margin: 0 auto 32px;
  line-height: 1.4;
  color: var(--ink-900);
}
.pains-foot strong { color: var(--gold-deep); font-style: italic; font-weight: 400; }

/* ---------- Bio ---------- */
.bio {
  padding: 140px 0;
  background: var(--pearl-3);
  color: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 100px;
  align-items: start;
}
.bio-portrait {
  position: relative;
  aspect-ratio: 3/4;
  padding: 22px;
}
.bio-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-deep);
  pointer-events: none;
}
.bio-portrait::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 151, 58, 0.35);
  pointer-events: none;
}
.bio-portrait .portrait-img {
  background: var(--pearl);
  box-shadow: 0 24px 60px -28px rgba(92, 56, 32, 0.35);
}
.bio-portrait .portrait-tag {
  background: var(--pearl-3);
  color: var(--wine-700);
  border-color: var(--line-gold);
}
.bio-text h2 {
  font-size: clamp(42px, 4.4vw, 64px);
  margin-top: 20px;
  color: var(--ink-900);
}
.bio-text h2 em { font-style: italic; color: var(--gold-deep); }
.bio-lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--wine-700);
  margin: 28px 0 24px;
  max-width: 560px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}
.bio-body p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-700);
  margin: 0 0 18px;
  max-width: 560px;
}
.bio-cred {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line-gold);
  max-width: 560px;
}
.bio-cred dt {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.bio-cred dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink-900);
}

/* ---------- Services ---------- */
.services {
  padding: 140px 0;
  background: var(--pearl);
}
.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.services-head h2 {
  font-size: clamp(42px, 4.6vw, 68px);
  color: var(--ink-900);
}
.services-head h2 em { font-style: italic; color: var(--gold-deep); }
.services-head p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 440px;
  justify-self: end;
}
.services-list {
  border-top: 1px solid var(--line-gold);
}
.service-row {
  display: grid;
  grid-template-columns: 64px 1.4fr 2fr 180px;
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line-gold);
  align-items: start;
  transition: background .3s ease;
}
.service-row:hover {
  background: linear-gradient(90deg, transparent, rgba(244, 227, 184, 0.35), transparent);
}
.service-idx {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--gold-deep);
  opacity: 0.8;
}
.service-title {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink-900);
  margin-top: 6px;
}
.service-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-700);
  max-width: 520px;
}
.service-meta {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  text-align: right;
  padding-top: 12px;
  line-height: 1.9;
}

/* ---------- Modalities (Online / Presencial) ---------- */
.modalities {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--pearl-3) 0%, var(--pearl) 100%);
  color: var(--ink-900);
  position: relative;
  overflow: hidden;
}
.modalities-head { text-align: center; margin-bottom: 80px; }
.modalities-head h2 {
  font-size: clamp(42px, 4.6vw, 64px);
  margin-top: 18px;
  color: var(--ink-900);
}
.modalities-head h2 em { font-style: italic; color: var(--wine); }
.modalities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.modality-card {
  padding: 56px 48px;
  border: 1px solid var(--line-gold);
  background: var(--pearl-3);
  position: relative;
  transition: all .3s ease;
}
.modality-card:hover {
  border-color: var(--gold-deep);
  background: #fff;
  transform: translateY(-2px);
}
.modality-icon { margin-bottom: 32px; }
.modality-kicker {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.modality-title {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--ink-900);
}
.modality-title em { font-style: italic; color: var(--wine); }
.modality-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
  margin-bottom: 28px;
}
.modality-list {
  list-style: none; padding: 0;
  margin: 0 0 32px;
  display: grid; gap: 12px;
  font-size: 14px;
  color: var(--ink-900);
}
.modality-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line-gold);
}
.modality-list li::before {
  content: "✦";
  color: var(--gold-deep);
  font-size: 10px;
}

/* ---------- Testimonials ---------- */
.testimonials {
  padding: 140px 0;
  background: var(--pearl-2);
  color: var(--ink-900);
}
.testimonials-head { text-align: center; margin-bottom: 72px; }
.testimonials-head h2 {
  font-size: clamp(40px, 4.4vw, 60px);
  margin-top: 18px;
  color: var(--ink-900);
}
.testimonials-head h2 em { font-style: italic; color: var(--wine-700); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 40px 36px;
  background: var(--pearl-3);
  border: 1px solid var(--line-gold);
  position: relative;
}
.testimonial-quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 72px;
  line-height: 0.5;
  color: var(--gold-deep);
  opacity: 0.55;
  margin-bottom: 20px;
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-900);
  margin-bottom: 28px;
  font-weight: 300;
}
.testimonial-who {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-100), var(--wine-soft));
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--wine-800);
}
.testimonial-name {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink-900);
  line-height: 1.2;
}
.testimonial-meta {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 140px 0;
  background: var(--pearl);
  color: var(--ink-900);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-head h2 {
  font-size: clamp(42px, 4.4vw, 60px);
  margin-top: 18px;
  color: var(--ink-900);
}
.faq-head h2 em { font-style: italic; color: var(--gold-deep); }
.faq-head p {
  margin-top: 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 360px;
}
.faq-list { border-top: 1px solid var(--line-gold); }
.faq-item { border-bottom: 1px solid var(--line-gold); }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 28px 0;
  color: var(--ink-900);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: color .2s ease;
}
.faq-q:hover { color: var(--wine-700); }
.faq-toggle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold-deep);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-700);
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 0 32px; }

/* ---------- Wine/footer gradient banner (contact) ---------- */
.contact {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--pearl-3) 0%, var(--pearl-2) 60%, #E8D8C5 100%);
  color: var(--ink-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-star {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  pointer-events: none;
}
.contact-inner { position: relative; }
.contact h2 {
  font-size: clamp(46px, 5.2vw, 76px);
  margin-top: 24px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
  color: var(--ink-900);
}
.contact h2 em { font-style: italic; color: var(--wine-700); }
.contact-sub {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.contact-methods {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 820px;
  margin-left: auto; margin-right: auto;
}
.contact-method {
  padding: 40px 32px;
  border: 1px solid var(--line-gold);
  background: var(--pearl-2);
  transition: all .25s ease;
}
.contact-method:hover {
  border-color: var(--gold-deep);
  background: var(--pearl);
  transform: translateY(-2px);
}
.contact-method-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}
.contact-method-value {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink-900);
}
.contact-method-help {
  margin-top: 12px;
  font-size: 12px;
  color: var(--ink-500);
  letter-spacing: 0.03em;
}

/* ---------- Footer ---------- */
.foot {
  padding: 72px 0 40px;
  background: linear-gradient(180deg, #7a4c2e 0%, #5C3820 100%);
  color: #EDE5D8;
  border-top: 1px solid var(--line-gold);
}
.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 229, 216, 0.7);
}
.foot-brand {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.18em;
  color: #FAF6F0;
  text-transform: uppercase;
}
.foot-logo {
  width: 64px; height: 64px;
  object-fit: contain;
  opacity: 0.95;
}
.foot-links { display: flex; gap: 28px; }
.foot-links a { color: rgba(237, 229, 216, 0.85); }
.foot-links a:hover { color: var(--gold); }
.foot-disclaimer {
  margin: 28px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(237, 229, 216, 0.18);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.7;
  font-weight: 300;
  letter-spacing: 0.01em;
  color: rgba(237, 229, 216, 0.55);
  max-width: 920px;
  text-align: center;
  text-transform: none;
}

/* ---------- WhatsApp Floating Button (pill) ---------- */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 10px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  z-index: 100;
}
.whatsapp-fab:hover {
  transform: translateY(-2px) scale(1.03);
  background: #1ebe5d;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.7), 0 6px 16px rgba(0, 0, 0, 0.22);
}
.whatsapp-fab-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-fab-icon svg { width: 22px; height: 22px; display: block; }
.whatsapp-fab-label { line-height: 1; }
@media (max-width: 520px) {
  .whatsapp-fab {
    bottom: 18px;
    right: 18px;
    padding: 8px 18px 8px 8px;
    font-size: 14px;
  }
  .whatsapp-fab-icon { width: 30px; height: 30px; }
  .whatsapp-fab-icon svg { width: 18px; height: 18px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .wrap { padding: 0 24px; }
  .section, .bio, .services, .modalities, .testimonials, .faq, .contact { padding: 80px 0; }
  .hero-grid, .bio-grid, .services-head, .pains-head, .faq-grid, .contact-methods,
  .testimonials-grid, .modalities-grid, .pains-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pains-grid { border: none; }
  .pain-card { border-right: none; border-bottom: 1px solid var(--line-gold); }
  .pain-card:last-child { border-bottom: none; }
  .service-row {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .service-desc, .service-meta { grid-column: 2; }
  .service-meta { text-align: left; padding-top: 0; }
  .nav-links { display: none; }
  .nav-inner {
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }
  .brand { gap: 10px; flex: 1 1 auto; min-width: 0; align-items: center; }
  .brand-logo { width: 80px !important; height: auto; flex-shrink: 0; }
  .brand-name { font-size: 13px; line-height: 1.2; letter-spacing: 0.16em; white-space: nowrap; }
  .brand-sub { font-size: 9px; letter-spacing: 0.18em; white-space: nowrap; }
  .nav-right {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .lang-switch {
    font-size: 10px;
    letter-spacing: 0.16em;
    justify-content: center;
  }
  .nav-right .btn {
    padding: 9px 14px;
    font-size: 10px;
    letter-spacing: 0.14em;
    white-space: nowrap;
    text-align: center;
  }
  .hero-portrait { max-width: 100%; }
  .bio-cred { grid-template-columns: 1fr; gap: 16px; }
}

@media (max-width: 520px) {
  .brand-logo { width: 60px !important; }
  .brand-name { font-size: 12px; }
  .brand-sub { display: none; }
  .nav-right .btn {
    padding: 8px 12px;
    font-size: 9.5px;
  }
}
