/* =========================================================
   Federica Castiglione — Medicina Estetica del viso
   Sito vetrina · stile Sud Italia / mediterraneo
   ========================================================= */

:root {
  /* Palette viola & oro (stile originale) */
  --cream:        #FCFAF8;
  --cream-2:      #F6F1F5;
  --sand:         #EDE4EE;
  --terracotta:   #5A3563;   /* viola/plum — accento primario */
  --terracotta-d: #45264E;
  --olive:        #8A6B91;   /* mauve — accento secondario */
  --olive-d:      #6E5275;
  --maiolica:     #BF9D44;   /* oro */
  --gold:         #BF9D44;
  --gold-d:       #A4842F;
  --ink:          #2C2330;
  --ink-soft:     #6A6172;
  --line:         #E9E0EB;
  --white:        #FFFFFF;

  --shadow-sm: 0 4px 14px rgba(42, 36, 32, .07);
  --shadow-md: 0 14px 40px rgba(42, 36, 32, .12);
  --shadow-lg: 0 30px 70px rgba(42, 36, 32, .18);

  --radius:    18px;
  --radius-lg: 28px;
  --arch:      140px;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

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

/* ----------------------- Reset ----------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .2px;
  color: var(--ink);
}

/* ----------------------- Layout ----------------------- */
.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .72rem;
  font-weight: 700;
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--terracotta);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin: 16px 0 14px; }
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

/* ----------------------- Buttons ----------------------- */
.btn {
  --bg: var(--terracotta);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  padding: 15px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  box-shadow: 0 10px 24px rgba(90, 53, 99, .26);
  position: relative;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(90, 53, 99, .36); background: var(--terracotta-d); }
.btn svg { width: 18px; height: 18px; }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn--ghost:hover { background: var(--white); border-color: var(--terracotta); box-shadow: var(--shadow-sm); }

.btn--light { --bg: #fff; --fg: var(--terracotta); box-shadow: var(--shadow-md); }
.btn--light:hover { background: #fff; --fg: var(--terracotta-d); }

/* ----------------------- Header ----------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 245, 236, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand { display: flex; flex-direction: column; line-height: 1; position: relative; padding-left: 56px; justify-content: center; min-height: 46px; }
.brand::before {
  content: "";
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  background: url("images/logo-mark.svg") center/contain no-repeat;
}
.brand b {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .5px;
}
.brand span {
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 4px;
}
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--terracotta);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .3s, opacity .3s;
}
.nav-toggle span + span { margin-top: 6px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ----------------------- Hero ----------------------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 16px; border-radius: 100px;
  font-size: .8rem; font-weight: 600; color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--olive); box-shadow: 0 0 0 4px rgba(110,123,83,.18); }
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  margin: 22px 0 18px;
}
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero p.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 30ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero-trust div b { font-family: var(--font-display); font-size: 1.9rem; color: var(--terracotta); display: block; }
.hero-trust div span { font-size: .82rem; color: var(--ink-soft); }

/* Hero visual — arched portrait + maiolica frame */
.hero-visual { position: relative; }
.hero-arch {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--arch) var(--arch) 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background:
    radial-gradient(120% 90% at 30% 10%, #f3ecf4 0%, #d6c1db 45%, #b598bd 100%);
  border: 6px solid #fff;
}
.hero-arch .ph-portrait { position: absolute; inset: 0; }
.hero-badge {
  position: absolute; left: -22px; bottom: 40px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
  max-width: 230px;
}
.hero-badge .ico { width: 40px; height: 40px; border-radius: 12px; background: var(--cream-2); display: grid; place-items: center; color: var(--terracotta); flex: none; }
.hero-badge b { font-size: .92rem; }
.hero-badge span { font-size: .78rem; color: var(--ink-soft); }
.tile-deco {
  position: absolute; right: -26px; top: -26px;
  width: 120px; height: 120px; opacity: .9;
  z-index: -1;
}

/* ----------------------- Marquee strip ----------------------- */
.strip {
  background: var(--terracotta);
  color: #f3eef5;
  overflow: hidden;
  padding: 14px 0;
}
.strip-track {
  display: flex; gap: 48px; white-space: nowrap;
  animation: marq 26s linear infinite;
  width: max-content;
}
.strip-track span { font-family: var(--font-display); font-size: 1.25rem; letter-spacing: .04em; display: inline-flex; align-items: center; gap: 48px; }
.strip-track span::after { content: "✦"; color: var(--gold); }
@keyframes marq { to { transform: translateX(-50%); } }

/* ----------------------- Method ----------------------- */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: step;
}
.method-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.method-card::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute; top: 14px; right: 20px;
  font-family: var(--font-display);
  font-size: 3.4rem; color: var(--sand); line-height: 1;
}
.method-card .ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cream-2); color: var(--terracotta);
  display: grid; place-items: center; margin-bottom: 18px;
}
.method-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.method-card p { color: var(--ink-soft); font-size: .98rem; }

