/* ============================================================
   DermaLuxe by MediCare — Premium Skin & Hair Clinic
   Luxury dark + gold design system
   ============================================================ */

:root {
  /* Palette */
  --black: #0a0a0c;
  --ink: #0d0d0f;
  --ink-2: #121216;
  --panel: #16161b;
  --panel-2: #1c1c22;
  --line: rgba(198, 162, 92, 0.16);
  --line-soft: rgba(255, 255, 255, 0.07);

  --gold-1: #f4e2b8;
  --gold-2: #e9cf8f;
  --gold-3: #c6a25c;
  --gold-4: #a87f3c;
  --gold-grad: linear-gradient(135deg, #f6e6bd 0%, #e3c074 38%, #c79a4e 70%, #a87f3c 100%);

  --text: #ece9e3;
  --muted: #a39e95;
  --muted-2: #7c776e;

  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  font-weight: 300;
  letter-spacing: 0.2px;
}

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

.container { width: min(var(--maxw), 92%); margin-inline: auto; }

/* Decorative ambient glow */
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(60% 50% at 80% -5%, rgba(201, 162, 92, 0.10), transparent 60%),
    radial-gradient(50% 40% at 0% 30%, rgba(201, 162, 92, 0.06), transparent 60%);
}

main, .topbar, .nav, .footer { position: relative; z-index: 1; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.08; letter-spacing: 0.3px; }
h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); }
h3 { font-size: 1.4rem; }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-3);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.eyebrow::after {
  content: ""; display: inline-block; width: 34px; height: 1px;
  background: var(--gold-3); vertical-align: middle; margin-left: 12px; opacity: .6;
}

.lead { font-size: 1.08rem; color: var(--muted); max-width: 54ch; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }

.section__head { text-align: center; max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.section__head .eyebrow { margin-inline: auto; }
.section__sub { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-sans); font-weight: 500; font-size: .82rem;
  letter-spacing: 1.6px; text-transform: uppercase;
  padding: 1rem 2rem; border-radius: 100px; cursor: pointer;
  border: 1px solid transparent; transition: all .4s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold-grad); color: #2a1d07;
  box-shadow: 0 10px 30px -10px rgba(201, 162, 92, 0.6);
}
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -10px rgba(201, 162, 92, 0.75); filter: brightness(1.05); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold-3); color: var(--gold-1); transform: translateY(-3px); }
.btn--full { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--black);
  border-bottom: 1px solid var(--line-soft);
  font-size: .78rem; color: var(--muted);
  letter-spacing: .4px;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; height: 42px; }
.topbar__left, .topbar__right { display: flex; align-items: center; gap: 1.6rem; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; transition: color .3s; }
.topbar__item:hover { color: var(--gold-2); }
.topbar__social { display: flex; gap: .4rem; }
.topbar__social a {
  width: 26px; height: 26px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line-soft); transition: all .3s;
}
.topbar__social a:hover { border-color: var(--gold-3); color: var(--gold-2); transform: translateY(-2px); }
.ic { width: 14px; height: 14px; fill: currentColor; }
.topbar__social .ic { width: 13px; height: 13px; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: all .4s var(--ease);
}
.nav.scrolled {
  background: rgba(10, 10, 12, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.8);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 158px; transition: height .4s var(--ease); }
.nav.scrolled .nav__inner { height: 108px; }
.brand-logo { position: relative; display: inline-flex; }
.nav__brand img { height: 132px; width: auto; transition: height .4s var(--ease); }
.nav.scrolled .nav__brand img { height: 86px; }

/* Animated twinkling star over the logo's sparkle */
.brand-star {
  position: absolute; top: 11%; left: 84%; width: 26px; height: 26px;
  transform: translate(-50%, -50%); pointer-events: none; z-index: 2;
  background: radial-gradient(closest-side, #fffbe9, #f3e0a8 45%, #c6a25c 80%, transparent);
  clip-path: polygon(50% 0%, 60% 40%, 100% 50%, 60% 60%, 50% 100%, 40% 60%, 0% 50%, 40% 40%);
  filter: drop-shadow(0 0 5px rgba(244, 226, 168, .95));
  animation: starTwinkle 2.6s ease-in-out infinite;
}
.brand-star::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 42px; height: 42px;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(closest-side, rgba(244,226,168,.55), transparent 70%);
  animation: starGlow 2.6s ease-in-out infinite;
}
@keyframes starTwinkle {
  0%, 100% { transform: translate(-50%, -50%) scale(.55) rotate(0deg); opacity: .55; }
  50%      { transform: translate(-50%, -50%) scale(1.2) rotate(45deg); opacity: 1; }
}
@keyframes starGlow {
  0%, 100% { opacity: .25; transform: translate(-50%, -50%) scale(.7); }
  50%      { opacity: .8; transform: translate(-50%, -50%) scale(1.25); }
}

