/* =========================================================
   Dr Timeless — Shared Stylesheet
   Boutique Medical Aesthetic Clinic, Jordan, Hong Kong
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --color-bg: #F7F3EE;
  --color-surface: #FFFFFF;
  --color-ink: #1A1A1A;
  --color-muted: #6B6158;
  --color-accent: #8B6F47;
  --color-accent-2: #D4B896;
  --color-line: #E8DFD3;
  --color-highlight: #2E4A3E;
  --color-ok: #4A7C6D;
  --color-warning: #B8732E;
  --color-whatsapp: #25D366;

  --font-serif-en: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-serif-tc: "Noto Serif TC", "Source Han Serif TC", serif;
  --font-sans-en: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-sans-tc: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  --font-heading: var(--font-serif-tc), var(--font-serif-en);
  --font-body: var(--font-sans-tc), var(--font-sans-en);

  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 32px;
  --s-6: 48px;
  --s-7: 64px;
  --s-8: 96px;
  --s-9: 128px;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --shadow-sm: 0 1px 2px rgba(26,26,26,0.04);
  --shadow-md: 0 8px 24px rgba(26,26,26,0.08);
  --shadow-lg: 0 24px 64px rgba(26,26,26,0.12);

  --max-content: 1280px;
  --max-prose: 944px;
  --max-narrow: 680px;

  --transition: 250ms ease-out;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.15;
  font-weight: 400;
}
.h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.2;
  font-weight: 400;
}
.h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 500;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-3);
}
.lead { font-size: 18px; line-height: 1.65; color: var(--color-muted); }
.muted { color: var(--color-muted); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 0 var(--s-4);
}
@media (min-width: 1024px) {
  .container { padding: 0 var(--s-6); }
}
.section { padding: var(--s-7) 0; }
@media (min-width: 1024px) {
  .section { padding: var(--s-9) 0; }
}
.grid { display: grid; gap: var(--s-4); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), padding var(--transition);
}
.site-header.scrolled { border-bottom-color: var(--color-line); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s-4) 0;
  max-width: var(--max-content);
  margin: 0 auto;
  padding-left: var(--s-4);
  padding-right: var(--s-4);
}
@media (min-width: 1024px) {
  .nav { padding-left: var(--s-6); padding-right: var(--s-6); }
}
.brand {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--color-ink);
}
.brand span { color: var(--color-accent); }
.nav-links {
  display: none;
  align-items: center;
  gap: var(--s-5);
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  font-size: 14px;
  color: var(--color-ink);
  position: relative;
}
.nav-links a:hover { color: var(--color-accent); }
.nav-cta {
  display: none;
  font-size: 14px;
  padding: var(--s-2) var(--s-4);
  border: 1px solid var(--color-ink);
  border-radius: var(--radius-sm);
  color: var(--color-ink);
}
.nav-cta:hover {
  background: var(--color-ink);
  color: var(--color-bg);
}
@media (min-width: 1024px) {
  .nav-cta { display: inline-flex; }
}
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--s-2);
}
.menu-toggle span {
  width: 20px;
  height: 1.5px;
  background: var(--color-ink);
  transition: transform var(--transition);
}
@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  padding: var(--s-7) var(--s-4);
  transform: translateY(-100%);
  transition: transform 300ms ease-out;
  z-index: 49;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-ink);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--color-line);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--color-highlight);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: var(--color-ink);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-ink);
}
.btn-secondary:hover {
  background: var(--color-ink);
  color: var(--color-bg);
}
.btn-text {
  padding: 0;
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  font-size: 14px;
}
.btn-text:hover { color: var(--color-highlight); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--s-8) 0 var(--s-9);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: var(--s-8); }
}
.hero-copy { max-width: 560px; }
.hero-copy .eyebrow { color: var(--color-accent); }
.hero-copy h1 {
  margin: 0 0 var(--s-4);
}
.hero-copy .lead { margin: 0 0 var(--s-5); }
.hero-ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--color-accent-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-accent-2) 0%, var(--color-accent) 100%);
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 18px;
  text-align: center;
  padding: var(--s-5);
}

/* ---------- Philosophy / 3-column feature ---------- */
.philosophy {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.philosophy-header {
  text-align: center;
  margin-bottom: var(--s-7);
  max-width: var(--max-narrow);
  margin-left: auto;
  margin-right: auto;
}
.philosophy-card {
  padding: var(--s-5);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
}
.philosophy-card .num {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--s-3);
}
.philosophy-card h3 { margin-bottom: var(--s-2); }

/* ---------- Treatments preview ---------- */
.treatments-preview .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-6);
}
.treatment-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.treatment-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.treatment-card-image {
  aspect-ratio: 4 / 3;
  background: var(--color-accent-2);
  position: relative;
  overflow: hidden;
}
.treatment-card-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.treatment-card:hover .treatment-card-image img {
  transform: scale(1.04);
}
.treatment-card-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-surface);
  font-family: var(--font-heading);
  font-size: 15px;
  background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
}
.treatment-card-body {
  padding: var(--s-4) var(--s-4) var(--s-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.treatment-card .tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-2);
}
.treatment-card h3 { margin-bottom: var(--s-2); }
.treatment-card p { color: var(--color-muted); margin: 0 0 var(--s-4); font-size: 15px; }
.treatment-card .learn-more {
  margin-top: auto;
  font-size: 14px;
  color: var(--color-highlight);
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
}
.treatment-card .learn-more:hover { gap: var(--s-2); }

/* ---------- Signature block ---------- */
.signature {
  background: var(--color-highlight);
  color: var(--color-bg);
}
.signature .container {
  display: grid;
  gap: var(--s-5);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .signature .container { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
.signature .eyebrow { color: var(--color-accent-2); }
.signature h2 { color: var(--color-bg); margin-bottom: var(--s-3); }
.signature p { color: rgba(247, 243, 238, 0.85); margin: 0 0 var(--s-5); font-size: 17px; }
.signature .btn-primary {
  background: var(--color-bg);
  color: var(--color-highlight);
}
.signature .btn-primary:hover {
  background: var(--color-accent-2);
  color: var(--color-ink);
}
.signature-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-2) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 16px;
  padding: var(--s-5);
  text-align: center;
}

