/* ============================================================
   LUSTRE SKIN STUDIO — clinical-luxe "glass-skin" facial studio
   North-West London (Harrow / Pinner / Stanmore)
   Display: Syne  •  Body: Manrope
   Signature motifs: glossy glass orbs, dewy droplets, ultra-rounded cards
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* brand palette */
  --porcelain: #f4f3f1;
  --slate-ink: #26282d;
  --glacial-lilac: #c3c9e8;
  --liquid-silver: #c8ccd2;
  --rose-gold: #d9a98f;

  /* derived light-theme surface system */
  --bg: #f4f3f1;
  --bg-2: #fbfafa;
  --bg-sunken: #ecebe9;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, 0.72);
  --ink: #26282d;
  --ink-soft: #50535b;
  --ink-faint: #888c95;
  --line: rgba(38, 40, 45, 0.10);
  --line-strong: rgba(38, 40, 45, 0.16);
  --accent: #8e8fc4;            /* deepened lilac for AA contrast on white */
  --accent-soft: #c3c9e8;
  --accent-ink: #4f5191;
  --halo: #d9a98f;              /* rosé-gold hairline */
  --silver: #c8ccd2;

  /* gradients */
  --grad-orb: radial-gradient(circle at 32% 28%, #ffffff 0%, #e7e9f6 26%, #c3c9e8 55%, #9fa6d2 100%);
  --grad-orb-rose: radial-gradient(circle at 32% 28%, #ffffff 0%, #f6e7df 30%, #e7c3ac 62%, #d9a98f 100%);
  --grad-hero: linear-gradient(165deg, #fbfafa 0%, #eef0f7 48%, #e3e6f1 100%);
  --grad-ink: linear-gradient(150deg, #2b2d33 0%, #232529 100%);

  /* shape + motion */
  --r-xs: 10px;
  --r-sm: 16px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-xl: 40px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(38, 40, 45, 0.05);
  --shadow-md: 0 14px 40px -18px rgba(38, 40, 45, 0.22);
  --shadow-lg: 0 30px 70px -28px rgba(60, 64, 110, 0.34);
  --shadow-glass: 0 20px 50px -22px rgba(120, 126, 180, 0.45), inset 0 1px 0 rgba(255,255,255,0.7);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --container: 1180px;
  --space: 8px;

  --font-display: "Syne", "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- DARK "GLOW" THEME ---------- */
html.theme-dark {
  --bg: #16171b;
  --bg-2: #1c1d22;
  --bg-sunken: #121317;
  --surface: #1f2127;
  --surface-glass: rgba(40, 43, 53, 0.62);
  --ink: #f1f1f4;
  --ink-soft: #b6b9c4;
  --ink-faint: #8b8f9c;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #b9bff0;
  --accent-soft: #5a5d8f;
  --accent-ink: #cdd2ff;
  --halo: #e6b89e;
  --silver: #aeb3c4;
  --grad-hero: linear-gradient(165deg, #1a1b21 0%, #202234 52%, #181922 100%);
  --grad-ink: linear-gradient(150deg, #20222b 0%, #14151a 100%);
  --shadow-md: 0 16px 44px -18px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 34px 80px -30px rgba(0, 0, 0, 0.8);
  --shadow-glass: 0 24px 60px -26px rgba(120, 126, 220, 0.5), inset 0 1px 0 rgba(255,255,255,0.14);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: background .5s var(--ease), color .5s var(--ease);
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: 1rem; }
::selection { background: var(--accent-soft); color: var(--slate-ink); }
:focus-visible { outline: 2.5px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.7rem, 7vw, 5.4rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p { color: var(--ink-soft); }
.kicker {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--accent-ink);
}
.kicker::before { content: ""; width: 22px; height: 2px; background: var(--halo); border-radius: 2px; }
.dewdrop { color: var(--accent-ink); font-style: italic; font-family: var(--font-display); }

/* ---------- LAYOUT ---------- */
.container { width: min(100% - 44px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 124px) 0; }
.section-sm { padding: clamp(44px, 6vw, 72px) 0; }
.center { text-align: center; }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; }
.section-head p { margin-top: 16px; font-size: 1.08rem; }
.eyebrow-num { font-family: var(--font-display); font-weight: 800; color: var(--accent-soft); font-size: 0.95rem; letter-spacing: .1em; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--r-pill);
  font-weight: 700; font-size: 0.96rem; letter-spacing: 0.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .3s var(--ease);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn-primary { background: var(--slate-ink); color: #fff; box-shadow: var(--shadow-md); }
html.theme-dark .btn-primary { background: var(--accent); color: #15161b; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-glow {
  background: var(--grad-orb); color: var(--slate-ink);
  box-shadow: 0 14px 34px -14px rgba(120,126,180,.7), inset 0 1px 0 rgba(255,255,255,.8);
}
.btn-glow:hover { transform: translateY(-3px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line-strong); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 38px; font-size: 1.02rem; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none !important; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--surface-glass);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: box-shadow .35s var(--ease), border-color .35s var(--ease), background .4s var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 30px -16px rgba(38,40,45,.2); border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; letter-spacing: -0.02em; }
.brand .orb-mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--grad-orb);
  box-shadow: inset -2px -3px 6px rgba(120,126,180,.5), inset 2px 2px 5px rgba(255,255,255,.95), 0 3px 8px rgba(120,126,180,.4);
  position: relative; flex-shrink: 0;
}
.brand .orb-mark::after { content: ""; position: absolute; top: 5px; left: 7px; width: 8px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.9); filter: blur(.4px); }
.brand small { display: block; font-family: var(--font-body); font-weight: 600; font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-faint); margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 9px 15px; border-radius: var(--r-pill);
  font-weight: 600; font-size: 0.92rem; color: var(--ink-soft);
  transition: color .25s var(--ease), background .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); background: rgba(140,143,196,.1); }