.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a:not(.btn) {
  font-size: .82rem; letter-spacing: 1px; text-transform: uppercase;
  font-weight: 400; color: var(--text); position: relative; padding: .3rem 0;
  transition: color .3s;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--gold-grad); transition: width .35s var(--ease);
}
.nav__links a:not(.btn):hover { color: var(--gold-1); }
.nav__links a:not(.btn):hover::after,
.nav__links a.active::after { width: 100%; }
.nav__links a.active { color: var(--gold-1); }
.nav__cta { padding: .7rem 1.4rem; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--gold-2); border-radius: 2px; transition: all .35s var(--ease); }
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Chip ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .76rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500;
  color: var(--gold-1); background: rgba(201,162,92,.08);
  border: 1px solid var(--line); border-radius: 100px; padding: .5rem 1.1rem;
  margin-bottom: 1.6rem;
}
.chip i { color: var(--gold-2); font-style: normal; animation: twinkle 2.4s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity: .5; transform: scale(.85); } 50% { opacity: 1; transform: scale(1.15); } }

/* ---------- Highlight banner ---------- */
.highlight {
  background:
    radial-gradient(70% 140% at 50% 0%, rgba(201,162,92,.12), transparent 60%),
    linear-gradient(180deg, var(--ink-2), var(--ink));
  border-block: 1px solid var(--line);
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
}
.highlight__inner { text-align: center; max-width: 880px; margin: 0 auto; }
.highlight__crown { font-size: 1.6rem; color: var(--gold-2); display: block; margin-bottom: .6rem; }
.highlight p { font-family: var(--font-serif); font-size: clamp(1.5rem, 3.6vw, 2.4rem); line-height: 1.25; font-weight: 500; }
.highlight s { color: var(--muted-2); text-decoration-color: var(--gold-4); text-decoration-thickness: 2px; }
.highlight__sub { display: block; margin-top: 1rem; font-size: .92rem; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }
.highlight__sub strong { color: var(--gold-2); font-weight: 600; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: calc(100vh - 200px); display: flex; align-items: center; overflow: hidden; padding: 4rem 0 5rem; }
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(70% 60% at 75% 25%, rgba(201, 162, 92, 0.14), transparent 60%),
    radial-gradient(50% 50% at 15% 80%, rgba(201, 162, 92, 0.07), transparent 60%),
    linear-gradient(180deg, #0c0c0e, #0a0a0c);
}
.hero__bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,162,92,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,162,92,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 60% 40%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(70% 70% at 60% 40%, #000, transparent 75%);
}
.hero__photo {
  position: absolute; inset: 0 0 0 auto; width: 52%; z-index: 0;
  background: url("assets/hero.jpg") center right / cover no-repeat;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%);
  mask-image: linear-gradient(90deg, transparent, #000 55%);
}
.hero__photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,12,.35), rgba(10,10,12,.15) 40%, rgba(10,10,12,.85));
}
.hero__inner { position: relative; z-index: 1; max-width: 860px; }
.hero__title { font-size: clamp(2.8rem, 7vw, 5.4rem); margin-bottom: 1.6rem; }
.hero__sub { font-size: 1.15rem; color: var(--muted); max-width: 56ch; margin-bottom: 2.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3.5rem; }

.hero__badges { display: flex; flex-wrap: wrap; gap: clamp(1.5rem, 4vw, 3.2rem); }
.badge { display: flex; flex-direction: column; }
.badge__num {
  font-family: var(--font-serif); font-size: 2.4rem; font-weight: 600; line-height: 1;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.badge__num span { font-size: 1.3rem; }
.badge__num:not(:has(span)) { font-size: 2rem; letter-spacing: 1px; }
.badge__lbl { font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted-2); margin-top: .3rem; }