/* ---------- Tech / Accreditation ---------- */
.tech-strip {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--s-6) 0;
}
.tech-strip .inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-5);
}
.tech-badge {
  text-align: center;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.tech-badge strong {
  display: block;
  color: var(--color-ink);
  font-family: var(--font-heading);
  font-size: 20px;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 2px;
  font-weight: 500;
}

/* ---------- Visit / Location ---------- */
.visit {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
@media (min-width: 1024px) {
  .visit { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
.visit-map {
  aspect-ratio: 4 / 3;
  background: var(--color-accent-2);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.visit-map-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  font-family: var(--font-heading);
  font-size: 15px;
  background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent));
}
.visit-info h2 { margin-bottom: var(--s-4); }
.visit-row {
  display: flex;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--color-line);
}
.visit-row:last-child { border-bottom: 0; }
.visit-label {
  width: 100px;
  flex-shrink: 0;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  padding-top: 4px;
}
.visit-value { flex: 1; font-size: 16px; line-height: 1.6; }
.visit-value a { border-bottom: 1px solid currentColor; }

/* ---------- FAQ preview ---------- */
.faq-preview { background: var(--color-bg); }
.faq-item {
  border-bottom: 1px solid var(--color-line);
  padding: var(--s-5) 0;
}
.faq-item:last-child { border-bottom: 0; }
.faq-item h3 { margin-bottom: var(--s-2); font-family: var(--font-body); font-weight: 500; font-size: 18px; }
.faq-item p { margin: 0; color: var(--color-muted); line-height: 1.7; }

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  background: var(--color-ink);
  color: var(--color-bg);
}
.final-cta h2 {
  color: var(--color-bg);
  margin-bottom: var(--s-4);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta p {
  color: rgba(247, 243, 238, 0.7);
  margin: 0 auto var(--s-6);
  max-width: 560px;
  font-size: 17px;
}
.final-cta .btn-primary {
  background: var(--color-bg);
  color: var(--color-ink);
}
.final-cta .btn-primary:hover {
  background: var(--color-accent-2);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  padding: var(--s-7) 0 var(--s-5);
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-6);
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand .brand { display: block; margin-bottom: var(--s-3); }
.footer-brand p { color: var(--color-muted); max-width: 320px; margin: 0 0 var(--s-3); line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.footer-col ul li { margin-bottom: var(--s-2); }
.footer-col a { color: var(--color-ink); }
.footer-col a:hover { color: var(--color-accent); }
.footer-bottom {
  border-top: 1px solid var(--color-line);
  padding-top: var(--s-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  justify-content: space-between;
  color: var(--color-muted);
  font-size: 12px;
}

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  right: var(--s-4);
  bottom: var(--s-4);
  z-index: 40;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
@media (min-width: 1024px) {
  .wa-float {
    right: var(--s-5);
    bottom: var(--s-5);
  }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mb-5 { margin-bottom: var(--s-5); }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  padding: var(--s-2) var(--s-3);
  background: var(--color-ink);
  color: var(--color-bg);
  z-index: 100;
}
.skip-link:focus { top: 0; }

/* ---------- Treatment pages ---------- */
.tx-hero { padding: var(--s-7) 0 var(--s-6); }
.tx-hero .container { display: grid; grid-template-columns: 1fr; gap: var(--s-6); align-items: center; }
@media (min-width: 1024px) { .tx-hero .container { grid-template-columns: 1.1fr 1fr; gap: var(--s-8); } }
.tx-hero h1 { margin: var(--s-3) 0 var(--s-4); }
.tx-hero .lead { margin-bottom: var(--s-5); }
.tx-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-4); margin-top: var(--s-5); padding-top: var(--s-4); border-top: 1px solid var(--color-line); }
.tx-meta .k { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 4px; }
.tx-meta .v { font-family: var(--font-heading); font-size: 20px; }
.tx-image { aspect-ratio: 4/5; background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; color: var(--color-bg); font-family: var(--font-heading); padding: var(--s-5); text-align: center; }
.tx-section { padding: var(--s-7) 0; border-top: 1px solid var(--color-line); }
.tx-section h2 { margin-bottom: var(--s-5); }
.tx-prose { max-width: var(--max-prose); margin: 0 auto; }
.tx-points { display: grid; grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-5); }
@media (min-width: 768px) { .tx-points { grid-template-columns: repeat(2, 1fr); } }
.tx-point { padding: var(--s-4); background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius-md); }
.tx-point .num { font-family: var(--font-heading); color: var(--color-accent); font-size: 14px; letter-spacing: 0.1em; display: block; margin-bottom: var(--s-2); }
.tx-point h3 { margin-bottom: var(--s-2); font-size: 18px; }
.tx-point p { color: var(--color-muted); margin: 0; font-size: 15px; line-height: 1.7; }
.tx-steps { display: grid; grid-template-columns: 1fr; gap: var(--s-4); counter-reset: step; }
@media (min-width: 768px) { .tx-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tx-steps { grid-template-columns: repeat(4, 1fr); } }
.tx-step { padding: var(--s-4); background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius-md); counter-increment: step; position: relative; }
.tx-step::before { content: counter(step, decimal-leading-zero); font-family: var(--font-heading); font-size: 32px; color: var(--color-accent-2); display: block; margin-bottom: var(--s-2); }
.tx-step h3 { font-size: 16px; margin-bottom: var(--s-2); }
.tx-step p { color: var(--color-muted); font-size: 14px; margin: 0; line-height: 1.6; }
.tx-compare { width: 100%; border-collapse: collapse; font-size: 15px; }
.tx-compare th, .tx-compare td { padding: var(--s-3) var(--s-4); text-align: left; border-bottom: 1px solid var(--color-line); vertical-align: top; }
.tx-compare th { background: var(--color-surface); font-weight: 500; color: var(--color-accent); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; }
.tx-compare td:first-child { font-weight: 500; width: 120px; }
.tx-price-card { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius-md); padding: var(--s-5); margin-top: var(--s-5); display: flex; flex-wrap: wrap; gap: var(--s-4); align-items: center; justify-content: space-between; }
.tx-price-card .price-main { font-family: var(--font-heading); font-size: 28px; color: var(--color-highlight); }
.tx-price-card .price-note { color: var(--color-muted); font-size: 14px; margin-top: 4px; }
.tx-disclaimer { background: var(--color-surface); border-left: 3px solid var(--color-warning); padding: var(--s-4); font-size: 14px; color: var(--color-muted); line-height: 1.7; margin: var(--s-5) 0; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.related-treatments { padding: var(--s-7) 0; background: var(--color-surface); }
.related-treatments h2 { margin-bottom: var(--s-5); }

/* ---------- Blog ---------- */
.blog-hero { padding: var(--s-8) 0 var(--s-6); text-align: center; }
.blog-hero h1 { margin: var(--s-3) auto var(--s-4); }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { background: var(--color-surface); border: 1px solid var(--color-line); border-radius: var(--radius-md); overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.blog-card-image { aspect-ratio: 16/10; background: linear-gradient(135deg, var(--color-accent-2), var(--color-accent)); display: flex; align-items: center; justify-content: center; color: var(--color-bg); font-family: var(--font-heading); font-size: 13px; padding: var(--s-3); text-align: center; }
.blog-card-body { padding: var(--s-4) var(--s-4) var(--s-5); display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { font-size: 12px; color: var(--color-muted); letter-spacing: 0.05em; margin-bottom: var(--s-2); }
.blog-card h3 { font-size: 18px; margin-bottom: var(--s-2); font-family: var(--font-heading); font-weight: 500; line-height: 1.3; }
.blog-card p { color: var(--color-muted); font-size: 14px; margin: 0 0 var(--s-3); line-height: 1.6; }
.blog-card .more { margin-top: auto; font-size: 13px; color: var(--color-highlight); }

.blog-post { max-width: var(--max-narrow); margin: 0 auto; padding: var(--s-7) var(--s-4); }
.blog-post h1 { margin: var(--s-4) 0 var(--s-3); }
.blog-post .post-meta { font-size: 13px; color: var(--color-muted); margin-bottom: var(--s-6); }
.blog-post p { font-size: 17px; line-height: 1.8; margin: 0 0 var(--s-4); }
.blog-post h2 { font-size: 24px; margin-top: var(--s-6); margin-bottom: var(--s-3); }
.blog-post h3 { font-size: 19px; margin-top: var(--s-5); margin-bottom: var(--s-3); }
.blog-post ul, .blog-post ol { list-style: disc; padding-left: var(--s-4); margin: 0 0 var(--s-4); }
.blog-post ol { list-style: decimal; }
.blog-post li { margin-bottom: var(--s-2); font-size: 17px; line-height: 1.8; }

/* ---------- Prose (privacy / terms / long-form) ---------- */
.prose h2 { font-size: 22px; margin-top: var(--s-6); margin-bottom: var(--s-3); color: var(--color-highlight); }
.prose h3 { font-size: 18px; margin-top: var(--s-4); margin-bottom: var(--s-2); }
.prose p { font-size: 16px; line-height: 1.8; margin: 0 0 var(--s-3); color: var(--color-ink); }
.prose ul, .prose ol { list-style: disc; padding-left: var(--s-4); margin: 0 0 var(--s-4); }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: var(--s-2); font-size: 16px; line-height: 1.8; }
.prose a { color: var(--color-accent); text-decoration: underline; }
.prose a:hover { color: var(--color-highlight); }
.prose strong { color: var(--color-ink); font-weight: 600; }

/* ---------- Respect reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ---------- Real images styling ---------- */
.hero-image { position: relative; overflow: hidden; border-radius: 12px; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tx-image { position: relative; overflow: hidden; border-radius: 8px; }
.tx-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tx-image-fallback { background: linear-gradient(135deg,var(--color-accent-2),var(--color-accent)); display:flex; align-items:center; justify-content:center; min-height:280px; color:var(--color-bg); font-family:var(--font-heading); padding:var(--s-4); text-align:center; }
.team-avatar { position: relative; overflow: hidden; }

/* =========================================================
   v3 Additions — Boutique Refinement
   2026-04 / micro-interactions, trust signals, sticky CTA,
   gold-foil details, exit popup, reviews block, etc.
   ========================================================= */

/* --- Gold-foil hairline --- */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-2), transparent);
  margin: var(--s-5) auto;
  max-width: 240px;
  border: 0;
}
.gold-line {
  display: inline-block;
  width: 32px; height: 1px;
  background: linear-gradient(90deg, var(--color-accent-2), transparent);
  vertical-align: middle;
  margin: 0 var(--s-2);
}