.nav-links a.active { color: var(--accent-ink); }
.nav-links a.active::after { content: ""; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--halo); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-cta { padding: 11px 22px; border-radius: var(--r-pill); background: var(--slate-ink); color: #fff; font-weight: 700; font-size: .9rem; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
html.theme-dark .nav-cta { background: var(--accent); color: #15161b; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* theme toggle */
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1.5px solid var(--line-strong); color: var(--ink-soft);
  transition: transform .4s var(--ease), border-color .3s, color .3s, background .3s;
}
.theme-toggle:hover { transform: rotate(20deg); border-color: var(--accent); color: var(--accent-ink); }
.theme-toggle .sun { display: none; }
.theme-toggle .moon { display: block; }
html.theme-dark .theme-toggle .sun { display: block; }
html.theme-dark .theme-toggle .moon { display: none; }

/* hamburger */
.hamburger { display: none; width: 44px; height: 44px; border-radius: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; border: 1.5px solid var(--line-strong); }
.hamburger span { width: 19px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 16px 22px 28px; gap: 4px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform .4s var(--ease), opacity .35s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; border-radius: var(--r-sm); }
  .nav-links a.active::after { display: none; }
  .nav-links a.active { background: rgba(140,143,196,.13); }
  .nav-cta { display: none; }
}

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(70px, 11vw, 130px) 0 clamp(60px, 9vw, 110px); overflow: hidden; background: var(--grad-hero); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-copy { position: relative; z-index: 3; }
.hero h1 { margin: 20px 0 0; }
.hero h1 .line2 { display: block; color: var(--accent-ink); }
.hero-lede { margin-top: 24px; font-size: clamp(1.05rem, 1.6vw, 1.22rem); max-width: 32ch; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-meta { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta b { font-family: var(--font-display); font-size: 1.55rem; font-weight: 800; color: var(--ink); }
.hero-meta span { font-size: .8rem; color: var(--ink-faint); letter-spacing: .03em; }

/* glass orb stage */
.hero-stage { position: relative; height: clamp(360px, 42vw, 520px); }
.glass-orb {
  position: absolute; border-radius: 50%;
  background: var(--grad-orb);
  box-shadow: var(--shadow-glass);
  animation: float 9s var(--ease) infinite;
}
.glass-orb::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: radial-gradient(circle at 30% 24%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 32%);
}
.glass-orb::after {
  content: ""; position: absolute; border-radius: 50%;
  top: 14%; left: 20%; width: 26%; height: 18%;
  background: rgba(255,255,255,.85); filter: blur(1px); transform: rotate(-18deg);
}
.orb-1 { width: clamp(220px, 30vw, 360px); height: clamp(220px, 30vw, 360px); top: 8%; left: 14%; }
.orb-2 { width: clamp(110px, 14vw, 168px); height: clamp(110px, 14vw, 168px); top: 2%; right: 6%; background: var(--grad-orb-rose); animation-delay: -3s; }
.orb-3 { width: clamp(80px, 10vw, 120px); height: clamp(80px, 10vw, 120px); bottom: 6%; right: 18%; animation-delay: -5.5s; }
.orb-4 { width: 54px; height: 54px; bottom: 22%; left: 6%; animation-delay: -1.5s; }
@keyframes float { 0%,100% { transform: translateY(0) translateX(0); } 50% { transform: translateY(-22px) translateX(6px); } }

/* droplet accents */
.droplet { position: absolute; background: radial-gradient(circle at 35% 30%, rgba(255,255,255,.95), rgba(195,201,232,.5)); border-radius: 50% 50% 50% 50%; box-shadow: inset 0 -2px 4px rgba(120,126,180,.4), 0 4px 12px rgba(120,126,180,.25); }

/* ---------- TRUST STRIP ---------- */
.trust { border-block: 1px solid var(--line); background: var(--bg-2); }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; padding: 26px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.trust-item svg { width: 18px; height: 18px; color: var(--accent); }

/* ---------- CARDS / GRID ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }

/* service preview card */
.svc-card { display: flex; flex-direction: column; }
.svc-orb {
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--grad-orb); margin-bottom: 22px; position: relative; flex-shrink: 0;
  box-shadow: inset -3px -4px 8px rgba(120,126,180,.45), inset 2px 2px 5px rgba(255,255,255,.95), 0 6px 14px -4px rgba(120,126,180,.5);
}
.svc-orb::after { content: ""; position: absolute; top: 9px; left: 13px; width: 13px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.92); filter: blur(.5px); }
.svc-orb.rose { background: var(--grad-orb-rose); box-shadow: inset -3px -4px 8px rgba(217,169,143,.5), inset 2px 2px 5px rgba(255,255,255,.95), 0 6px 14px -4px rgba(217,169,143,.5); }
.svc-card h3 { margin-bottom: 8px; }
.svc-card p { font-size: .96rem; flex-grow: 1; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.svc-price { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink); }
.svc-price small { font-size: .72rem; color: var(--ink-faint); font-weight: 600; font-family: var(--font-body); }
.svc-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 700; font-size: .88rem; color: var(--accent-ink); transition: gap .3s var(--ease); }
.svc-card:hover .svc-arrow { gap: 11px; }