.hero__scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 14px; display: grid; place-items: start center; padding-top: 8px; }
.hero__scroll span { width: 4px; height: 8px; border-radius: 4px; background: var(--gold-2); animation: scrolly 1.6s var(--ease) infinite; }
@keyframes scrolly { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(12px); } }

/* ---------- Marquee ---------- */
.marquee { border-block: 1px solid var(--line); background: linear-gradient(90deg, var(--ink-2), var(--panel), var(--ink-2)); overflow: hidden; padding: 1.1rem 0; }
.marquee__track { display: flex; align-items: center; gap: 2rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee__track span { font-family: var(--font-serif); font-style: italic; font-size: 1.35rem; color: var(--muted); white-space: nowrap; }
.marquee__track .dot { color: var(--gold-3); font-style: normal; font-size: .9rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: center; }
.about__imgwrap { position: relative; }
.about__img {
  aspect-ratio: 4/5; border-radius: var(--radius); border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10,10,12,.05), rgba(10,10,12,.4)),
    url("assets/about.jpg") center / cover no-repeat,
    linear-gradient(160deg, #1c1b1f, #121115);
  position: relative; overflow: hidden;
}
.about__img::before {
  content: ""; position: absolute; inset: 14px; border: 1px solid var(--line); border-radius: calc(var(--radius) - 6px);
}
.about__stat {
  position: absolute; bottom: -22px; right: -18px; background: var(--panel);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem;
  max-width: 220px; box-shadow: 0 24px 50px -20px rgba(0,0,0,.8);
  display: flex; flex-direction: column; gap: .3rem;
}
.about__stat-num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 700; line-height: 1; }
.about__stat-lbl { font-size: .8rem; color: var(--muted); line-height: 1.4; }

.ticklist { margin: 1.8rem 0 2.2rem; display: grid; gap: .9rem; }
.ticklist li { position: relative; padding-left: 2rem; color: var(--text); font-size: 1rem; }
.ticklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px;
  display: grid; place-items: center; border-radius: 50%; font-size: .7rem;
  background: var(--gold-grad); color: #2a1d07; font-weight: 700;
}

/* ---------- Services ---------- */
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.scard {
  position: relative; background: linear-gradient(165deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 2rem 1.6rem 1.8rem;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
  overflow: hidden;
}
.scard::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .45s var(--ease);
  background: radial-gradient(80% 60% at 50% 0%, rgba(201,162,92,.12), transparent 60%);
}
.scard:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: 0 30px 60px -28px rgba(0,0,0,.9); }
.scard:hover::before { opacity: 1; }
.scard__icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center;
  background: rgba(201,162,92,.08); border: 1px solid var(--line); margin-bottom: 1.3rem;
  transition: background .45s var(--ease);
}
.scard:hover .scard__icon { background: rgba(201,162,92,.16); }
.scard__icon svg { width: 30px; height: 30px; stroke: var(--gold-2); fill: var(--gold-2); stroke-width: 1.4; }
.scard__icon svg [fill="none"] { fill: none; }
.scard h3 { font-size: 1.25rem; margin-bottom: .6rem; color: var(--text); position: relative; }
.scard p { font-size: .92rem; color: var(--muted); position: relative; }
.scard__tag {
  display: inline-block; margin-top: 1rem; font-size: .66rem; letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--gold-3); border: 1px solid var(--line); border-radius: 100px; padding: .25rem .7rem; position: relative;
}

/* ---------- Hair Transplantation ---------- */
.ht { background: linear-gradient(180deg, var(--ink-2), var(--ink)); border-block: 1px solid var(--line-soft); }
.ht__intro { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.ht__visual { position: relative; }
.ht__visual-img {
  aspect-ratio: 4/5; border-radius: var(--radius); border: 1px solid var(--line); position: relative; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10,10,12,0), rgba(10,10,12,.25)),
    url("assets/ht-before-after.jpg") center top / cover no-repeat,
    linear-gradient(160deg, #1c1b1f, #121115);
}
.ht__visual-stat {
  position: absolute; bottom: -20px; left: -16px; background: var(--panel); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 1rem 1.3rem; box-shadow: 0 24px 50px -20px rgba(0,0,0,.8); max-width: 200px;
}
.ht__visual-stat span { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; line-height: 1; display: block; }
.ht__visual-stat small { font-size: .78rem; color: var(--muted); }
.ht__content h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }

