:root {
  --sand: #f1eadd;
  --bone: #faf6ef;
  --cream: #fbf9f3;
  --clay: #b67a56;
  --terracotta: #a9663f;
  --gold: #c2a05c;
  --sage: #7d8c6e;
  --moss: #56654a;
  --forest: #2c3727;
  --ink: #262420;
  --muted: rgba(38, 36, 32, 0.62);
  --line: rgba(38, 36, 32, 0.12);
  --shadow: 0 30px 60px -22px rgba(38, 36, 32, 0.28);
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bone);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; }
.serif { font-family: 'Cormorant Garamond', serif; }
.script { font-family: 'Caveat', cursive; }
::selection { background: var(--clay); color: var(--bone); }

/* ---------- NAV ---------- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  padding: 1.2rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(250, 246, 239, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.8rem 2.5rem;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.4s ease;
}
nav.scrolled .brand { color: var(--ink); }
.brand span { color: var(--gold); font-style: italic; text-transform: none; letter-spacing: 0.02em; }
nav.scrolled .brand span { color: var(--terracotta); }

.nav-links { display: flex; gap: 1.9rem; align-items: center; }
.nav-links a {
  color: var(--bone);
  text-decoration: none;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.88;
  transition: color 0.3s ease, opacity 0.3s ease;
}
nav.scrolled .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--gold); opacity: 1; }
nav.scrolled .nav-links a:hover { color: var(--terracotta); }

.nav-right { display: flex; align-items: center; gap: 1rem; }
.lang-toggle {
  display: flex;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  border: 1px solid rgba(250, 246, 239, 0.5);
  border-radius: 999px;
  overflow: hidden;
}
nav.scrolled .lang-toggle { border-color: var(--line); }
.lang-toggle button {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.35rem 0.7rem;
  color: var(--bone);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  transition: all 0.3s ease;
}
nav.scrolled .lang-toggle button { color: var(--ink); }
.lang-toggle button.active { background: var(--gold); color: var(--forest); }
nav.scrolled .lang-toggle button.active { background: var(--terracotta); color: var(--bone); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid currentColor;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-size: 0.74rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.nav-cta svg { width: 15px; height: 15px; }
.nav-cta:hover { background: #25d366; color: #fff !important; border-color: #25d366; opacity: 1 !important; }
nav.scrolled .nav-cta:hover { color: #fff !important; }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; color: inherit; padding: 0.25rem; }
.menu-toggle svg { width: 26px; height: 26px; }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--forest);
  color: var(--bone);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.5, 0, 0.1, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  color: var(--bone);
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  letter-spacing: 0.04em;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mm-close {
  position: absolute;
  top: 1.5rem; right: 1.75rem;
  background: none; border: 0; color: var(--bone); cursor: pointer;
}
.mobile-menu .mm-close svg { width: 30px; height: 30px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { background: var(--terracotta); border-color: var(--terracotta); transform: translateY(-2px); }
.btn-wa { background: #25d366; border-color: #25d366; color: #fff; }
.btn-wa:hover { background: #1da851; border-color: #1da851; color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bone); }
.btn-light { background: var(--bone); color: var(--ink); border-color: var(--bone); }
.btn-light:hover { background: var(--terracotta); color: var(--bone); border-color: var(--terracotta); }
.btn-outline-light { background: transparent; color: var(--bone); border-color: rgba(250,246,239,0.55); }
.btn-outline-light:hover { background: var(--bone); color: var(--ink); border-color: var(--bone); }

/* ---------- SECTION GENERIC ---------- */
section { padding: 7.5rem 2.5rem; position: relative; }
.container { max-width: 1240px; margin: 0 auto; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.72rem;
  color: var(--terracotta);
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--terracotta); }
h2.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}
h2.section-title em { font-style: italic; color: var(--terracotta); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 2.5rem 5rem;
  overflow: hidden;
  color: var(--bone);
}
.hero-img {
  position: absolute; inset: 0;
  background-position: center 30%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.05);
  animation: kenburns 20s ease-in-out infinite alternate;
}
.hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,34,24,0.45) 0%, rgba(28,34,24,0.05) 30%, rgba(28,34,24,0.1) 55%, rgba(28,34,24,0.78) 100%);
}
@keyframes kenburns {
  from { transform: scale(1.05) translate(0, 0); }
  to   { transform: scale(1.16) translate(-1.5%, -1%); }
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.38em;
  font-size: 0.72rem;
  margin-bottom: 1.4rem;
  opacity: 0.92;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.hero-eyebrow::before { content: ''; width: 38px; height: 1px; background: var(--gold); }
h1.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  max-width: 16ch;
}
h1.hero-title em { font-style: italic; color: #ecd2ad; display: block; }
.hero-sub {
  font-size: 1.05rem;
  max-width: 46ch;
  color: rgba(250, 246, 239, 0.9);
  margin-bottom: 2.2rem;
  line-height: 1.7;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 2.2rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-top: 2.4rem;
}
.hero-meta span { display: inline-flex; gap: 0.55rem; align-items: center; }
.hero-meta span::before { content: '✦'; color: var(--gold); font-size: 0.7rem; }

/* page hero (smaller) */
.page-hero {
  position: relative;
  min-height: 64vh;
  display: flex;
  align-items: flex-end;
  padding: 0 2.5rem 4rem;
  overflow: hidden;
  color: var(--bone);
}
.page-hero .hero-img::after {
  background: linear-gradient(to bottom, rgba(28,34,24,0.5) 0%, rgba(28,34,24,0.2) 50%, rgba(28,34,24,0.8) 100%);
}

/* ---------- INTRO / ABOUT ---------- */
.intro { background: var(--sand); }
.intro-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 5rem;
  align-items: center;
}
.intro-text p { font-size: 1.05rem; line-height: 1.85; color: var(--muted); margin-bottom: 1.4rem; }
.intro-text p.lede {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.8rem;
  font-weight: 400;
  font-style: italic;
}
.intro-image { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }
.intro-image .img-tag {
  position: absolute;
  top: 50%; right: -3.1rem;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--terracotta);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat { padding: 1.4rem 0; }