/* --- Eyebrow refinement --- */
.eyebrow { letter-spacing: 0.25em; font-weight: 600; }
.eyebrow::before { content: "— "; color: var(--color-accent-2); }

/* --- Heading refinement --- */
.display, .h1, .h2 { letter-spacing: -0.02em; }
.serif-italic {
  font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

/* --- Drop cap (about/blog) --- */
.dropcap::first-letter {
  font-family: "Playfair Display", serif;
  font-size: 4.2em;
  float: left;
  line-height: 0.85;
  padding: 4px 12px 0 0;
  color: var(--color-accent);
  font-weight: 500;
}

/* --- Scroll reveal --- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity 600ms ease-out, transform 600ms ease-out; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- Count-up number --- */
.stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  color: var(--color-highlight);
  font-feature-settings: "tnum" 1;
}
.stat-label { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--color-muted); }

/* --- Treatment card hover refinement --- */
.treatment-card { transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.treatment-card:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent-2); }
.treatment-card:hover .treatment-card-image img { transform: scale(1.04); }
.treatment-card-image { overflow: hidden; }
.treatment-card-image img { transition: transform 700ms ease-out; }

/* --- Sticky bottom CTA bar (mobile) --- */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(247, 243, 238, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 8px;
  transform: translateY(100%);
  transition: transform 300ms ease-out;
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta a {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 14px;
  font-size: 14px; font-weight: 500;
  border-radius: var(--radius-sm);
  text-align: center;
  letter-spacing: 0.02em;
}
.sticky-cta .sb-primary { background: var(--color-whatsapp); color: #fff; }
.sticky-cta .sb-secondary { background: var(--color-highlight); color: var(--color-bg); }
@media (min-width: 1024px) { .sticky-cta { display: none; } }
@media (max-width: 1023px) {
  .wa-float { bottom: 84px; }
  body { padding-bottom: 0; }
}

/* --- Exit-intent popup --- */
.exit-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26,26,26,0.55);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 250ms ease-out;
}
.exit-overlay.show { display: flex; }
.exit-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  max-width: 460px; width: 100%;
  padding: var(--s-7) var(--s-5);
  position: relative;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid var(--color-line);
}
.exit-card .close {
  position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px;
  background: transparent; border: 0;
  font-size: 20px; cursor: pointer;
  color: var(--color-muted);
  display: flex; align-items: center; justify-content: center;
}
.exit-card .close:hover { color: var(--color-ink); }
.exit-card .badge {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: var(--s-3);
}
.exit-card h3 { font-family: var(--font-heading); font-size: 26px; margin-bottom: var(--s-3); color: var(--color-highlight); }
.exit-card p { color: var(--color-muted); font-size: 15px; margin-bottom: var(--s-5); }
.exit-card .btn { width: 100%; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

/* --- Trust strip (badges row with hover) --- */
.trust-row {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  align-items: stretch;
  padding: var(--s-5) 0;
  justify-content: center;
}
.trust-pill {
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--color-ink);
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.trust-pill:hover { border-color: var(--color-accent-2); box-shadow: var(--shadow-sm); }
.trust-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-ok); }

/* --- Google Reviews block --- */
.reviews {
  background: linear-gradient(180deg, var(--color-bg), var(--color-surface));
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--s-7) 0;
}
.reviews-header {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  margin-bottom: var(--s-6);
  gap: var(--s-2);
}
.reviews-rating {
  display: inline-flex; align-items: center; gap: var(--s-3);
  font-size: 16px;
  color: var(--color-ink);
}
.reviews-rating .stars { color: #E5A93D; letter-spacing: 0.1em; font-size: 18px; }
.reviews-rating .count { color: var(--color-muted); font-size: 13px; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
@media (min-width: 720px)  { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--s-5);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.review-stars { color: #E5A93D; font-size: 14px; letter-spacing: 0.1em; }
.review-quote { font-size: 15px; color: var(--color-ink); line-height: 1.65; }
.review-author { font-size: 13px; color: var(--color-muted); display: flex; gap: var(--s-2); align-items: center; margin-top: auto; padding-top: var(--s-3); border-top: 1px solid var(--color-line); }
.review-author strong { color: var(--color-ink); font-weight: 500; }

/* --- Quiz / Comparator UI --- */
.quiz-wrap { max-width: 720px; margin: 0 auto; }
.quiz-progress { display: flex; gap: 6px; margin-bottom: var(--s-5); }
.quiz-progress span { flex: 1; height: 3px; background: var(--color-line); border-radius: 2px; transition: background 250ms; }
.quiz-progress span.done { background: var(--color-highlight); }
.quiz-progress span.active { background: var(--color-accent); }
.quiz-step { display: none; animation: fadeIn 350ms ease-out; }
.quiz-step.active { display: block; }
.quiz-q {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: var(--s-2);
  color: var(--color-highlight);
}
.quiz-sub { color: var(--color-muted); font-size: 15px; margin-bottom: var(--s-5); }
.quiz-options { display: grid; gap: var(--s-3); grid-template-columns: 1fr; }
@media (min-width: 640px) { .quiz-options.grid-2 { grid-template-columns: repeat(2, 1fr); } }
.quiz-option {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--s-4);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  text-align: left;
  display: flex; flex-direction: column; gap: 4px;
  font: inherit;
  width: 100%;
}
.quiz-option:hover { border-color: var(--color-accent-2); transform: translateY(-2px); }
.quiz-option.selected { border-color: var(--color-highlight); background: rgba(46,74,62,0.05); }
.quiz-option strong { font-size: 16px; color: var(--color-ink); font-weight: 500; }
.quiz-option span { font-size: 13px; color: var(--color-muted); }
.quiz-nav { display: flex; gap: var(--s-3); margin-top: var(--s-6); justify-content: space-between; }
.quiz-nav .btn-text { color: var(--color-muted); }
.quiz-result {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: var(--s-6);
  margin-top: var(--s-5);
  display: none;
}
.quiz-result.show { display: block; animation: fadeIn 400ms; }
.quiz-rec {
  border-bottom: 1px solid var(--color-line);
  padding: var(--s-4) 0;
  display: flex; gap: var(--s-3); align-items: flex-start;
}
.quiz-rec:last-child { border-bottom: 0; }
.quiz-rec .num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-highlight);
  color: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
}
.quiz-rec h4 { font-family: var(--font-heading); font-size: 18px; margin-bottom: 4px; color: var(--color-ink); font-weight: 500; }
.quiz-rec p { font-size: 14px; color: var(--color-muted); line-height: 1.6; }

/* --- Comparator slider --- */
.comp-controls {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--s-5);
  margin-bottom: var(--s-5);
}
.comp-row { margin-bottom: var(--s-4); }
.comp-row:last-child { margin-bottom: 0; }
.comp-row label { display: block; font-size: 13px; color: var(--color-accent); letter-spacing: 0.05em; margin-bottom: var(--s-2); font-weight: 500; }
.comp-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.comp-pill {
  padding: 8px 16px;
  border: 1px solid var(--color-line);
  background: var(--color-bg);
  border-radius: 999px;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
}
.comp-pill:hover { border-color: var(--color-accent-2); }
.comp-pill.active { background: var(--color-highlight); color: var(--color-bg); border-color: var(--color-highlight); }
.comp-results { display: grid; grid-template-columns: 1fr; gap: var(--s-4); }
@media (min-width: 720px)  { .comp-results { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .comp-results { grid-template-columns: repeat(3, 1fr); } }
.comp-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
  padding: var(--s-5);
  position: relative;
  transition: all 350ms ease-out;
}
.comp-card.match { border-color: var(--color-highlight); box-shadow: var(--shadow-md); }
.comp-card .match-tag {
  position: absolute; top: 12px; right: 12px;
  background: var(--color-highlight); color: var(--color-bg);
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
  display: none; letter-spacing: 0.1em;
}
.comp-card.match .match-tag { display: inline-block; }
.comp-card h3 { font-family: var(--font-heading); font-size: 20px; margin-bottom: var(--s-2); color: var(--color-ink); }
.comp-card .meta { display: flex; gap: var(--s-3); font-size: 12px; color: var(--color-muted); margin-bottom: var(--s-3); flex-wrap: wrap; }
.comp-card .meta span { background: var(--color-bg); padding: 4px 10px; border-radius: 4px; }
.comp-card p { font-size: 14px; color: var(--color-muted); margin-bottom: var(--s-3); line-height: 1.6; }
.comp-card a { font-size: 13px; color: var(--color-accent); border-bottom: 1px solid currentColor; }
.comp-card.dim { opacity: 0.4; }