.ht__techs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-bottom: 2.5rem; }
.httech {
  background: linear-gradient(165deg, var(--panel), var(--ink-2)); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 1.8rem 1.5rem; transition: all .45s var(--ease);
}
.httech:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: 0 30px 60px -28px rgba(0,0,0,.9); }
.httech__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center; background: rgba(201,162,92,.08); border: 1px solid var(--line); margin-bottom: 1.1rem; }
.httech__icon svg { width: 28px; height: 28px; stroke: var(--gold-2); fill: var(--gold-2); stroke-width: 1.4; }
.httech__icon svg [fill="none"] { fill: none; }
.httech h3 { font-size: 1.35rem; margin-bottom: .1rem; }
.httech__sub { display: block; font-size: .7rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold-3); margin-bottom: .7rem; }
.httech p { font-size: .9rem; color: var(--muted); }

.ht__features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1rem;
  background: radial-gradient(80% 140% at 50% 0%, rgba(201,162,92,.07), transparent 60%);
}
.htfeat { text-align: center; display: flex; flex-direction: column; gap: .2rem; }
.htfeat__num { font-family: var(--font-serif); font-size: 1.8rem; font-weight: 700; line-height: 1; }
.htfeat span:last-child { font-size: .78rem; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); }

/* ---------- Technology ---------- */
.tech { background: linear-gradient(180deg, var(--ink), var(--ink-2)); border-block: 1px solid var(--line-soft); }
.tech__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }
.tech__item {
  text-align: center; padding: 1.8rem 1rem; border-radius: var(--radius);
  border: 1px solid var(--line-soft); background: rgba(255,255,255,.015); transition: all .45s var(--ease);
}
.tech__item:hover { border-color: var(--line); transform: translateY(-6px); background: rgba(201,162,92,.04); }
.tech__ic {
  width: 56px; height: 56px; margin: 0 auto 1rem; border-radius: 14px; display: grid; place-items: center;
  background: rgba(201,162,92,.08); border: 1px solid var(--line);
}
.tech__ic svg { width: 28px; height: 28px; stroke: var(--gold-2); fill: var(--gold-2); stroke-width: 1.5; }
.tech__ic svg [fill="none"] { fill: none; }
.tech__item h3 { font-size: 1.1rem; margin-bottom: .2rem; }
.tech__item p { font-size: .78rem; color: var(--muted); }
.tech__note {
  text-align: center; margin-top: 2.4rem; color: var(--gold-3); font-size: .82rem;
  letter-spacing: 1.5px; text-transform: uppercase;
}

/* ---------- Signature treatments gallery ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; margin-bottom: 2.8rem; }
.featc {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft);
  background: var(--ink-2); transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
.featc:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 28px 56px -28px rgba(0,0,0,.9); }
.featc__img { aspect-ratio: 3/2; background: #f4f1ec center / cover no-repeat; transition: transform .6s var(--ease); }
.featc:hover .featc__img { transform: scale(1.05); }
.featc__cap {
  padding: .85rem 1rem; text-align: center; font-family: var(--font-serif); font-size: 1.1rem;
  color: var(--gold-1); border-top: 1px solid var(--line); background: linear-gradient(180deg, var(--panel), var(--ink-2));
}

.svc-divider { display: flex; align-items: center; gap: 1.2rem; margin: 0 auto 2rem; max-width: 560px; }
.svc-divider::before, .svc-divider::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold-4), transparent); opacity: .5; }
.svc-divider span { font-size: .74rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-3); white-space: nowrap; }

/* ---------- Service tabs + menu ---------- */
.svc-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem; margin-bottom: 2.5rem; }
.svc-tab {
  font-family: var(--font-sans); font-size: .8rem; letter-spacing: 1.2px; text-transform: uppercase; font-weight: 500;
  color: var(--muted); background: transparent; border: 1px solid var(--line-soft); border-radius: 100px;
  padding: .6rem 1.4rem; cursor: pointer; transition: all .35s var(--ease);
}
.svc-tab:hover { color: var(--gold-1); border-color: var(--line); }
.svc-tab.is-active { color: #2a1d07; background: var(--gold-grad); border-color: transparent; box-shadow: 0 8px 22px -10px rgba(201,162,92,.6); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.svc {
  position: relative; background: linear-gradient(165deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius-sm); padding: 1.5rem 1.5rem 1.4rem;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
  border-left: 2px solid var(--gold-4);
}
.svc:hover { transform: translateY(-5px); border-color: var(--line); border-left-color: var(--gold-2); box-shadow: 0 24px 50px -28px rgba(0,0,0,.9); }
.svc h4 { font-family: var(--font-serif); font-size: 1.28rem; font-weight: 600; margin-bottom: .4rem; line-height: 1.15; }
.svc p { font-size: .9rem; color: var(--muted); margin-bottom: .9rem; }
.svc__tag { font-size: .62rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-3); border: 1px solid var(--line); border-radius: 100px; padding: .22rem .65rem; }
.svc.is-hidden { display: none; }