/* ---------- WHY / STATS ---------- */
.stats { background: var(--grad-ink); color: #fff; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 70px); position: relative; overflow: hidden; }
.stats::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; background: var(--grad-orb); opacity: .14; top: -120px; right: -80px; filter: blur(8px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; z-index: 2; }
.stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2.4rem, 4.5vw, 3.6rem); background: linear-gradient(120deg, #fff, var(--glacial-lilac)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; }
.stat span { display: block; margin-top: 10px; color: rgba(255,255,255,.7); font-size: .9rem; letter-spacing: .04em; }
.stats .section-head h2 { color: #fff; }
.stats .section-head p { color: rgba(255,255,255,.72); }

/* ---------- TESTIMONIALS ---------- */
.quote-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.quote-mark { font-family: var(--font-display); font-size: 3rem; line-height: .6; color: var(--accent-soft); margin-bottom: 8px; }
.quote-card p { font-size: 1.04rem; color: var(--ink); font-weight: 500; }
.quote-author { display: flex; align-items: center; gap: 13px; margin-top: 24px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; color: var(--slate-ink); background: var(--grad-orb); box-shadow: inset -2px -3px 6px rgba(120,126,180,.4), inset 2px 2px 4px rgba(255,255,255,.9); flex-shrink: 0; }
.avatar.rose { background: var(--grad-orb-rose); }
.quote-author b { display: block; font-family: var(--font-display); font-size: .98rem; color: var(--ink); }
.quote-author span { font-size: .82rem; color: var(--ink-faint); }
.stars { display: flex; gap: 2px; color: var(--halo); margin-bottom: 14px; }
.stars svg { width: 16px; height: 16px; }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-ink); border-radius: var(--r-xl); padding: clamp(48px, 7vw, 92px) clamp(28px, 5vw, 70px); text-align: center; color: #fff; }
.cta-band::before, .cta-band::after { content: ""; position: absolute; border-radius: 50%; background: var(--grad-orb); opacity: .2; filter: blur(4px); }
.cta-band::before { width: 280px; height: 280px; top: -90px; left: -60px; }
.cta-band::after { width: 200px; height: 200px; bottom: -70px; right: -40px; background: var(--grad-orb-rose); opacity: .22; }
.cta-band h2 { color: #fff; position: relative; z-index: 2; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 50ch; margin: 16px auto 0; position: relative; z-index: 2; }
.cta-band .hero-ctas { justify-content: center; position: relative; z-index: 2; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--bg-sunken); border-top: 1px solid var(--line); padding: clamp(56px, 7vw, 84px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: .94rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-body); font-size: .76rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 18px; font-weight: 700; }
.footer-col a, .footer-col li { display: block; font-size: .94rem; color: var(--ink-soft); margin-bottom: 11px; transition: color .25s; }
.footer-col a:hover { color: var(--accent-ink); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--line); font-size: .84rem; color: var(--ink-faint); }
.footer-bottom .socials { display: flex; gap: 10px; }
.footer-bottom .socials a { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-strong); transition: border-color .3s, color .3s, transform .3s; }
.footer-bottom .socials a:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.footer-bottom .socials svg { width: 16px; height: 16px; }