/* --- Footer brand seal --- */
.footer-seal {
  text-align: center;
  padding: var(--s-5) 0 var(--s-4);
  border-top: 1px solid rgba(232, 223, 211, 0.15);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 13px;
  color: var(--color-accent-2);
  letter-spacing: 0.1em;
  margin-top: var(--s-5);
}
.footer-seal::before, .footer-seal::after {
  content: ""; display: inline-block;
  width: 24px; height: 1px;
  background: rgba(212, 184, 150, 0.4);
  vertical-align: middle;
  margin: 0 var(--s-3);
}

/* --- Hero v3 (cinematic) --- */
.hero-v3 {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--color-bg);
}
.hero-v3-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2E4A3E 0%, #4A7C6D 40%, #8B6F47 100%);
  background-size: cover; background-position: center;
  filter: brightness(0.65);
  animation: kenBurns 18s ease-in-out infinite alternate;
}
.hero-v3-bg.has-image { background-image: url('/images/hero-clinic.jpg'); }
.hero-v3-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.05) 0%, rgba(26,26,26,0.55) 100%);
}
@keyframes kenBurns {
  0%   { transform: scale(1.0)  translate(0,0); }
  100% { transform: scale(1.08) translate(-1%, -2%); }
}
.hero-v3 .container { position: relative; z-index: 2; padding-top: var(--s-8); padding-bottom: var(--s-8); }
.hero-v3 .eyebrow { color: var(--color-accent-2); }
.hero-v3 .display { color: #fff; font-weight: 400; }
.hero-v3 .lead { color: rgba(255,255,255,0.88); max-width: 580px; }
.hero-v3 .tagline { color: var(--color-accent-2); }
.hero-v3 .hero-ctas { margin-top: var(--s-5); flex-wrap: wrap; gap: var(--s-3); display: flex; }
.hero-v3 .btn-primary { background: var(--color-bg); color: var(--color-ink); }
.hero-v3 .btn-primary:hover { background: var(--color-accent-2); color: var(--color-ink); }
.hero-v3 .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero-v3 .btn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.hero-v3-scroll {
  position: absolute; bottom: var(--s-5); left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bob 2.4s ease-in-out infinite;
}
.hero-v3-scroll::after { content: ""; width: 1px; height: 22px; background: rgba(255,255,255,0.4); }
@keyframes bob { 0%,100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* --- Stat bar --- */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  padding: var(--s-6) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}
@media (min-width: 720px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }

/* --- Process timeline --- */
.timeline {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .timeline { grid-template-columns: repeat(4, 1fr); } }
.timeline-step {
  position: relative;
  padding: var(--s-4);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-md);
}
.timeline-step .step-num {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 8px;
}
.timeline-step h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--color-ink);
}
.timeline-step p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.6;
}

/* --- WhatsApp float refinement --- */
.wa-float {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.32);
  transition: transform 250ms, box-shadow 250ms;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45); }

/* --- Body padding for sticky CTA on mobile --- */
@media (max-width: 1023px) {
  body.has-sticky-cta { padding-bottom: 84px; }
}

/* --- Cursor refinement (desktop) --- */
@media (min-width: 1024px) and (hover: hover) {
  .btn, .nav-cta, .treatment-card, .quiz-option, .comp-pill {
    cursor: pointer;
  }
}

/* --- Section transitions --- */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  padding: var(--s-5) 0;
}
.section-divider::before, .section-divider::after {
  content: ""; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-line), transparent);
  max-width: 200px;
}
.section-divider span {
  margin: 0 var(--s-4);
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--color-accent);
  font-size: 14px;
}

/* =========================================================
   v5: Real logo integration
   ========================================================= */
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo img {
  height: 32px;
  width: auto;
  display: block;
}
.brand-logo .logo-wordmark {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--color-ink);
}
.brand-logo .logo-wordmark span { color: var(--color-accent); }
@media (max-width: 640px) {
  .brand-logo img { height: 28px; }
  .brand-logo .logo-wordmark { font-size: 18px; }
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin-bottom: var(--s-3);
  opacity: 0.92;
}

.hero-logo-img {
  width: 180px;
  height: auto;
  margin-bottom: var(--s-4);
  opacity: 0.95;
}
@media (min-width: 1024px) {
  .hero-logo-img { width: 220px; }
}

/* =========================================================
   v9: Logo size reduction + branded card visuals
   ========================================================= */

/* --- Smaller logo footer / hero (override earlier sizes) --- */
.footer-logo-img {
  height: 40px !important;
  width: auto;
  display: block;
  margin-bottom: var(--s-3);
  opacity: 0.92;
}
.hero-logo-img {
  width: 110px !important;
  height: auto;
  margin-bottom: var(--s-3);
  opacity: 0.95;
}
@media (min-width: 1024px) {
  .hero-logo-img { width: 140px !important; }
}

/* --- Branded card visual (treatment + blog) --- */
.card-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #F7F3EE 0%, #EFE7DA 50%, #E8DFD3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.card-visual::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 30%, rgba(212, 184, 150, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(166, 137, 108, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.card-visual::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent-2), transparent);
}
.card-visual svg {
  position: relative;
  z-index: 1;
  width: 56%;
  height: auto;
  max-width: 200px;
  opacity: 0.85;
}
.card-visual .card-mark {
  position: absolute;
  top: 14px; right: 14px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 12px;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  z-index: 2;
}
.treatment-card .card-visual { border-radius: 0; }
.blog-card .card-visual { aspect-ratio: 16 / 9; }

/* On hover */
.treatment-card:hover .card-visual,
.blog-card:hover .card-visual {
  background: linear-gradient(135deg, #F7F3EE 0%, #E8DFD3 50%, #D4B896 100%);
}
.treatment-card:hover .card-visual svg,
.blog-card:hover .card-visual svg {
  opacity: 1;
  transform: scale(1.04);
  transition: transform 600ms ease-out, opacity 250ms;
}

/* Hide old placeholder text — we use SVG */
.treatment-card-image-placeholder { display: none !important; }

/* --- v9: hero gradient enhancement (works without photo) --- */
.hero-v3-bg {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(212, 184, 150, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(46, 74, 62, 0.4) 0%, transparent 60%),
    linear-gradient(135deg, #2E4A3E 0%, #4A5942 35%, #8B6F47 100%) !important;
  filter: brightness(0.85);
}

/* =========================================================
   v10: Comprehensive size & alignment refinement
   - Logo smaller everywhere
   - SVG icons smaller in cards
   - Better spacing & alignment
   ========================================================= */

/* --- Nav brand smaller --- */
.brand {
  font-size: 18px !important;
  letter-spacing: 0.04em;
}
@media (min-width: 1024px) {
  .brand { font-size: 20px !important; }
}

/* --- Footer logo MUCH smaller --- */
.footer-logo-img {
  height: 32px !important;
  width: auto;
  display: block;
  margin-bottom: var(--s-3);
  opacity: 0.85;
}

/* --- Hero logo (about/team) much smaller --- */
.hero-logo-img {
  width: 80px !important;
  height: auto;
  margin: 0 auto var(--s-3);
  opacity: 0.92;
  display: block;
}
@media (min-width: 1024px) {
  .hero-logo-img { width: 100px !important; }
}

/* --- SVG icons in cards SMALLER --- */
.card-visual svg {
  width: 38% !important;
  max-width: 140px !important;
  height: auto;
  opacity: 0.75;
}
.card-visual {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #FAF6F0 0%, #F2EAD9 60%, #E8DFD3 100%);
}
.blog-card .card-visual {
  aspect-ratio: 16 / 9;
}
.card-visual .card-mark {
  font-size: 10px;
  top: 10px; right: 10px;
  opacity: 0.7;
}

/* --- Better treatment card overall sizing --- */
.treatment-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-line);
}
.treatment-card-body {
  padding: var(--s-4) !important;
}
.treatment-card-body h3 {
  font-size: 18px !important;
  margin-bottom: var(--s-2);
}
.treatment-card-body p {
  font-size: 14px !important;
  line-height: 1.55;
}
.treatment-card .tag {
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* --- Treatment hero card image right column smaller --- */
.tx-image {
  max-width: 420px;
  margin: 0 auto;
}
.tx-image .card-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
}
.tx-image .card-visual svg {
  width: 50% !important;
  max-width: 180px !important;
}