/* ---------- Why ---------- */
.why { background: linear-gradient(180deg, var(--ink-2), var(--ink)); border-block: 1px solid var(--line-soft); }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.why__grid--5 { grid-template-columns: repeat(5, 1fr); }
.why__ic {
  width: 56px; height: 56px; margin-bottom: 1rem; border-radius: 14px; display: grid; place-items: center;
  background: rgba(201,162,92,.08); border: 1px solid var(--line);
}
.why__ic svg { width: 28px; height: 28px; stroke: var(--gold-2); fill: none; stroke-width: 1.5; }
.why__item { padding: 2rem 1.5rem; border-radius: var(--radius); border: 1px solid var(--line-soft); background: rgba(255,255,255,.015); transition: all .45s var(--ease); }
.why__item:hover { border-color: var(--line); transform: translateY(-6px); }
.why__num { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700; line-height: 1; margin-bottom: 1rem; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: .9; }
.why__item h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.why__item p { font-size: .92rem; color: var(--muted); }

/* ---------- Process ---------- */
.process__line { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.process__line::before {
  content: ""; position: absolute; top: 26px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-4), transparent); opacity: .5;
}
.step { text-align: center; position: relative; }
.step__dot {
  width: 54px; height: 54px; margin: 0 auto 1.2rem; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700;
  background: var(--ink); color: var(--gold-1); border: 1px solid var(--gold-3);
  box-shadow: 0 0 0 6px rgba(10,10,12,1), 0 0 30px -8px rgba(201,162,92,.5);
}
.step h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.step p { font-size: .9rem; color: var(--muted); padding: 0 .5rem; }

/* ---------- Doctors ---------- */
.doctors__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.doc { text-align: center; background: linear-gradient(165deg, var(--panel), var(--ink-2)); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 2.4rem 1.8rem; transition: all .45s var(--ease); }
.doc:hover { transform: translateY(-8px); border-color: var(--line); box-shadow: 0 30px 60px -28px rgba(0,0,0,.9); }
.doc__photo {
  width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 1.4rem; position: relative;
  background: radial-gradient(120% 120% at 30% 20%, rgba(201,162,92,.3), transparent 60%), linear-gradient(160deg, #232228, #161519);
  border: 1px solid var(--line); display: grid; place-items: center;
}
.doc__photo::before {
  content: attr(data-initial); font-family: var(--font-serif); font-size: 3rem; font-weight: 700;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.doc__photo::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid var(--line); }
.doc h3 { font-size: 1.4rem; margin-bottom: .2rem; }
.doc__photo[data-initial]::before { font-size: 2.2rem; letter-spacing: 1px; }
.doc__role { display: block; font-size: .76rem; letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-3); margin-bottom: .9rem; }
.doc p { font-size: .92rem; color: var(--muted); }
.doctors__note {
  text-align: center; margin-top: 2.4rem; font-size: .95rem; letter-spacing: .5px; color: var(--gold-1);
  font-weight: 500;
}