/* ---------- SCROLL REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .08s; }
.reveal[data-d="2"] { transition-delay: .16s; }
.reveal[data-d="3"] { transition-delay: .24s; }
.reveal[data-d="4"] { transition-delay: .32s; }

/* ============================================================
   PAGE-SPECIFIC
   ============================================================ */

/* page hero (interior) */
.page-hero { position: relative; overflow: hidden; background: var(--grad-hero); padding: clamp(70px, 9vw, 120px) 0 clamp(46px, 6vw, 76px); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); margin-top: 16px; }
.page-hero p { margin-top: 18px; max-width: 56ch; font-size: 1.1rem; }
.page-hero .glass-orb { opacity: .85; }
.breadcrumb { font-size: .8rem; color: var(--ink-faint); letter-spacing: .04em; }
.breadcrumb a:hover { color: var(--accent-ink); }

/* ---- SERVICES PAGE ---- */
.svc-list { display: grid; gap: 22px; }
.svc-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 30px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
}
.svc-row:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.svc-row.popular { border-color: var(--accent-soft); box-shadow: 0 18px 44px -20px rgba(120,126,180,.45); }
.svc-row.popular::before { content: "Most popular"; position: absolute; top: -11px; left: 30px; background: var(--grad-orb-rose); color: var(--slate-ink); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.svc-row .svc-orb { margin: 0; width: 52px; height: 52px; }
.svc-info h3 { font-size: 1.28rem; margin-bottom: 5px; }
.svc-info p { font-size: .95rem; margin-bottom: 9px; }
.svc-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: .73rem; font-weight: 700; letter-spacing: .04em; padding: 4px 11px; border-radius: var(--r-pill); background: var(--bg-sunken); color: var(--ink-soft); }
.tag.free { background: color-mix(in srgb, var(--halo) 30%, transparent); color: var(--slate-ink); }
.svc-act { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; text-align: right; }
.svc-act .svc-price { font-size: 1.55rem; }
.svc-act .free-price { color: var(--accent-ink); }

@media (max-width: 720px) {
  .svc-row { grid-template-columns: auto 1fr; }
  .svc-act { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; text-align: left; padding-top: 16px; border-top: 1px solid var(--line); }
}