/* --- Stats bar tighter --- */
.stats-bar {
  padding: var(--s-5) 0 !important;
}
.stat-num {
  font-size: clamp(28px, 3vw, 40px) !important;
}
.stat-label {
  font-size: 11px;
}

/* --- Hero v3 spacing & alignment --- */
.hero-v3 {
  min-height: 70vh !important;
}
.hero-v3 .display {
  font-size: clamp(32px, 5vw, 56px) !important;
  line-height: 1.15;
}
.hero-v3 .lead {
  font-size: 15px !important;
  line-height: 1.6;
}
.hero-v3 .container { padding-top: var(--s-7); padding-bottom: var(--s-7); }

/* --- Reviews: proper spacing --- */
.review-card {
  padding: var(--s-4) !important;
}
.review-quote {
  font-size: 14px !important;
  line-height: 1.6;
}

/* --- Section headers tighter --- */
.h2 {
  font-size: clamp(22px, 2.6vw, 30px) !important;
  line-height: 1.25;
}
.h3 { font-size: 17px; }

/* --- Container max width tighter --- */
.container {
  max-width: 1140px !important;
}

/* --- Page hero alignment fix --- */
.page-hero {
  padding: var(--s-6) var(--s-4) var(--s-5) !important;
  text-align: center;
}
.page-hero h1 { margin: var(--s-3) auto var(--s-3); }

/* --- Team avatar smaller --- */
.team-avatar {
  font-size: 14px !important;
  padding: var(--s-3) !important;
}
.team-name { font-size: 20px !important; }

/* --- Blog card body cleaner --- */
.blog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
}
.blog-card-body {
  padding: var(--s-4) !important;
}
.blog-card-body h3 {
  font-size: 17px !important;
  line-height: 1.4;
  margin: var(--s-2) 0;
}
.blog-card-body p {
  font-size: 13px !important;
  line-height: 1.55;
  color: var(--color-muted);
}
.blog-card-body .meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  text-transform: uppercase;
}

/* --- Footer brand block alignment --- */
.footer-brand .brand {
  font-size: 16px !important;
  margin-bottom: var(--s-2);
  display: inline-block;
}
.footer-brand p {
  font-size: 13px;
  line-height: 1.5;
}

/* --- Section padding more reasonable --- */
.section { padding: var(--s-6) 0 !important; }
@media (min-width: 1024px) {
  .section { padding: var(--s-7) 0 !important; }
}

/* --- Grid gap tighter --- */
.grid { gap: var(--s-3) !important; }
@media (min-width: 1024px) {
  .grid { gap: var(--s-4) !important; }
}

/* --- WhatsApp float smaller on mobile --- */
.wa-float {
  width: 52px !important;
  height: 52px !important;
}
.wa-float svg { width: 26px; height: 26px; }

/* =========================================================
   v11: CLEAN PROFESSIONAL OVERRIDE — final
   Style philosophy: Aesop / Augustinus Bader / Le Labo
   - Remove SVG icon cards entirely
   - Pure typographic cards
   - Tighter alignment, smaller logos, more white space
   ========================================================= */

/* Hide the SVG visual blocks completely */
.card-visual {
  display: none !important;
}

/* Cleaner treatment card - text only */
.treatment-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 4px !important;
  overflow: hidden;
  display: block;
  transition: border-color 250ms ease, transform 250ms ease;
}
.treatment-card:hover {
  border-color: var(--color-accent-2);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,26,26,0.04);
}
.treatment-card-body {
  padding: 28px 24px !important;
}
.treatment-card-body .tag {
  display: inline-block;
  font-size: 10px !important;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-weight: 500;
}
.treatment-card-body h3 {
  font-family: var(--font-heading) !important;
  font-size: 19px !important;
  font-weight: 400 !important;
  margin: 0 0 10px !important;
  letter-spacing: -0.01em;
  color: var(--color-ink) !important;
  line-height: 1.3 !important;
}
.treatment-card-body p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: var(--color-muted) !important;
  margin: 0 0 16px !important;
}
.treatment-card-body .learn-more {
  font-size: 12px !important;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
  display: inline-block;
  padding-bottom: 1px;
}

/* Cleaner blog card */
.blog-card {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 4px;
  overflow: hidden;
  display: block;
  padding: 28px 24px;
  transition: border-color 250ms ease;
}
.blog-card:hover {
  border-color: var(--color-accent-2);
}
.blog-card-image {
  display: none !important;
}
.blog-card-body {
  padding: 0 !important;
}
.blog-card-body .meta {
  font-size: 10px !important;
  letter-spacing: 0.18em;
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card-body h3 {
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  margin: 0 0 10px !important;
  color: var(--color-ink);
}
.blog-card-body p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: var(--color-muted);
  margin: 0 0 14px !important;
}
.blog-card-body .more {
  font-size: 12px !important;
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
}

/* Treatment hero image area: hidden too */
.tx-image {
  display: none !important;
}

/* Treatment hero re-layout (full width, no right column) */
.tx-hero .container {
  display: block !important;
  max-width: 760px !important;
  text-align: left !important;
}
.tx-hero {
  padding: 64px 24px !important;
}

/* Logo sizes - DEFINITIVE */
.brand {
  font-family: var(--font-heading);
  font-size: 17px !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink) !important;
  font-weight: 400;
}
.brand span { color: var(--color-accent); }
.footer-brand .brand { font-size: 15px !important; }

/* Footer logo image - VERY small or hidden */
.footer-logo-img {
  height: 24px !important;
  margin-bottom: 14px !important;
  opacity: 0.7;
}

/* Hero logo (about/team) — small, decorative */
.hero-logo-img {
  width: 64px !important;
  height: auto;
  margin: 0 auto 20px !important;
  opacity: 0.75;
  display: block;
}
@media (min-width: 1024px) {
  .hero-logo-img { width: 72px !important; }
}

/* Container - tighter, more focused */
.container {
  max-width: 1100px !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
}

/* Hero v3 - slightly less dramatic */
.hero-v3 {
  min-height: 64vh !important;
}
.hero-v3 .container {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}
.hero-v3 .display {
  font-size: clamp(28px, 4.5vw, 48px) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.02em;
  font-weight: 400 !important;
}
.hero-v3 .lead {
  font-size: 14px !important;
  line-height: 1.6 !important;
  max-width: 520px;
}
.hero-v3 .eyebrow {
  font-size: 11px !important;
  letter-spacing: 0.25em;
}
.hero-v3 .tagline {
  font-size: clamp(14px, 1.6vw, 18px) !important;
}
.hero-v3 .btn {
  font-size: 13px !important;
  padding: 12px 22px !important;
}

/* Stats bar - cleaner */
.stats-bar {
  padding: 36px 0 !important;
}
.stats-grid { gap: 20px !important; }
.stat-num {
  font-size: clamp(24px, 2.6vw, 32px) !important;
  font-weight: 400 !important;
  line-height: 1;
}
.stat-label {
  font-size: 10px !important;
  letter-spacing: 0.2em;
  margin-top: 6px;
}