/* ---------- Founders / Leadership ---------- */
.founders { background: linear-gradient(180deg, var(--ink), var(--ink-2)); border-block: 1px solid var(--line-soft); }
.founders__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; max-width: 980px; margin: 0 auto; }
.founder {
  display: flex; gap: 1.6rem; align-items: center;
  background: linear-gradient(165deg, var(--panel), var(--ink-2));
  border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 2rem;
  transition: all .45s var(--ease);
}
.founder:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: 0 30px 60px -28px rgba(0,0,0,.9); }
.founder__photo {
  flex-shrink: 0; width: 122px; height: 152px; border-radius: 16px; position: relative;
  background: radial-gradient(120% 120% at 30% 20%, rgba(201,162,92,.3), transparent 60%), linear-gradient(160deg, #232228, #161519);
  border: 1px solid var(--line); display: grid; place-items: center; overflow: hidden;
}
.founder__photo::before {
  content: attr(data-initial); font-family: var(--font-serif); font-size: 1.9rem; font-weight: 700; letter-spacing: 1px;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.founder__photo.has-photo { background-size: cover; background-position: center top; background-repeat: no-repeat; }
.founder__photo.has-photo::before { content: none; }
.founder__photo::after { content: ""; position: absolute; inset: -5px; border-radius: 20px; border: 1px solid var(--line); }
.founder__body h3 { font-size: 1.5rem; margin-bottom: .15rem; }
.founder__cred { font-family: var(--font-sans); font-size: .68rem; letter-spacing: 1.5px; color: var(--gold-3); vertical-align: middle; border: 1px solid var(--line); border-radius: 100px; padding: .15rem .55rem; margin-left: .3rem; }
.founder__role { display: block; font-size: .76rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold-3); margin-bottom: .8rem; }
.founder__body p { font-size: .92rem; color: var(--muted); }

/* ---------- Results / Testimonials ---------- */
.results { background: linear-gradient(180deg, var(--ink-2), var(--ink)); border-block: 1px solid var(--line-soft); }
.results__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote { background: rgba(255,255,255,.02); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 2.2rem 1.9rem; position: relative; transition: all .45s var(--ease); }
.quote:hover { border-color: var(--line); transform: translateY(-6px); }
.quote::before { content: "“"; position: absolute; top: 4px; right: 22px; font-family: var(--font-serif); font-size: 5rem; color: rgba(201,162,92,.16); line-height: 1; }
.quote__stars { color: var(--gold-2); letter-spacing: 3px; margin-bottom: 1rem; font-size: .9rem; }
.quote blockquote { font-family: var(--font-serif); font-size: 1.22rem; font-style: italic; color: var(--text); line-height: 1.5; margin-bottom: 1.4rem; }
.quote figcaption strong { display: block; font-weight: 500; letter-spacing: .5px; }
.quote figcaption span { font-size: .8rem; color: var(--gold-3); letter-spacing: .5px; }

/* ---------- CTA Banner ---------- */
.ctabanner { padding: clamp(3.5rem, 7vw, 6rem) 0; background:
  radial-gradient(80% 120% at 50% 0%, rgba(201,162,92,.14), transparent 60%), var(--ink); border-bottom: 1px solid var(--line-soft); }
.ctabanner__inner { text-align: center; max-width: 700px; margin: 0 auto; }
.ctabanner h2 { margin-bottom: .8rem; }
.ctabanner p { color: var(--muted); margin-bottom: 2rem; font-size: 1.1rem; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.contact__list { margin-top: 2.4rem; display: grid; gap: 1.5rem; }
.contact__list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact__ic { flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(201,162,92,.08); border: 1px solid var(--line); }
.contact__ic .ic { width: 18px; height: 18px; fill: var(--gold-2); }
.contact__map {
  display: inline-block; margin-top: .5rem; font-size: .82rem; letter-spacing: .8px;
  color: var(--gold-2); border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: all .3s;
}
.contact__map:hover { color: var(--gold-1); border-color: var(--gold-3); }
.contact__list strong { display: block; font-weight: 500; letter-spacing: .5px; margin-bottom: .15rem; }
.contact__list span { color: var(--muted); font-size: .95rem; }

.contact__form { background: linear-gradient(165deg, var(--panel), var(--ink-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); }
.contact__form h3 { font-size: 1.7rem; margin-bottom: 1.6rem; }
.field { position: relative; margin-bottom: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field input, .field select, .field textarea {
  width: 100%; background: rgba(255,255,255,.03); border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm); padding: 1.05rem 1rem .55rem; color: var(--text);
  font-family: var(--font-sans); font-size: .98rem; font-weight: 300; transition: border-color .3s, background .3s;
  appearance: none;
}
.field textarea { padding-top: 1.2rem; resize: vertical; min-height: 90px; }
.field select { color: var(--text); cursor: pointer; }
.field select option { background: var(--ink-2); color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-3); background: rgba(201,162,92,.04); }
.field label {
  position: absolute; left: 1rem; top: .95rem; color: var(--muted-2); font-size: .98rem;
  pointer-events: none; transition: all .25s var(--ease); font-weight: 300;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select:valid + label,
.label--select { top: .35rem; font-size: .68rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-3); }
.field select:invalid + .label--select { top: .95rem; font-size: .98rem; letter-spacing: 0; text-transform: none; color: var(--muted-2); }
.field::after { /* select chevron */ }
.field select + label + .chev { }
.field:has(select)::after {
  content: ""; position: absolute; right: 1.1rem; top: 1.2rem; width: 8px; height: 8px;
  border-right: 1.5px solid var(--gold-3); border-bottom: 1.5px solid var(--gold-3);
  transform: rotate(45deg); pointer-events: none;
}
.form__note { margin-top: 1rem; font-size: .9rem; min-height: 1.2em; text-align: center; }
.form__note.ok { color: #8fd6a0; }
.form__note.err { color: #e69a9a; }

/* ---------- Footer ---------- */
.footer { background: var(--black); border-top: 1px solid var(--line); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand img { height: 52px; margin-bottom: 1.2rem; }
.footer__brand p { color: var(--muted); font-size: .92rem; max-width: 34ch; margin-bottom: 1.1rem; }
.footer__motto { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; letter-spacing: 1px; margin-bottom: 1.4rem !important; }
.footer__social { display: flex; gap: .6rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-soft); display: grid; place-items: center; transition: all .3s; }
.footer__social a:hover { border-color: var(--gold-3); color: var(--gold-2); transform: translateY(-3px); }
.footer__social .ic { width: 16px; height: 16px; }
.footer__col h4 { font-family: var(--font-sans); font-size: .78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-3); margin-bottom: 1.2rem; font-weight: 600; }
.footer__col a, .footer__col p { display: block; color: var(--muted); font-size: .92rem; margin-bottom: .7rem; transition: color .3s; }
.footer__col a:hover { color: var(--gold-1); }
.footer__bar { border-top: 1px solid var(--line-soft); padding: 1.4rem 0; }
.footer__bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer__bar p { font-size: .8rem; color: var(--muted-2); }
.footer__fine { font-style: italic; }

/* ---------- Footer legal links ---------- */
.footer__legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__legal a { font-size: .8rem; color: var(--muted); transition: color .3s; }
.footer__legal a:hover { color: var(--gold-1); }

/* ---------- Cookie consent banner ---------- */
.cookie-bar {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 130%);
  z-index: 120; width: min(960px, 92%);
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; justify-content: space-between;
  background: rgba(18, 18, 22, 0.96); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.1rem 1.4rem; box-shadow: 0 24px 60px -20px rgba(0,0,0,.9);
  transition: transform .5s var(--ease), opacity .4s var(--ease); opacity: 0;
}
.cookie-bar--in { transform: translate(-50%, 0); opacity: 1; }
.cookie-bar--hide { transform: translate(-50%, 130%); opacity: 0; }
.cookie-bar__text { font-size: .88rem; color: var(--muted); flex: 1 1 320px; line-height: 1.55; margin: 0; }
.cookie-bar__text a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar__text strong { color: var(--text); font-weight: 500; }
.cookie-bar__actions { display: flex; gap: .7rem; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--font-sans); font-size: .76rem; letter-spacing: 1.4px; text-transform: uppercase; font-weight: 500;
  padding: .7rem 1.5rem; border-radius: 100px; cursor: pointer; border: 1px solid transparent; transition: all .35s var(--ease);
}
.cookie-btn--gold { background: var(--gold-grad); color: #2a1d07; }
.cookie-btn--gold:hover { filter: brightness(1.06); transform: translateY(-2px); }
.cookie-btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.cookie-btn--ghost:hover { border-color: var(--gold-3); color: var(--gold-1); }

/* ---------- Legal pages ---------- */
.legal-nav {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; background: rgba(10,10,12,.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.legal-nav .container { display: flex; align-items: center; justify-content: space-between; width: min(900px, 92%); }
.legal-nav img { height: 60px; width: auto; }
.legal { width: min(820px, 92%); margin: 0 auto; padding: clamp(2.5rem, 6vw, 4.5rem) 0 5rem; position: relative; z-index: 1; }
.legal .eyebrow { margin-bottom: 1rem; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: .6rem; }
.legal__updated { color: var(--muted-2); font-size: .9rem; margin-bottom: 2.5rem; font-style: italic; }
.legal h2 { font-size: 1.5rem; margin: 2.4rem 0 .8rem; color: var(--gold-1); }
.legal h3 { font-size: 1.15rem; margin: 1.6rem 0 .5rem; color: var(--text); font-family: var(--font-sans); font-weight: 500; }
.legal p, .legal li { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.legal p { margin-bottom: 1rem; }
.legal ul { margin: 0 0 1.2rem; padding-left: 0; display: grid; gap: .5rem; }
.legal ul li { position: relative; padding-left: 1.6rem; }
.legal ul li::before { content: "✦"; position: absolute; left: 0; color: var(--gold-3); font-size: .8rem; top: .35rem; }
.legal a { color: var(--gold-2); text-decoration: underline; text-underline-offset: 2px; }
.legal strong { color: var(--text); font-weight: 500; }
.legal__box { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 1.5rem 0; }
.legal__footer { border-top: 1px solid var(--line-soft); padding: 2rem 0; text-align: center; }
.legal__footer p { color: var(--muted-2); font-size: .82rem; }

@media (max-width: 560px) {
  .cookie-bar { padding: 1rem; gap: 1rem; }
  .cookie-bar__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

/* ---------- Floating WhatsApp ---------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px;
  border-radius: 50%; display: grid; place-items: center; background: var(--gold-grad);
  box-shadow: 0 12px 30px -8px rgba(201,162,92,.7); transition: transform .35s var(--ease);
  animation: floaty 3s ease-in-out infinite;
}
.fab svg { width: 28px; height: 28px; fill: #1a1206; }
.fab:hover { transform: scale(1.1); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid, .why__grid--5 { grid-template-columns: repeat(2, 1fr); }
  .tech__grid { grid-template-columns: repeat(3, 1fr); }
  .ht__techs { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .topbar__hide { display: none; }
  .nav__inner, .nav.scrolled .nav__inner { height: 96px; }
  .nav__brand img, .nav.scrolled .nav__brand img { height: 74px; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82%, 340px); height: 100vh;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.6rem;
    background: var(--ink); border-left: 1px solid var(--line); padding: 2.5rem;
    transform: translateX(100%); transition: transform .45s var(--ease); z-index: 99;
  }
  .nav__links.open { transform: translateX(0); box-shadow: -20px 0 60px -20px rgba(0,0,0,.9); }
  .nav__links a:not(.btn) { font-size: 1rem; }
  .nav__cta { margin-top: .6rem; }
  .about__grid, .contact__grid, .ht__intro { grid-template-columns: 1fr; }
  .ht__visual { max-width: 460px; margin: 0 auto 2rem; width: 100%; }
  .about__media { max-width: 420px; margin: 0 auto 2rem; width: 100%; }
  .hero__photo { width: 100%; opacity: .22; -webkit-mask-image: none; mask-image: none; }
  .doctors__grid, .results__grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .founders__grid { grid-template-columns: 1fr; max-width: 520px; }
  .process__line { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .process__line::before { display: none; }
}

@media (max-width: 560px) {
  .nav__brand img, .nav.scrolled .nav__brand img { height: 54px; }
  .services__grid, .svc-grid, .why__grid, .why__grid--5 { grid-template-columns: 1fr; }
  .tech__grid, .ht__techs { grid-template-columns: repeat(2, 1fr); }
  .ht__features { grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .field-row { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
  .hero__badges { gap: 1.4rem 2rem; }
  .badge__num { font-size: 2rem; }
  .footer__bar-inner { flex-direction: column; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