/* ---- ABOUT PAGE ---- */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-visual { position: relative; height: clamp(320px, 38vw, 460px); border-radius: var(--r-xl); overflow: hidden; background: var(--grad-hero); border: 1px solid var(--line); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card .svc-orb { width: 46px; height: 46px; margin-bottom: 18px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { font-size: .94rem; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; padding: 32px 22px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-avatar { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--slate-ink); background: var(--grad-orb); box-shadow: var(--shadow-glass); position: relative; }
.team-avatar::after { content: ""; position: absolute; top: 16px; left: 22px; width: 18px; height: 13px; border-radius: 50%; background: rgba(255,255,255,.9); filter: blur(.6px); }
.team-avatar.rose { background: var(--grad-orb-rose); }
.team-card b { display: block; font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 3px; }
.team-card span { font-size: .85rem; color: var(--accent-ink); font-weight: 600; }
.team-card p { font-size: .88rem; margin-top: 12px; }

.certs { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 28px; }
.cert-chip { display: flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); font-weight: 600; font-size: .88rem; box-shadow: var(--shadow-sm); }
.cert-chip svg { width: 20px; height: 20px; color: var(--accent); }

/* ---- GALLERY PAGE ---- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 18px; }
.tile { position: relative; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); cursor: pointer; }
.tile.tall { grid-row: span 2; }
.tile.wide { grid-column: span 2; }
.tile-caption { position: absolute; inset: auto 0 0 0; padding: 38px 20px 18px; background: linear-gradient(transparent, rgba(20,21,26,.82)); color: #fff; transform: translateY(8px); opacity: 0; transition: transform .45s var(--ease), opacity .45s var(--ease); }
.tile:hover .tile-caption { transform: none; opacity: 1; }
.tile-caption b { display: block; font-family: var(--font-display); font-size: 1.05rem; }
.tile-caption span { font-size: .8rem; color: rgba(255,255,255,.78); }
.tile:hover { box-shadow: var(--shadow-lg); }
.tile .tile-fx { position: absolute; inset: 0; transition: transform .6s var(--ease); }
.tile:hover .tile-fx { transform: scale(1.06); }

/* before/after slider */
.ba-wrap { max-width: 760px; margin: 0 auto; }
.ba-slider { position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); user-select: none; touch-action: none; }
.ba-layer { position: absolute; inset: 0; display: grid; place-items: center; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-label { position: absolute; top: 16px; padding: 6px 14px; border-radius: var(--r-pill); font-size: .74rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; background: rgba(255,255,255,.85); color: var(--slate-ink); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); z-index: 4; }
.ba-label.l { left: 16px; }
.ba-label.r { right: 16px; }
.ba-handle { position: absolute; top: 0; bottom: 0; left: 50%; width: 3px; background: #fff; transform: translateX(-50%); z-index: 5; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.ba-knob { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 46px; height: 46px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: var(--shadow-md); color: var(--slate-ink); }
.ba-range { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 6; margin: 0; }
.ba-cap { text-align: center; margin-top: 18px; font-size: .9rem; color: var(--ink-faint); }

/* ---- CONTACT PAGE ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 44px; align-items: start; }
.contact-methods { display: grid; gap: 16px; }
.method { display: flex; gap: 16px; align-items: flex-start; padding: 22px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.method:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.method .ico { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-orb); color: var(--slate-ink); flex-shrink: 0; box-shadow: inset -2px -3px 5px rgba(120,126,180,.4), inset 2px 2px 4px rgba(255,255,255,.9); }
.method .ico svg { width: 20px; height: 20px; }
.method b { display: block; font-family: var(--font-display); font-size: 1rem; margin-bottom: 2px; }
.method span, .method a { font-size: .92rem; color: var(--ink-soft); }
.method a:hover { color: var(--accent-ink); }

.hours-table { width: 100%; border-collapse: collapse; margin-top: 22px; background: var(--surface); border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); }
.hours-table th, .hours-table td { padding: 13px 18px; text-align: left; font-size: .92rem; border-bottom: 1px solid var(--line); }
.hours-table th { font-family: var(--font-display); font-weight: 700; color: var(--ink); width: 50%; }
.hours-table td { color: var(--ink-soft); text-align: right; }
.hours-table tr:last-child th, .hours-table tr:last-child td { border-bottom: none; }
.hours-table tr.today { background: color-mix(in srgb, var(--accent-soft) 18%, transparent); }
.hours-table tr.today td { color: var(--accent-ink); font-weight: 700; }

/* forms */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .84rem; font-weight: 700; margin-bottom: 7px; color: var(--ink); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line-strong); background: var(--bg-2); color: var(--ink);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(140,143,196,.16); background: var(--surface); }
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field .err { display: none; color: #c0566f; font-size: .8rem; margin-top: 6px; font-weight: 600; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #d97a8e; }
.field.invalid .err { display: block; }
html.theme-dark .field .err { color: #f0a3b3; }
.form-success { display: none; padding: 22px; border-radius: var(--r-md); background: color-mix(in srgb, var(--accent-soft) 22%, transparent); border: 1px solid var(--accent-soft); color: var(--ink); font-weight: 600; align-items: center; gap: 12px; }
.form-success.show { display: flex; }
.form-success svg { width: 24px; height: 24px; color: var(--accent-ink); flex-shrink: 0; }

/* map placeholder */
.map-card { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; height: 280px; background: var(--bg-sunken); }
.map-grid-bg { position: absolute; inset: 0; opacity: .5; }
.map-pin { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -100%); z-index: 3; }
.map-pin svg { width: 44px; height: 44px; color: var(--accent-ink); filter: drop-shadow(0 6px 8px rgba(60,64,110,.3)); }
.map-pulse { position: absolute; top: 50%; left: 50%; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); transform: translate(-50%,-50%); }
.map-pulse::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid var(--accent); animation: pulse 2.2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.6); opacity: .9; } 100% { transform: scale(2.6); opacity: 0; } }
.map-label { position: absolute; bottom: 14px; left: 14px; background: var(--surface); padding: 10px 16px; border-radius: var(--r-sm); font-size: .84rem; font-weight: 600; box-shadow: var(--shadow-sm); z-index: 4; }