/* Section headings */
.h2 {
  font-size: clamp(22px, 2.4vw, 30px) !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.02em;
}
.h3 {
  font-size: 16px !important;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.eyebrow {
  font-size: 10px !important;
  letter-spacing: 0.25em !important;
  font-weight: 500;
  color: var(--color-accent);
}
.lead {
  font-size: 15px !important;
  line-height: 1.6;
}

/* Section padding */
.section { padding: 56px 0 !important; }
@media (min-width: 1024px) {
  .section { padding: 80px 0 !important; }
}

/* Page hero (about, team, contact, etc) */
.page-hero {
  padding: 64px 24px 32px !important;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(26px, 3.2vw, 38px) !important;
  font-weight: 400 !important;
  margin: 12px 0 16px !important;
  line-height: 1.25;
}
.page-hero .lead {
  font-size: 14px !important;
  color: var(--color-muted);
}

/* Buttons */
.btn {
  font-size: 13px !important;
  padding: 12px 24px !important;
  letter-spacing: 0.04em;
  border-radius: 2px !important;
  font-weight: 500;
  transition: all 250ms ease;
}

/* Reviews section cleaner */
.reviews { padding: 64px 0 !important; }
.review-card {
  padding: 28px 24px !important;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 4px;
}
.review-quote {
  font-size: 14px !important;
  line-height: 1.65 !important;
  color: var(--color-ink) !important;
}
.review-stars {
  font-size: 13px !important;
  color: #C9A867;
  letter-spacing: 0.2em;
}
.review-author {
  font-size: 12px !important;
  color: var(--color-muted);
  border-top: 1px solid var(--color-line);
  padding-top: 14px !important;
  margin-top: 14px;
}

/* Reviews header */
.reviews-header h2 {
  margin-bottom: 8px !important;
}
.reviews-rating {
  font-size: 13px !important;
  gap: 8px !important;
}
.reviews-rating .stars { font-size: 14px !important; }

/* Trust pills smaller */
.trust-pill {
  padding: 7px 14px !important;
  font-size: 12px !important;
}

/* Tech-strip - more compact */
.tech-strip { padding: 28px 0 !important; }
.tech-badge {
  font-size: 11px !important;
  padding: 8px 12px !important;
}
.tech-badge strong {
  font-size: 13px !important;
}

/* Timeline steps */
.timeline-step {
  padding: 20px !important;
}
.timeline-step h4 { font-size: 15px !important; }
.timeline-step p { font-size: 12.5px !important; }
.timeline-step .step-num {
  font-size: 10px !important;
  letter-spacing: 0.2em;
}

/* Philosophy cards */
.philosophy-card {
  padding: 28px 24px !important;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 4px;
}
.philosophy-card .num {
  font-family: var(--font-heading);
  font-size: 14px !important;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 12px;
}

/* Team cards alignment */
.team-card {
  padding: 32px !important;
  border-radius: 4px !important;
  margin-bottom: 16px !important;
}
.team-avatar {
  font-size: 13px !important;
  padding: 24px !important;
  border-radius: 4px !important;
  aspect-ratio: 4/3;
}
.team-name {
  font-size: 18px !important;
  font-weight: 400 !important;
  margin: 0 0 12px !important;
}
.team-role {
  font-size: 10px !important;
  letter-spacing: 0.25em;
}
.team-bio { font-size: 13.5px !important; line-height: 1.65 !important; }
.team-bio ul li { font-size: 13px !important; }

/* WhatsApp float refined */
.wa-float {
  width: 48px !important;
  height: 48px !important;
}
.wa-float svg { width: 22px; height: 22px; }

/* Sticky CTA refined */
.sticky-cta a {
  font-size: 13px !important;
  padding: 10px 12px !important;
}

/* Footer cleaner */
.site-footer {
  padding: 48px 0 32px !important;
}
.footer-grid {
  gap: 32px !important;
}
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px !important;
}
.footer-col ul li a {
  font-size: 13px !important;
  line-height: 2 !important;
  color: var(--color-muted);
}
.footer-col ul li a:hover { color: var(--color-accent); }
.footer-bottom {
  font-size: 11px !important;
  padding-top: 24px !important;
  margin-top: 32px !important;
  border-top: 1px solid var(--color-line);
}
.footer-seal {
  font-size: 11px !important;
  margin-top: 24px !important;
  letter-spacing: 0.15em;
}
.footer-brand p {
  font-size: 12.5px !important;
  line-height: 1.55;
  margin: 6px 0;
}

/* Nav cleaner */
.site-header { background: rgba(247,243,238,0.96) !important; }
.nav { padding: 16px 24px !important; }
.nav-links { gap: 28px !important; }
.nav-links a {
  font-size: 12.5px !important;
  letter-spacing: 0.04em;
}
.nav-cta {
  font-size: 12px !important;
  padding: 8px 16px !important;
  letter-spacing: 0.05em;
}

/* Gold rule lighter */
.gold-rule {
  margin: 16px auto !important;
  max-width: 80px !important;
  opacity: 0.5;
}

/* Final-CTA section */
.final-cta {
  background: var(--color-highlight) !important;
  color: var(--color-bg);
  padding: 80px 24px !important;
  text-align: center;
}
.final-cta h2 {
  color: var(--color-bg) !important;
  margin-bottom: 16px !important;
}
.final-cta p {
  color: rgba(255,255,255,0.85);
  font-size: 14px !important;
  max-width: 480px;
  margin: 0 auto 24px;
}

/* Treatment page typography */
.tx-hero {
  text-align: left;
  padding: 80px 24px 32px !important;
}
.tx-hero .h1 {
  font-size: clamp(26px, 3.2vw, 38px) !important;
  font-weight: 400 !important;
}
.tx-meta {
  margin-top: 28px !important;
  font-size: 12px !important;
}
.tx-meta .k {
  font-size: 10px !important;
  letter-spacing: 0.2em;
}
.tx-meta .v { font-size: 13px !important; }
.tx-section { padding: 32px 0 !important; }
.tx-prose h2 { margin-bottom: 16px !important; }
.tx-prose p { font-size: 14.5px !important; line-height: 1.7 !important; }
.tx-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}
@media (min-width: 720px) {
  .tx-points { grid-template-columns: repeat(2, 1fr); }
}
.tx-point {
  padding: 20px !important;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 4px;
}
.tx-point .num {
  font-size: 11px !important;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  display: block;
  margin-bottom: 8px;
}
.tx-point h3 { font-size: 15px !important; margin-bottom: 6px; }
.tx-point p { font-size: 13px !important; margin: 0 !important; }