/* ----------------------- Treatments ----------------------- */
.treat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.treat-cat-head { max-width: 760px; margin: 0 0 24px; }
.treat-grid + .treat-cat-head { margin-top: 52px; }
.treat-cat-head h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  display: flex; align-items: center; gap: 14px;
}
.treat-cat-head h3::before {
  content: ""; width: 32px; height: 2px; background: var(--gold); flex: none;
}
.treat-cat-head p { color: var(--ink-soft); margin-top: 8px; font-size: 1.02rem; }
.treat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.treat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.treat-media {
  aspect-ratio: 16/11;
  position: relative;
  overflow: hidden;
}
.treat-media .ph { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.treat-card:hover .treat-media .ph { transform: scale(1.06); }
.treat-cat {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  color: var(--maiolica);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.treat-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.treat-body h3 { font-size: 1.6rem; margin-bottom: 8px; }
.treat-body p { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.treat-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: .9rem; color: var(--terracotta);
}
.treat-link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.treat-card:hover .treat-link svg { transform: translateX(5px); }

.also {
  margin-top: 40px;
  background: var(--cream-2);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 26px 30px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px;
}
.also b { font-family: var(--font-display); font-size: 1.35rem; }
.also ul { display: flex; flex-wrap: wrap; gap: 10px; }
.also li { background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 7px 16px; font-size: .85rem; font-weight: 600; color: var(--ink-soft); }

/* ----------------------- About / Chi sono ----------------------- */
.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.about-visual { position: relative; }
.about-arch {
  aspect-ratio: 5/6;
  border-radius: 24px 24px var(--arch) var(--arch);
  overflow: hidden;
  background: radial-gradient(120% 90% at 70% 90%, #efe6f1 0%, #bda0c4 100%);
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
}
.about-quote {
  position: absolute; right: -20px; bottom: -22px;
  background: var(--maiolica);
  color: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  max-width: 240px;
  box-shadow: var(--shadow-md);
  font-family: var(--font-display);
  font-size: 1.2rem; line-height: 1.3;
}
.about-body h2 { font-size: clamp(2rem, 4vw, 3rem); margin: 14px 0 18px; }
.about-body p { color: var(--ink-soft); margin-bottom: 16px; }
.cred-list { display: grid; gap: 12px; margin: 24px 0 30px; }
.cred-list li { display: flex; gap: 12px; align-items: flex-start; font-size: .98rem; }
.cred-list .tick { flex: none; width: 24px; height: 24px; border-radius: 50%; background: var(--olive); color: #fff; display: grid; place-items: center; margin-top: 2px; }
.cred-list .tick svg { width: 14px; height: 14px; }

/* ----------------------- Testimonials ----------------------- */
.testi-section { background: var(--cream-2); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--line);
  position: relative;
}
.testi-card .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.45; color: var(--ink); margin-bottom: 20px; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--sand); color: var(--terracotta-d); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); font-size: 1.2rem; }
.testi-who b { font-size: .95rem; display: block; }
.testi-who span { font-size: .8rem; color: var(--ink-soft); }

/* ----------------------- FAQ ----------------------- */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; align-items: start; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  padding: 22px 40px 22px 0;
  position: relative;
  display: block;
}
.faq-q::after {
  content: "+";
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--terracotta);
  transition: transform .3s var(--ease);
  font-family: var(--font-body); font-weight: 300;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--ink-soft); padding: 0 40px 24px 0; font-size: .98rem; }