/* ---- CHECKOUT PAGE ---- */
.checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.summary-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-md); position: sticky; top: 96px; }
.summary-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.order-line { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; font-size: .95rem; border-bottom: 1px solid var(--line); }
.order-line span:first-child { color: var(--ink-soft); }
.order-line span:last-child { font-weight: 700; }
.order-line.total { border-bottom: none; padding-top: 18px; font-size: 1.2rem; }
.order-line.total span:last-child { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.order-line.discount span { color: var(--accent-ink); font-weight: 700; }
.summary-svc-orb { width: 50px; height: 50px; border-radius: 50%; background: var(--grad-orb); margin-bottom: 18px; box-shadow: var(--shadow-glass); position: relative; }
.summary-svc-orb::after { content:""; position:absolute; top:8px; left:12px; width:11px; height:8px; border-radius:50%; background:rgba(255,255,255,.9); }

.member-toggle { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 18px; border-radius: var(--r-md); background: var(--bg-2); border: 1px solid var(--line); margin: 18px 0; }
.member-toggle .mt-label b { display: block; font-size: .92rem; font-family: var(--font-display); }
.member-toggle .mt-label span { font-size: .8rem; color: var(--ink-faint); }
.switch { position: relative; width: 50px; height: 28px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--line-strong); border-radius: var(--r-pill); transition: background .3s; }
.switch .slider::before { content: ""; position: absolute; height: 22px; width: 22px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .3s var(--ease); box-shadow: 0 2px 4px rgba(0,0,0,.2); }
.switch input:checked + .slider { background: var(--accent); }
.switch input:checked + .slider::before { transform: translateX(22px); }