/* Treatment compare table */
.tx-compare {
  font-size: 13px !important;
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
.tx-compare td, .tx-compare th {
  padding: 10px 12px !important;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
}
.tx-compare th {
  font-weight: 500;
  font-size: 11px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
}

/* FAQ items */
.faq-item {
  padding: 20px 0 !important;
  border-bottom: 1px solid var(--color-line);
}
.faq-item h3 {
  font-family: var(--font-heading);
  font-size: 15px !important;
  margin: 0 0 8px !important;
}
.faq-item p {
  font-size: 13.5px !important;
  line-height: 1.6 !important;
  color: var(--color-muted);
  margin: 0 !important;
}

/* Section divider */
.section-divider span {
  font-size: 12px !important;
  letter-spacing: 0.15em;
}

/* Mobile menu cleaner */
.mobile-menu a {
  font-size: 16px !important;
  padding: 12px 0 !important;
  letter-spacing: 0.05em;
}

/* =========================================================
   v12.1: Luxury polish — final professional touches
   ========================================================= */

/* Hero: stronger luxury composition */
.hero-v3 {
  position: relative;
  background: #2E4A3E;
  overflow: hidden;
}
.hero-v3-bg {
  background:
    radial-gradient(ellipse at 25% 0%, rgba(212, 184, 150, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(166, 137, 108, 0.16) 0%, transparent 55%),
    linear-gradient(160deg, #2E4A3E 0%, #3D5447 50%, #5C6F4A 100%) !important;
  filter: none !important;
}
.hero-v3-veil { display: none; }
.hero-v3 .container { z-index: 3; position: relative; }
.hero-v3 .container > div { color: #fff; }
.hero-v3 .lead { color: rgba(255,255,255,0.78) !important; }
.hero-v3 .eyebrow { color: #D4B896 !important; }
.hero-v3 .tagline { color: #D4B896 !important; }
/* Decorative golden hairline in hero */
.hero-v3::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 240px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 184, 150, 0.4), rgba(212, 184, 150, 0.6));
  z-index: 2;
}
.hero-v3::after {
  content: "";
  position: absolute;
  bottom: 14%;
  left: 5%;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, rgba(212, 184, 150, 0.3), transparent);
  z-index: 2;
}
.hero-v3-scroll {
  display: none !important;
}

/* Hero buttons - cleaner */
.hero-v3 .btn-primary {
  background: #D4B896 !important;
  color: #2E2419 !important;
  border: 0 !important;
}
.hero-v3 .btn-primary:hover {
  background: #E4CCAA !important;
}
.hero-v3 .btn-secondary {
  border-color: rgba(255,255,255,0.4) !important;
  color: #fff !important;
}
.hero-v3 .btn-secondary:hover {
  border-color: #fff !important;
  background: rgba(255,255,255,0.06) !important;
}

/* Stats bar — add hairline dividers between stats */
.stats-grid {
  position: relative;
}
@media (min-width: 768px) {
  .stats-grid::before, .stats-grid::after {
    content: "";
    position: absolute;
    top: 10%; bottom: 10%;
    width: 1px;
    background: var(--color-line);
  }
  .stats-grid::before { left: 25%; }
  .stats-grid::after { left: 50%; }
  .stat:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 10%; bottom: 10%;
    right: -2px;
    width: 1px;
    background: var(--color-line);
  }
}
.stat { position: relative; padding: 0 8px; }
.stat-num { color: var(--color-highlight) !important; }
.stat-num span { color: var(--color-muted); font-size: 0.55em; margin-left: 4px; font-weight: 400; }

/* Treatment & Blog cards — refined */
.treatment-card, .blog-card {
  position: relative;
}
.treatment-card::after, .blog-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 350ms ease;
}
.treatment-card:hover::after, .blog-card:hover::after {
  width: 100%;
}
.treatment-card:hover, .blog-card:hover {
  border-color: var(--color-accent-2) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46,74,62,0.05);
}

/* Cleaner section header consistency */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-header .btn-text {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* Reviews — more elegant */
.reviews {
  background: var(--color-bg) !important;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.review-card {
  border-radius: 4px !important;
  background: #fff !important;
  position: relative;
}
.review-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--color-accent-2);
  position: absolute;
  top: 8px; left: 16px;
  line-height: 1;
  opacity: 0.6;
}
.review-quote {
  padding-top: 12px;
}

/* Team avatar — elegant initials/numbers instead of gradient blocks */
.team-avatar {
  background: var(--color-bg) !important;
  border: 1px solid var(--color-line) !important;
  color: var(--color-accent) !important;
  position: relative;
  font-family: var(--font-heading) !important;
  font-style: italic;
  letter-spacing: 0.08em;
}
.team-avatar::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px; height: 60px;
  border: 1px solid var(--color-accent-2);
  border-radius: 50%;
  opacity: 0.5;
}

/* Treatment hero cleaner */
.tx-hero {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-line);
}

/* Buttons - stronger hover */
.btn-primary {
  background: var(--color-highlight) !important;
  color: var(--color-bg) !important;
  border: 1px solid var(--color-highlight) !important;
}
.btn-primary:hover {
  background: #243A33 !important;
  border-color: #243A33 !important;
}
.btn-secondary {
  background: transparent !important;
  border: 1px solid var(--color-ink) !important;
  color: var(--color-ink) !important;
}
.btn-secondary:hover {
  background: var(--color-ink) !important;
  color: var(--color-bg) !important;
}

/* Footer — more refined */
.site-footer {
  background: var(--color-highlight);
  color: rgba(247, 243, 238, 0.85);
}
.footer-brand .brand,
.footer-brand p,
.footer-col h4,
.footer-col ul li a,
.footer-bottom div,
.footer-bottom a,
.footer-seal {
  color: rgba(247, 243, 238, 0.78) !important;
}
.footer-brand .brand { color: #fff !important; }
.footer-col h4 { color: #D4B896 !important; }
.footer-col ul li a:hover { color: #D4B896 !important; }
.footer-bottom { border-top: 1px solid rgba(212, 184, 150, 0.15) !important; }
.footer-seal { color: #D4B896 !important; opacity: 0.6; }
.footer-logo-img { filter: brightness(0) invert(1); opacity: 0.7; }

/* Final CTA — refine */
.final-cta {
  background: var(--color-bg) !important;
  color: var(--color-ink) !important;
  border-top: 1px solid var(--color-line);
}
.final-cta h2 {
  color: var(--color-highlight) !important;
}
.final-cta p {
  color: var(--color-muted) !important;
}

/* Tech strip — cleaner */
.tech-strip {
  background: #fff;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.tech-strip .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.tech-badge {
  text-align: center;
  font-size: 11px;
  color: var(--color-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.tech-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--color-ink);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  text-transform: none;
}

/* Sticky CTA refined */
.sticky-cta {
  border-top: 1px solid rgba(46,74,62,0.08);
  background: rgba(247, 243, 238, 0.98) !important;
}

/* Page hero subtle decoration */
.page-hero {
  position: relative;
}
.page-hero::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 24px auto 0;
}

/* Subtle text balance for headings */
.h1, .h2, .display {
  text-wrap: balance;
}

/* FAQ items refined */
.faq-item {
  cursor: pointer;
  transition: padding-left 250ms ease;
}
.faq-item:hover {
  padding-left: 8px;
}

/* =========================================================
   v16: REAL PHOTOS integration
   ========================================================= */

/* Hero with real signature wall photo */
.hero-v3-bg {
  background:
    linear-gradient(135deg, rgba(46,74,62,0.78) 0%, rgba(60,80,68,0.72) 50%, rgba(92,111,74,0.6) 100%),
    url('/images/photos/hero-dark.jpg') center/cover no-repeat !important;
  filter: none !important;
}

/* About page hero strip - subtle brand environment image */
.about-photo-strip {
  width: 100%;
  height: 240px;
  background: url('/images/photos/brand-environment.jpg') center/cover no-repeat;
  position: relative;
  margin: 32px 0;
  border-radius: 4px;
  overflow: hidden;
}
.about-photo-strip::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,243,238,0.05), rgba(247,243,238,0.4));
}

/* Treatment page hero ambient image */
.tx-hero-photo {
  width: 100%;
  max-width: 720px;
  margin: 28px auto 0;
  height: 280px;
  background: url('/images/photos/equipment-onda.jpg') center/cover no-repeat;
  border-radius: 4px;
  position: relative;
}
.tx-hero-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(247,243,238,0), rgba(247,243,238,0.2));
}

/* ============================================================
   v21 LAUNCH POLISH (2026-04-30)
   Final accessibility + mobile + polish layer.
   ============================================================ */

/* Improved focus-visible for keyboard navigation (a11y) */
*:focus-visible {
  outline: 2px solid var(--color-highlight);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-highlight);
  outline-offset: 3px;
}

/* Skip-link should be invisible until focused */
.skip-link {
  position: absolute;
  left: -9999px;
  top: -9999px;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 99999;
  background: var(--color-ink);
  color: var(--color-bg);
  padding: 12px 20px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
}

/* Better selection color */
::selection {
  background: var(--color-highlight);
  color: var(--color-bg);
}

/* Image rendering quality */
img { image-rendering: -webkit-optimize-contrast; }

/* Mobile: tighter hero CTA buttons on very small screens */
@media (max-width: 380px) {
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { font-size: 14px; padding: 12px 14px; }
  h1.display { font-size: clamp(34px, 8vw, 48px) !important; }
}

/* Tighter section rhythm on mobile */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .tx-section { padding: 40px 0; }
  .stats-bar .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* Sticky CTA: ensure no overlap with WA float on mobile */
@media (max-width: 768px) {
  .wa-float { bottom: 76px; }
  .sticky-cta { padding: 10px 12px; }
  body { padding-bottom: 64px; }
}