.stat + .stat { border-left: 1px solid var(--line); padding-left: 1.4rem; }
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.1rem; line-height: 1; margin-bottom: 0.3rem; color: var(--terracotta);
}
.stat .lbl { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ---------- THERAPIES (cards) ---------- */
.therapies { background: var(--bone); }
.therapies-head { max-width: 720px; margin-bottom: 4rem; }
.therapies-head p { color: var(--muted); font-size: 1.05rem; }
.therapy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.therapy-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.therapy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.therapy-card .tc-img { aspect-ratio: 16 / 10; overflow: hidden; }
.therapy-card .tc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.therapy-card:hover .tc-img img { transform: scale(1.06); }
.therapy-card .tc-body { padding: 2rem 2rem 2.2rem; flex: 1; display: flex; flex-direction: column; }
.therapy-card .tc-num { font-size: 0.72rem; letter-spacing: 0.2em; color: var(--gold); margin-bottom: 0.8rem; }
.therapy-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; font-size: 1.65rem; line-height: 1.15; margin-bottom: 0.8rem;
}
.therapy-card p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.3rem; }
.therapy-card .tc-link {
  margin-top: auto;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--terracotta); text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
  transition: gap 0.3s ease;
}
.therapy-card .tc-link svg { width: 15px; height: 15px; }
.therapy-card .tc-link:hover { gap: 0.85rem; }