.promo-row { display: flex; gap: 10px; margin: 6px 0 4px; }
.promo-row input { flex: 1; padding: 12px 14px; border-radius: var(--r-sm); border: 1.5px solid var(--line-strong); background: var(--bg-2); color: var(--ink); text-transform: uppercase; }
.promo-row input:focus { outline: none; border-color: var(--accent); }
.promo-row button { padding: 12px 20px; border-radius: var(--r-sm); background: var(--slate-ink); color: #fff; font-weight: 700; font-size: .88rem; }
html.theme-dark .promo-row button { background: var(--accent); color:#15161b; }
.promo-msg { font-size: .82rem; margin-top: 4px; font-weight: 600; min-height: 18px; }
.promo-msg.ok { color: var(--accent-ink); }
.promo-msg.bad { color: #c0566f; }
html.theme-dark .promo-msg.bad { color:#f0a3b3; }

/* slot pills */
.slot-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.slot { padding: 10px 16px; border-radius: var(--r-pill); border: 1.5px solid var(--line-strong); background: var(--bg-2); font-weight: 600; font-size: .88rem; transition: all .25s var(--ease); }
.slot:hover:not(:disabled) { border-color: var(--accent); }
.slot.selected { background: var(--slate-ink); color: #fff; border-color: var(--slate-ink); }
html.theme-dark .slot.selected { background: var(--accent); color: #15161b; border-color: var(--accent); }
.slot:disabled { opacity: .4; cursor: not-allowed; text-decoration: line-through; }

/* payment tabs */
.pay-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 22px; }
.pay-tab { display: flex; align-items: center; gap: 8px; padding: 11px 18px; border-radius: var(--r-pill); border: 1.5px solid var(--line-strong); background: var(--bg-2); font-weight: 700; font-size: .88rem; transition: all .25s var(--ease); }
.pay-tab.active { border-color: var(--accent); background: color-mix(in srgb, var(--accent-soft) 18%, var(--surface)); color: var(--accent-ink); }
.pay-tab svg { width: 18px; height: 18px; }
.pay-panel { display: none; }
.pay-panel.active { display: block; animation: fadeIn .4s var(--ease); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.redirect-note { padding: 22px; border-radius: var(--r-md); background: var(--bg-2); border: 1px dashed var(--line-strong); display: flex; gap: 14px; align-items: center; }
.redirect-note .rn-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-orb); color: var(--slate-ink); flex-shrink: 0; }
.redirect-note b { font-family: var(--font-display); }
.redirect-note p { font-size: .88rem; margin-top: 2px; }

/* secure row */
.secure-row { display: flex; align-items: center; gap: 10px; margin: 18px 0; padding: 14px 18px; border-radius: var(--r-md); background: var(--bg-2); border: 1px solid var(--line); font-size: .85rem; color: var(--ink-soft); font-weight: 600; }
.secure-row svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.badge-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.chip { padding: 6px 12px; border-radius: 8px; border: 1px solid var(--line-strong); background: var(--surface); font-size: .72rem; font-weight: 800; letter-spacing: .04em; color: var(--ink-soft); }
.demo-note { text-align: center; font-size: .8rem; color: var(--ink-faint); margin-top: 16px; font-style: italic; }
.spinner { width: 18px; height: 18px; border: 2.5px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
html.theme-dark .spinner { border-color: rgba(0,0,0,.25); border-top-color: #15161b; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- SUCCESS PAGE ---- */
.success-wrap { max-width: 640px; margin: 0 auto; text-align: center; }
.check-badge { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 30px; display: grid; place-items: center; background: var(--grad-orb); box-shadow: var(--shadow-glass); position: relative; }
.check-badge::after { content: ""; position: absolute; top: 18px; left: 26px; width: 22px; height: 16px; border-radius: 50%; background: rgba(255,255,255,.9); filter: blur(.6px); }
.check-badge svg { width: 54px; height: 54px; z-index: 2; }
.check-badge .checkpath { stroke: var(--slate-ink); stroke-width: 5; stroke-linecap: round; stroke-linejoin: round; fill: none; stroke-dasharray: 60; stroke-dashoffset: 60; animation: draw .8s var(--ease) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.ref-pill { display: inline-block; margin: 18px 0 6px; padding: 10px 22px; border-radius: var(--r-pill); background: var(--surface); border: 1px solid var(--line); font-family: var(--font-display); font-weight: 800; letter-spacing: .08em; box-shadow: var(--shadow-sm); }
.success-summary { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); margin: 32px 0; text-align: left; }
.steps { display: grid; gap: 16px; text-align: left; margin: 30px 0; }
.step { display: flex; gap: 16px; align-items: flex-start; padding: 20px; border-radius: var(--r-md); background: var(--surface); border: 1px solid var(--line); }
.step-num { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: var(--grad-orb); color: var(--slate-ink); font-family: var(--font-display); font-weight: 800; flex-shrink: 0; }
.step b { display: block; font-family: var(--font-display); margin-bottom: 3px; }
.step p { font-size: .92rem; }

/* ---- MEMBERSHIPS (Skin Club) ---- */
.bill-toggle { display: inline-flex; align-items: center; gap: 14px; padding: 8px; border-radius: var(--r-pill); background: var(--bg-sunken); border: 1px solid var(--line); margin: 0 auto; }
.bill-toggle button { padding: 9px 22px; border-radius: var(--r-pill); font-weight: 700; font-size: .9rem; color: var(--ink-soft); transition: all .3s var(--ease); }
.bill-toggle button.active { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }
.bill-toggle .save-tag { font-size: .72rem; color: var(--accent-ink); font-weight: 800; }

.tiers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.tier { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 34px 30px; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); position: relative; }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.tier.featured { border: 1.5px solid var(--accent-soft); box-shadow: var(--shadow-lg); }
.tier.featured::before { content: "Most loved"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--grad-orb-rose); color: var(--slate-ink); font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.tier-name { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.tier-desc { font-size: .9rem; color: var(--ink-faint); margin: 6px 0 22px; }
.tier-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.tier-price b { font-family: var(--font-display); font-weight: 800; font-size: 2.8rem; line-height: 1; }
.tier-price span { color: var(--ink-faint); font-size: .92rem; }
.tier-note { font-size: .82rem; color: var(--accent-ink); font-weight: 600; margin-bottom: 24px; min-height: 20px; }
.tier ul { display: grid; gap: 12px; margin-bottom: 28px; flex-grow: 1; }
.tier li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); }
.tier li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.tier li.muted { color: var(--ink-faint); }
.tier li.muted svg { color: var(--ink-faint); opacity: .5; }

.perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.perk { padding: 28px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.perk:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.perk .svc-orb { width: 44px; height: 44px; margin-bottom: 16px; }
.perk h3 { font-size: 1.08rem; margin-bottom: 6px; }
.perk p { font-size: .9rem; }

/* comparison table */
.compare { width: 100%; border-collapse: collapse; background: var(--surface); border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.compare th, .compare td { padding: 16px 20px; text-align: center; border-bottom: 1px solid var(--line); font-size: .92rem; }
.compare th { font-family: var(--font-display); font-weight: 700; }
.compare thead th { background: var(--bg-2); }
.compare td:first-child, .compare th:first-child { text-align: left; color: var(--ink-soft); font-weight: 600; }
.compare tbody tr:last-child td { border-bottom: none; }
.compare .yes { color: var(--accent-ink); font-weight: 800; }
.compare .no { color: var(--ink-faint); }
.compare .feat-col { background: color-mix(in srgb, var(--accent-soft) 12%, var(--surface)); }

/* FAQ accordion */
.faq-list { display: grid; gap: 12px; max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden; transition: border-color .3s; }
.faq-item.open { border-color: var(--accent-soft); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); }
.faq-q .faq-ico { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.faq-q .faq-ico::before, .faq-q .faq-ico::after { content: ""; position: absolute; background: var(--accent-ink); border-radius: 2px; top: 50%; left: 50%; transition: transform .35s var(--ease); }
.faq-q .faq-ico::before { width: 13px; height: 2.5px; transform: translate(-50%,-50%); }
.faq-q .faq-ico::after { width: 2.5px; height: 13px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q .faq-ico::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 24px 22px; font-size: .96rem; color: var(--ink-soft); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-stage { height: 320px; order: -1; }
  .grid-4, .stats-grid, .team-grid, .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-story, .contact-grid, .checkout-grid { grid-template-columns: 1fr; gap: 32px; }
  .summary-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .grid-3, .grid-2, .values-grid, .tiers-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .tile.wide { grid-column: span 2; }
  .field-row { grid-template-columns: 1fr; }
  .compare { font-size: .8rem; }
  .compare th, .compare td { padding: 12px 10px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .team-grid, .perks-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 18px; }
  .pay-tab span { display: none; }
}