/* Print: clean for accidental prints */
@media print {
  .site-header, .site-footer, .wa-float, .sticky-cta,
  .exit-overlay, .menu-toggle, .nav-cta, .skip-link {
    display: none !important;
  }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
  .container { max-width: 100% !important; }
}

/* Reduce-motion respect */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Ensure form fields have proper touch targets on mobile */
@media (max-width: 600px) {
  input[type="text"], input[type="email"], input[type="tel"],
  input[type="number"], select, textarea {
    font-size: 16px !important; /* prevents iOS auto-zoom */
    min-height: 44px;
  }
}

/* Better hover feedback for treatment cards */
.treatment-card { transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.treatment-card:hover { transform: translateY(-2px); }

/* Subtle gold underline on serif-italic tagline */
.tagline {
  display: inline-block;
  position: relative;
}

/* Link affordance */
a[href^="http"]:not(.btn):not(.brand):not(.nav-cta):not(.wa-float):not(.tag):not([class*="card"]):not([class*="link"]) {
  text-underline-offset: 3px;
}



/* blog-card-image with real photo */
.blog-card-image {
  aspect-ratio: 16/10;
  background: #ECE7DE;
  display: block;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

/* ============================================================
   v23 Smart Booking Widget (no Calendly required)
   ============================================================ */
#smart-booking { background:#fff; border:1px solid var(--color-line); border-radius:var(--radius-md); padding:var(--s-5); }
#smart-booking .bw-label { font-size:13px; letter-spacing:0.05em; color:var(--color-accent); font-weight:500; margin:0 0 var(--s-3); text-transform:uppercase; }
#smart-booking .bw-label:nth-of-type(2) { margin-top:var(--s-5); }
#smart-booking .bw-days { display:grid; grid-template-columns:repeat(7,1fr); gap:8px; }
@media (max-width:520px){ #smart-booking .bw-days { grid-template-columns:repeat(4,1fr); } }
#smart-booking .bw-day { padding:10px 4px; border:1px solid var(--color-line); background:var(--color-surface); border-radius:6px; font:inherit; cursor:pointer; transition:all 200ms; display:flex; flex-direction:column; align-items:center; gap:2px; position:relative; }
#smart-booking .bw-day:not(.closed):hover { border-color:var(--color-accent); background:#fff; }
#smart-booking .bw-day.active { border-color:var(--color-highlight); background:var(--color-highlight); color:var(--color-bg); }
#smart-booking .bw-day.closed { opacity:0.35; cursor:not-allowed; }
#smart-booking .bw-day-w { font-size:11px; color:var(--color-muted); }
#smart-booking .bw-day.active .bw-day-w { color:rgba(255,255,255,0.7); }
#smart-booking .bw-day-d { font-size:18px; font-weight:600; font-family:var(--font-heading); }
#smart-booking .bw-day-m { font-size:10px; color:var(--color-muted); }
#smart-booking .bw-day.active .bw-day-m { color:rgba(255,255,255,0.6); }
#smart-booking .bw-day-closed { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:18px; color:var(--color-muted); }
#smart-booking .bw-times { display:grid; grid-template-columns:repeat(4,1fr); gap:8px; }
@media (max-width:520px){ #smart-booking .bw-times { grid-template-columns:repeat(3,1fr); } }
#smart-booking .bw-time { padding:10px 6px; border:1px solid var(--color-line); background:var(--color-surface); border-radius:6px; font:inherit; font-size:14px; cursor:pointer; transition:all 200ms; }
#smart-booking .bw-time:hover { border-color:var(--color-accent); }
#smart-booking .bw-time.active { border-color:var(--color-highlight); background:var(--color-highlight); color:var(--color-bg); }
#smart-booking .bw-confirm { margin-top:var(--s-5); padding-top:var(--s-4); border-top:1px solid var(--color-line); }
#smart-booking .bw-summary { padding:14px 18px; background:rgba(184,115,46,0.08); border-radius:6px; margin-bottom:var(--s-3); font-size:14px; color:var(--color-ink); }
#smart-booking .bw-summary strong { color:var(--color-highlight); margin-right:6px; }
#smart-booking .bw-note { margin-top:var(--s-3); font-size:12.5px; color:var(--color-muted); line-height:1.6; text-align:center; }

/* ============================================================
   v23 Smart FAQ Chatbot Widget
   ============================================================ */
#dt-chatbot { position: fixed; bottom: 24px; right: 24px; z-index: 9998; font-family: 'Noto Sans TC', 'Noto Sans SC', sans-serif; }
@media (max-width: 768px) { #dt-chatbot { bottom: 88px; right: 16px; } }

#dt-cb-toggle { width: 60px; height: 60px; border-radius: 50%; background: var(--color-highlight, #2E4A3E); color: var(--color-bg, #F7F3EE); border: 0; cursor: pointer; box-shadow: 0 6px 20px rgba(0,0,0,0.2); display: flex; align-items: center; justify-content: center; transition: transform 200ms; position: relative; }
#dt-cb-toggle:hover { transform: scale(1.06); }
#dt-cb-toggle.dt-cb-active { transform: rotate(8deg); }
#dt-cb-toggle .dt-cb-bubble { position: absolute; top: 4px; right: 4px; width: 12px; height: 12px; background: #4ADE80; border: 2px solid #fff; border-radius: 50%; }

#dt-cb-panel { position: absolute; bottom: 76px; right: 0; width: 360px; max-width: calc(100vw - 32px); height: 540px; max-height: calc(100vh - 120px); background: #fff; border: 1px solid var(--color-line, #E8DFD3); border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.18); display: flex; flex-direction: column; overflow: hidden; }
#dt-cb-panel header { padding: 14px 16px; background: linear-gradient(135deg, #2E4A3E, #1F3329); color: #F7F3EE; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
#dt-cb-panel .dt-cb-title strong { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.3; }
#dt-cb-panel .dt-cb-title span { display: block; font-size: 11px; opacity: 0.75; margin-top: 2px; }
#dt-cb-close { background: transparent; border: 0; color: inherit; font-size: 26px; cursor: pointer; line-height: 1; padding: 0 4px; }

#dt-cb-messages { flex: 1; overflow-y: auto; padding: 16px; background: #FBF8F3; display: flex; flex-direction: column; gap: 10px; }
.dt-cb-msg { padding: 10px 14px; border-radius: 12px; font-size: 14px; line-height: 1.6; max-width: 88%; }
.dt-cb-msg a { color: #2E4A3E; text-decoration: underline; font-weight: 500; }
.dt-cb-bot { background: #fff; border: 1px solid #E8DFD3; align-self: flex-start; border-bottom-left-radius: 4px; }
.dt-cb-user { background: #2E4A3E; color: #F7F3EE; align-self: flex-end; border-bottom-right-radius: 4px; }
.dt-cb-user a { color: #fff; }
.dt-cb-cta { display: inline-block; margin-top: 8px; padding: 8px 14px; background: #25D366; color: #fff !important; border-radius: 6px; text-decoration: none !important; font-size: 13.5px; font-weight: 500; }

#dt-cb-suggest { padding: 0 12px 8px; display: flex; flex-wrap: wrap; gap: 6px; background: #FBF8F3; }
.dt-cb-sg { padding: 6px 12px; background: #fff; border: 1px solid #E8DFD3; border-radius: 16px; font-size: 12.5px; cursor: pointer; color: #231F20; transition: all 150ms; font-family: inherit; }
.dt-cb-sg:hover { background: #2E4A3E; color: #fff; border-color: #2E4A3E; }

#dt-cb-form { display: flex; gap: 6px; padding: 10px 12px; background: #fff; border-top: 1px solid #E8DFD3; }
#dt-cb-input { flex: 1; padding: 10px 14px; border: 1px solid #E8DFD3; border-radius: 24px; font-size: 14px; outline: none; font-family: inherit; }
#dt-cb-input:focus { border-color: #2E4A3E; }
#dt-cb-form button[type="submit"] { width: 40px; height: 40px; border-radius: 50%; background: #2E4A3E; color: #fff; border: 0; font-size: 18px; cursor: pointer; flex-shrink: 0; }