/* ----------------------- CTA band ----------------------- */
.cta-band {
  background:
    linear-gradient(rgba(69,38,78,.94), rgba(69,38,78,.94)),
    radial-gradient(120% 140% at 50% 0%, #5A3563 0%, #2C1733 100%);
  color: #fdf2ea;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 14px; }
.cta-band p { max-width: 540px; margin: 0 auto 30px; opacity: .92; }
.cta-band .tiles-top, .cta-band .tiles-bottom { position: absolute; left: 0; width: 100%; height: 40px; opacity: .25; }
.cta-band .tiles-top { top: 0; }
.cta-band .tiles-bottom { bottom: 0; transform: rotate(180deg); }

/* ----------------------- Footer ----------------------- */
.site-footer { background: var(--ink); color: #d9cfc2; padding: 64px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .brand b { color: #fff; }
.site-footer .brand span { color: #b3a89a; }
.foot-about { color: #b3a89a; margin: 18px 0 22px; max-width: 36ch; font-size: .95rem; }
.foot-col h4 { color: #fff; font-family: var(--font-body); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 18px; }
.foot-col a, .foot-col p { color: #b3a89a; font-size: .95rem; display: block; margin-bottom: 12px; transition: color .25s; }
.foot-col a:hover { color: var(--gold); }
.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.07); display: grid; place-items: center; color: #fff; margin: 0; }
.socials a:hover { background: var(--terracotta); }
.socials svg { width: 18px; height: 18px; }
.foot-bottom {
  margin-top: 48px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .82rem; color: #8f8579;
}
.foot-bottom a { color: #8f8579; }
.foot-bottom a:hover { color: var(--gold); }

/* ----------------------- Placeholder visuals ----------------------- */
.ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e7d8ea 0%, #b598bd 100%);
  display: grid; place-items: center; color: rgba(255,255,255,.85);
}
.ph svg { width: 64px; height: 64px; opacity: .7; }
.ph--green { background: linear-gradient(135deg, #ddccdf 0%, #8a6b91 100%); }
.ph--blue  { background: linear-gradient(135deg, #ecdcb4 0%, #bf9d44 100%); }
.ph--rose  { background: linear-gradient(135deg, #ecdbee 0%, #9b7ba0 100%); }
.ph-portrait {
  background:
    radial-gradient(60% 50% at 50% 30%, rgba(255,255,255,.35), transparent 60%),
    linear-gradient(160deg, #efe2f0 0%, #b598bd 100%);
}

/* Real images: cover the framed containers */
img.ph { object-fit: cover; }
img.ph-portrait,
.hero-arch img,
.about-arch img,
.subhero-media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.brand-logo { height: 40px; width: auto; display: block; }

/* ----------------------- Conversione (pagine trattamento) ----------------------- */
.trustbar {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 32px;
  padding: 20px 24px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm);
}
.trustbar div { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: .9rem; color: var(--ink); }
.trustbar svg { width: 20px; height: 20px; color: var(--terracotta); flex: none; }
.trustline { margin-top: 16px; font-size: .88rem; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.trustline .stars { margin: 0; }
.testi-solo { max-width: 640px; margin-inline: auto; }

/* ----------------------- Pagine legali ----------------------- */
.prose.legal { max-width: 820px; margin-inline: auto; }
.legal h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.legal-note {
  background: #fbf3df; border: 1px solid var(--gold);
  border-radius: 12px; padding: 14px 18px; font-size: .92rem; color: #6b5618;
}
.legal-list { margin: 0 0 16px; padding-left: 0; }
.legal-list li { position: relative; padding-left: 22px; margin-bottom: 10px; color: var(--ink-soft); }
.legal-list li::before { content: ""; position: absolute; left: 2px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.legal-table { width: 100%; border-collapse: collapse; margin: 8px 0 18px; font-size: .92rem; }
.legal-table th, .legal-table td { text-align: left; padding: 11px 14px; border: 1px solid var(--line); vertical-align: top; }
.legal-table th { background: var(--cream-2); font-family: var(--font-body); font-weight: 700; color: var(--ink); }
.legal-table td { color: var(--ink-soft); }
.legal-small { font-size: .85rem; color: var(--ink-soft); }
.legal-updated { margin-top: 28px; padding-top: 16px; border-top: 1px solid var(--line); font-size: .9rem; color: var(--ink-soft); }
.legal a { color: var(--terracotta); text-decoration: underline; }

/* ----------------------- Chatbot guidato ----------------------- */
.fc-chat-launch {
  position: fixed; right: 24px; bottom: 24px; z-index: 80;
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--terracotta); color: #fff; border: none; cursor: pointer;
  box-shadow: 0 12px 30px rgba(90,53,99,.45);
  display: grid; place-items: center;
  transition: transform .3s var(--ease), background .3s, opacity .3s;
}
.fc-chat-launch:hover { transform: translateY(-3px) scale(1.06); background: var(--terracotta-d); }
.fc-chat-launch svg { width: 36px; height: 36px; }
.fc-chat-launch .fc-badge { position: absolute; top: 0; right: 0; width: 18px; height: 18px; background: var(--gold); border-radius: 50%; border: 3px solid var(--terracotta); }
.fc-chat-launch.hidden { opacity: 0; pointer-events: none; transform: scale(.6); }

.fc-chat {
  position: fixed; right: 22px; bottom: 22px; z-index: 86;
  width: min(370px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 110px));
  background: var(--cream); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(20px) scale(.98); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.fc-chat.open { opacity: 1; transform: none; pointer-events: auto; }
.fc-chat-head { background: var(--terracotta); color: #fff; padding: 15px 16px; display: flex; align-items: center; gap: 12px; }
.fc-chat-head .av { width: 42px; height: 42px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex: none; overflow: hidden; }
.fc-chat-head .av img { width: 30px; height: 30px; display: block; }
.fc-chat-head b { font-size: 1rem; line-height: 1.15; display: block; }
.fc-chat-head span { font-size: .74rem; opacity: .85; }
.fc-chat-head .fc-close { margin-left: auto; background: none; border: none; color: #fff; cursor: pointer; width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-size: 1.4rem; line-height: 1; }
.fc-chat-head .fc-close:hover { background: rgba(255,255,255,.15); }
.fc-chat-body { flex: 1; overflow-y: auto; padding: 18px; display: flex; flex-direction: column; gap: 11px; }
.fc-msg { max-width: 86%; padding: 11px 15px; border-radius: 16px; font-size: .92rem; line-height: 1.5; }
.fc-msg.bot { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 5px; color: var(--ink); align-self: flex-start; }
.fc-msg.user { background: var(--terracotta); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.fc-opts { display: flex; flex-direction: column; gap: 8px; align-self: stretch; margin-top: 2px; }
.fc-opt { text-align: left; background: #fff; border: 1px solid var(--line); color: var(--ink); padding: 11px 14px; border-radius: 12px; cursor: pointer; font-family: inherit; font-size: .88rem; font-weight: 600; transition: border-color .2s, background .2s, transform .2s; }
.fc-opt:hover { border-color: var(--terracotta); background: var(--cream-2); transform: translateX(2px); }
.fc-opt--primary { background: var(--terracotta); color: #fff; border-color: var(--terracotta); text-align: center; }
.fc-opt--primary:hover { background: var(--terracotta-d); color: #fff; }
@media (max-width: 680px) {
  .fc-chat-launch { bottom: 84px; right: 16px; width: 54px; height: 54px; }
  .fc-chat { bottom: 12px; right: 12px; left: 12px; width: auto; height: min(76vh, 560px); }
}

/* ----------------------- Cookie consent ----------------------- */
.cc-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 20px 22px;
  transform: translateY(160%);
  transition: transform .5s var(--ease);
  max-width: 920px; margin-inline: auto;
}
.cc-banner.show { transform: none; }
.cc-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cc-inner p { margin: 0; font-size: .92rem; color: var(--ink-soft); flex: 1 1 320px; }
.cc-inner p a { color: var(--terracotta); font-weight: 700; text-decoration: underline; }
.cc-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.cc-banner .btn { padding: 12px 22px; font-size: .9rem; box-shadow: none; }
.cc-banner .btn:hover { transform: none; }

.cc-modal {
  position: fixed; inset: 0; z-index: 95;
  background: rgba(42, 35, 48, .55);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.cc-modal.show { display: flex; }
.cc-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 30px 28px;
  width: min(100%, 480px);
}
.cc-card h3 { font-size: 1.7rem; margin-bottom: 8px; }
.cc-card .cc-intro { color: var(--ink-soft); font-size: .92rem; margin-bottom: 18px; }
.cc-row {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-top: 1px solid var(--line);
}
.cc-row b { display: block; font-size: 1rem; }
.cc-row span { font-size: .82rem; color: var(--ink-soft); }
.cc-row .cc-on { color: var(--olive); font-weight: 700; font-size: .82rem; }
.cc-row input[type="checkbox"] { width: 22px; height: 22px; accent-color: var(--terracotta); cursor: pointer; flex: none; }
.cc-card .cc-actions { margin-top: 22px; justify-content: flex-end; }
.cc-card .btn { box-shadow: none; }
.cc-card .btn:hover { transform: none; }

/* Floating mobile booking bar */
.mobile-book {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50;
  display: none;
}
.mobile-book .btn { width: 100%; justify-content: center; }

/* ----------------------- Sub-page (treatment) ----------------------- */
.subhero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 5vw, 60px);
}
.crumbs { font-size: .85rem; color: var(--ink-soft); margin-bottom: 22px; }
.crumbs a:hover { color: var(--terracotta); }
.crumbs span { margin: 0 8px; opacity: .5; }
.subhero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.subhero h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); margin: 14px 0 16px; }
.subhero p.lead { font-size: 1.12rem; color: var(--ink-soft); }
.subhero-media {
  aspect-ratio: 4/4.4;
  border-radius: var(--arch) var(--arch) 24px 24px;
  overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow-lg);
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: 9px 16px; font-size: .85rem; font-weight: 600; display: inline-flex; gap: 8px; align-items: center; }
.chip svg { width: 15px; height: 15px; color: var(--terracotta); }

.detail-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
.prose h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin: 36px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); margin-bottom: 16px; }
.benefit-list { display: grid; gap: 14px; margin: 8px 0 8px; }
.benefit-list li { display: flex; gap: 14px; align-items: flex-start; }
.benefit-list .tick { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--olive); color:#fff; display: grid; place-items: center; margin-top: 2px; }
.benefit-list .tick svg { width: 15px; height: 15px; }
.benefit-list b { display: block; }
.benefit-list span { color: var(--ink-soft); font-size: .95rem; }

.aside-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: sticky; top: 96px;
  box-shadow: var(--shadow-md);
}
.aside-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.aside-card .sub { color: var(--ink-soft); font-size: .95rem; margin-bottom: 20px; }
.aside-card .meta { display: grid; gap: 14px; margin-bottom: 24px; }
.aside-card .meta div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed var(--line); padding-bottom: 12px; font-size: .92rem; }
.aside-card .meta span:first-child { color: var(--ink-soft); }
.aside-card .meta span:last-child { font-weight: 700; text-align: right; }
.aside-card .btn { width: 100%; justify-content: center; }
.aside-note { text-align: center; font-size: .8rem; color: var(--ink-soft); margin-top: 14px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ----------------------- Reveal animation ----------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .strip-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ----------------------- Responsive ----------------------- */
@media (max-width: 980px) {
  .hero-grid, .about-grid, .subhero-grid, .detail-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; width: 100%; max-width: 440px; justify-self: center; }
  .method-grid, .treat-grid, .testi-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .about-visual { width: 100%; max-width: 420px; justify-self: center; }
  .aside-card { position: static; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: 20px 24px 28px; gap: 18px;
    box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links .btn { display: inline-flex; }
  .method-grid, .treat-grid, .testi-grid, .related-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-trust { gap: 18px; }
  .mobile-book { display: block; }
  .hero-badge { left: 0; }
  .about-quote { right: 0; }
}