/* therapy detail (full page) */
.therapy-detail { background: var(--bone); }
.therapy-detail + .therapy-detail { padding-top: 0; }
.td-row { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.td-row.reverse .td-media { order: 2; }
.td-media { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.td-media img { width: 100%; height: 100%; object-fit: cover; }
.td-text .td-num { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.td-text h2 { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.1; margin-bottom: 1.4rem; }
.td-text p { font-size: 1.02rem; line-height: 1.85; color: var(--muted); margin-bottom: 1.2rem; }

/* ---------- GALLERY ---------- */
.gallery { background: var(--sand); }
.gallery-head {
  display: flex; justify-content: space-between; align-items: end;
  flex-wrap: wrap; gap: 2rem; margin-bottom: 3.5rem;
}
.gallery-head p { max-width: 360px; color: var(--muted); font-size: 0.95rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 86px; gap: 1rem; }
.gallery-grid figure { position: relative; overflow: hidden; background: var(--bone); border-radius: 3px; }
.gallery-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.gallery-grid figure:hover img { transform: scale(1.07); }
.g-1 { grid-column: span 7; grid-row: span 5; }
.g-2 { grid-column: span 5; grid-row: span 5; }
.g-3 { grid-column: span 4; grid-row: span 4; }
.g-4 { grid-column: span 4; grid-row: span 4; }
.g-5 { grid-column: span 4; grid-row: span 4; }

/* ---------- CERTIFICATES ---------- */
.certs { background: var(--forest); color: var(--bone); overflow: hidden; position: relative; }
.certs .eyebrow { color: #e3c187; }
.certs .eyebrow::before { background: #e3c187; }
.certs h2.section-title em { color: #e3c187; }
.certs-head { max-width: 720px; margin-bottom: 3.5rem; }
.certs-head p { color: rgba(250,246,239,0.7); font-size: 1.05rem; }
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.cert-card {
  background: rgba(250,246,239,0.05);
  border: 1px solid rgba(250,246,239,0.14);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.cert-card:hover { transform: translateY(-4px); border-color: #e3c187; }
.cert-card .cc-img { aspect-ratio: 4 / 3; overflow: hidden; background: #fff; }
.cert-card .cc-img img { width: 100%; height: 100%; object-fit: cover; }
.cert-card .cc-cap { padding: 0.95rem 1.1rem 1.15rem; }
.cert-card .cc-cap b { display: block; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.02rem; margin-bottom: 0.2rem; }
.cert-card .cc-cap span { font-size: 0.74rem; letter-spacing: 0.04em; color: rgba(250,246,239,0.55); }
.cert-list {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3rem;
  border-top: 1px solid rgba(250,246,239,0.14);
}
.cert-list .cl-item {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 1rem 0; border-bottom: 1px solid rgba(250,246,239,0.14);
  font-size: 0.92rem;
}
.cert-list .cl-item b { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.05rem; }
.cert-list .cl-item span { color: rgba(250,246,239,0.55); text-align: right; white-space: nowrap; font-size: 0.8rem; letter-spacing: 0.03em; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,18,15,0.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
  cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 4px; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox .lb-close { position: absolute; top: 1.5rem; right: 1.75rem; background: none; border: 0; color: var(--bone); cursor: pointer; }
.lightbox .lb-close svg { width: 32px; height: 32px; }

/* ---------- BANDS / QUOTE ---------- */
.quote { background: var(--bone); text-align: center; padding: 6rem 2.5rem; }
.quote blockquote {
  max-width: 860px; margin: 0 auto;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.4; font-style: italic; color: var(--ink);
}
.quote blockquote::before { content: '“'; color: var(--gold); font-size: 1.3em; line-height: 0; vertical-align: -0.4em; margin-right: 0.08em; }
.quote blockquote::after { content: '”'; color: var(--gold); font-size: 1.3em; line-height: 0; vertical-align: -0.4em; margin-left: 0.08em; }
.quote cite {
  display: block; margin-top: 1.8rem; font-style: normal;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terracotta);
}

/* ---------- YOUNIQ ---------- */
.youniq { background: var(--sand); padding: 7rem 2.5rem; position: relative; overflow: hidden; }
.youniq-card {
  max-width: 1180px; margin: 0 auto;
  background: linear-gradient(135deg, #0f6e6e 0%, #0a5050 100%);
  border-radius: 8px;
  padding: 4.5rem 4.5rem;
  color: #f5efe6;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -25px rgba(15, 110, 110, 0.5);
}
.youniq-card::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 520px; height: 520px;
  background: url('brand/youniq-icon.png') center/contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
  transform: rotate(-12deg);
}
.youniq-text { position: relative; z-index: 2; }
.youniq-text .y-eyebrow {
  display: inline-flex; align-items: center; gap: 0.85rem;
  font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(245,239,230,0.7); margin-bottom: 1.4rem;
}
.youniq-text .y-eyebrow::before { content: ''; width: 28px; height: 1px; background: rgba(245,239,230,0.6); }
.youniq-logo { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.8rem; }
.youniq-logo .y-icon {
  width: 54px; height: 54px; background: var(--bone); border-radius: 50%;
  padding: 6px; display: grid; place-items: center; box-shadow: 0 8px 20px -8px rgba(0,0,0,0.3);
}
.youniq-logo .y-icon img { width: 100%; height: 100%; object-fit: contain; }
.youniq-logo .y-wordmark { height: 34px; filter: brightness(0) invert(1); opacity: 0.95; }
.youniq h2 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.07; margin-bottom: 1.1rem; color: var(--bone);
}
.youniq h2 em { font-style: italic; color: #f0d5b8; }
.youniq .y-lede { font-size: 1.02rem; line-height: 1.75; color: rgba(245,239,230,0.8); max-width: 480px; margin-bottom: 1.8rem; }
.y-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.1rem; }
.y-tag {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.42rem 0.9rem; border: 1px solid rgba(245,239,230,0.25); border-radius: 999px; color: rgba(245,239,230,0.85);
}
.y-stores { display: flex; gap: 0.85rem; flex-wrap: wrap; }
.y-store {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.7rem 1.25rem; border-radius: 12px;
  background: #0b0b0b; color: #fff; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  transition: transform 0.3s ease, background 0.3s ease;
}
.y-store:hover { transform: translateY(-2px); background: #000; }
.y-store svg { width: 26px; height: 26px; flex-shrink: 0; }
.y-store .ys-txt { display: flex; flex-direction: column; line-height: 1.1; }
.y-store .ys-txt small { font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.75; }
.y-store .ys-txt b { font-family: 'Inter', sans-serif; font-size: 0.98rem; font-weight: 500; letter-spacing: 0.01em; }

.youniq-visual { display: flex; align-items: center; justify-content: center; z-index: 2; }
.y-phone {
  width: 82%; max-width: 290px;
  background: #1c1c1c;
  border-radius: 42px; padding: 10px;
  box-shadow: 0 40px 60px -25px rgba(0,0,0,0.5);
  transform: rotate(-3deg);
}
.y-phone-shot {
  width: 100%; height: auto;
  display: block;
  border-radius: 32px;
  background: #f5efe6;
}
.y-phone-screen {
  width: 100%; height: 100%; border-radius: 26px;
  background: linear-gradient(180deg, #0f6e6e 0%, #093d3d 100%);
  padding: 2rem 1.2rem; display: flex; flex-direction: column;
  color: var(--bone); overflow: hidden; position: relative;
}
.y-phone-screen::before {
  content: ''; position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 24px; background: #1c1c1c; border-radius: 999px;
}
.y-screen-head { display: flex; align-items: center; gap: 0.6rem; margin-top: 1.5rem; margin-bottom: 1.3rem; }
.y-screen-head .yh-icon { width: 28px; height: 28px; background: var(--bone); border-radius: 50%; padding: 3px; }
.y-screen-head .yh-icon img { width: 100%; height: 100%; object-fit: contain; }
.y-screen-head h6 { font-family: 'Cormorant Garamond', serif; font-size: 1.02rem; font-weight: 500; letter-spacing: 0.05em; }
.y-search {
  background: rgba(245,239,230,0.12); border: 1px solid rgba(245,239,230,0.18);
  padding: 0.55rem 0.75rem; border-radius: 999px; font-size: 0.68rem; letter-spacing: 0.04em;
  color: rgba(245,239,230,0.72); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.45rem;
}
.y-event {
  background: rgba(245,239,230,0.08); border: 1px solid rgba(245,239,230,0.12);
  border-radius: 12px; padding: 0.8rem; margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.8rem;
}
.y-event .y-thumb { width: 40px; height: 40px; border-radius: 8px; background: var(--clay); flex-shrink: 0; display: grid; place-items: center; font-size: 1.05rem; }
.y-event:nth-child(3) .y-thumb { background: #d4a373; }
.y-event:nth-child(4) .y-thumb { background: #8a9a7a; }
.y-event:nth-child(5) .y-thumb { background: #b56a4a; }
.y-event-info { font-size: 0.68rem; line-height: 1.35; min-width: 0; flex: 1; }
.y-event-info b { display: block; font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 0.9rem; margin-bottom: 0.1rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.y-event-info span { color: rgba(245,239,230,0.6); }

/* ---------- BOOK ---------- */
.book {
  position: relative; padding: 8rem 2.5rem;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  color: var(--bone); text-align: center; overflow: hidden;
}
.book::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(44,55,39,0.7), rgba(38,36,32,0.8)); }
.book .container { position: relative; z-index: 2; }
.book h2.section-title { color: var(--bone); }
.book h2.section-title em { color: #f0d5b8; }
.book .eyebrow { color: #e3c187; }
.book .eyebrow::before { background: #e3c187; }
.book p { max-width: 560px; margin: 0 auto 1rem; color: rgba(250,246,239,0.86); font-size: 1.05rem; line-height: 1.75; }
.book .book-note { font-size: 0.9rem; color: rgba(250,246,239,0.7); margin-bottom: 2.4rem; }
.book-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
footer { background: var(--ink); color: rgba(250,246,239,0.7); padding: 4.5rem 2.5rem 2rem; }
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1.3fr; gap: 3rem;
  max-width: 1240px; margin: 0 auto; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250,246,239,0.12);
}
footer h5 { font-family: 'Cormorant Garamond', serif; font-weight: 500; color: var(--bone); font-size: 1.05rem; letter-spacing: 0.06em; margin-bottom: 1.1rem; }
.brand-foot { font-family: 'Cormorant Garamond', serif; color: var(--bone); font-size: 1.5rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem; }
.brand-foot span { color: var(--gold); font-style: italic; text-transform: none; }
footer p, footer li, footer a { font-size: 0.88rem; line-height: 1.85; color: rgba(250,246,239,0.6); text-decoration: none; }
footer a:hover { color: var(--gold); }
footer ul { list-style: none; }
.foot-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.foot-social a {
  width: 38px; height: 38px; border: 1px solid rgba(250,246,239,0.2); border-radius: 50%;
  display: grid; place-items: center; transition: all 0.3s ease;
}
.foot-social a:hover { background: var(--terracotta); border-color: var(--terracotta); }
.foot-social svg { width: 17px; height: 17px; }
.post-foot {
  max-width: 1240px; margin: 1.5rem auto 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.75rem; color: rgba(250,246,239,0.4); letter-spacing: 0.04em;
}
.post-foot .youniq-whisper { font-size: 0.72rem; color: rgba(250,246,239,0.34); font-style: italic; }
.post-foot .youniq-whisper a { color: rgba(250,246,239,0.5); border-bottom: 1px dotted rgba(250,246,239,0.2); padding-bottom: 1px; transition: all 0.3s ease; }
.post-foot .youniq-whisper a:hover { color: var(--gold); border-color: var(--gold); }

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px -6px rgba(37,211,102,0.6);
  transition: transform 0.3s ease;
  animation: wapulse 2.6s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wapulse {
  0%, 100% { box-shadow: 0 12px 28px -6px rgba(37,211,102,0.55); }
  50% { box-shadow: 0 12px 34px -2px rgba(37,211,102,0.85); }
}

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s ease, transform 1s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  nav { padding: 1rem 1.25rem; }
  nav.scrolled { padding: 0.7rem 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  section { padding: 5rem 1.25rem; }
  .hero { padding: 0 1.25rem 3.5rem; }
  .page-hero { min-height: 56vh; padding: 0 1.25rem 3rem; }
  .intro-grid, .td-row { grid-template-columns: 1fr; gap: 2.8rem; }
  .td-row.reverse .td-media { order: 0; }
  .intro-image .img-tag { display: none; }
  .therapy-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 60px; gap: 0.5rem; }
  .g-1 { grid-column: span 12; grid-row: span 5; }
  .g-2 { grid-column: span 12; grid-row: span 5; }
  .g-3, .g-4, .g-5 { grid-column: span 4; grid-row: span 4; }
  .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-list { grid-template-columns: 1fr; }
  .youniq { padding: 4rem 1.25rem; }
  .youniq-card { grid-template-columns: 1fr; padding: 3rem 1.75rem; gap: 3rem; }
  .youniq-card::before { width: 380px; height: 380px; top: -120px; right: -140px; }
  .youniq-visual { order: -1; }
  .y-phone { transform: rotate(0); max-width: 250px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1.2rem; }
}
@media (max-width: 520px) {
  h1.hero-title { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .cert-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 0.7rem 1.4rem; font-size: 0.76rem; }
  .y-stores { width: 100%; }
  .y-store { flex: 1; justify-content: center; }
}
