/* ============ DESIGN TOKENS ============ */
:root {
  /* Brand palette — derived from logo */
  --plum: #4A1B5C;
  --plum-deep: #331041;
  --violet: #6B21A0;
  --mauve: #9333A8;
  --rose: #C084C7;
  --blush: #F5C4D8;
  --blush-soft: #FBEAF1;
  --sage: #5A8B7F;
  --sage-soft: #D9E4E0;

  /* Neutrals */
  --cream: #FAF6F1;
  --pearl: #FDFBF7;
  --ivory: #FFFFFF;
  --stone-50: #F5F1EE;
  --stone-100: #E8E2DD;
  --stone-200: #D3CBC5;
  --stone-400: #8F8288;
  --stone-600: #5A4E58;
  --ink: #2A1435;
  --ink-soft: #4A3856;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-ui: 'Manrope', 'Inter', sans-serif;

  /* Spacing */
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4rem, 9vw, 7.5rem);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(74, 27, 92, 0.06), 0 1px 2px rgba(74, 27, 92, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(74, 27, 92, 0.12), 0 4px 8px -4px rgba(74, 27, 92, 0.06);
  --shadow-lg: 0 24px 48px -12px rgba(74, 27, 92, 0.16), 0 8px 16px -8px rgba(74, 27, 92, 0.08);
  --shadow-glow: 0 0 0 1px rgba(107, 33, 160, 0.08), 0 20px 50px -20px rgba(107, 33, 160, 0.25);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 32px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--violet); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--mauve); }

::selection { background: var(--blush); color: var(--plum-deep); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--violet);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--plum); color: white;
  padding: .75rem 1.25rem; z-index: 999;
  border-radius: 0 0 var(--r-sm) 0;
  font-family: var(--font-ui);
}
.skip-link:focus { left: 0; }

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--plum-deep);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.5rem, 5.8vw, 4.75rem); font-weight: 400; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.2vw, 3.25rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 1.85rem); }
h4 { font-size: 1.2rem; font-family: var(--font-ui); font-weight: 600; color: var(--plum); letter-spacing: 0; }
p { margin: 0 0 1em; }

.eyebrow {
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mauve);
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.lede {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-style: italic;
  color: var(--ink-soft);
  font-weight: 400;
  max-width: 60ch;
  line-height: 1.5;
}

.body-lg { font-size: 1.075rem; color: var(--ink-soft); max-width: 62ch; }
.small { font-size: .875rem; color: var(--stone-400); }

/* Elegant "&" and italics inside headings */
.italic { font-style: italic; font-family: var(--font-display); font-weight: 300; color: var(--mauve); }
.underline-swash {
  background-image: linear-gradient(120deg, var(--blush) 0%, var(--rose) 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.25em;
  background-position: 0 88%;
  padding: 0 .1em;
}

/* ============ LAYOUT ============ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow { max-width: 960px; margin: 0 auto; padding: 0 var(--gutter); }

section { padding: var(--section-y) 0; position: relative; }
.section-alt { background: var(--pearl); }
.section-plum { background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum) 100%); color: var(--stone-50); }
.section-plum h1, .section-plum h2, .section-plum h3 { color: var(--ivory); }
.section-blush { background: linear-gradient(180deg, var(--blush-soft) 0%, var(--cream) 100%); }

.header-block { max-width: 720px; margin: 0 auto 3.5rem; text-align: center; }
.header-block.left { margin-left: 0; text-align: left; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .625rem;
  padding: .75rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--plum);
  color: var(--ivory);
  box-shadow: 0 4px 14px -4px rgba(74, 27, 92, 0.4);
}
.btn-primary:hover {
  background: var(--plum-deep);
  color: var(--ivory);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(74, 27, 92, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--stone-200);
}
.btn-outline:hover {
  background: var(--plum);
  color: var(--ivory);
  border-color: var(--plum);
}

.btn-ghost {
  background: transparent;
  color: var(--plum);
  padding: .5rem 0;
}
.btn-ghost:hover { color: var(--mauve); }

.btn-light {
  background: var(--ivory);
  color: var(--plum);
}
.btn-light:hover { background: var(--blush-soft); color: var(--plum-deep); }

/* ============ HEADER ============ */
.announcement {
  background: var(--plum-deep);
  color: var(--stone-100);
  font-family: var(--font-ui);
  font-size: .8rem;
  padding: .55rem 0;
  text-align: center;
  letter-spacing: 0.02em;
}
.announcement strong { color: var(--blush); font-weight: 600; }
.announcement .dot { display: inline-block; width: 3px; height: 3px; border-radius: 50%; background: var(--rose); margin: 0 .75rem; vertical-align: middle; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 241, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--stone-100);
  background: rgba(250, 246, 241, 0.94);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .875rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.02em;
}
.brand-tag {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 500;
  color: var(--stone-400);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: .92rem;
  font-weight: 500;
  padding: .5rem .85rem;
  border-radius: var(--r-sm);
  position: relative;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--plum); }
.nav-links li.has-menu { position: relative; }
.nav-links li.has-menu > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  margin-left: 6px;
  vertical-align: middle;
  opacity: .5;
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 320px;
  background: var(--ivory);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease);
  pointer-events: none;
}
.has-menu:hover .dropdown,
.has-menu:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.dropdown a {
  display: block;
  padding: .625rem .85rem;
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--ink-soft);
}
.dropdown a:hover { background: var(--blush-soft); color: var(--plum); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--plum);
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .9rem;
}
.nav-phone svg { width: 16px; height: 16px; }

/* Hamburger */
.hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--stone-200);
  border-radius: var(--r-sm);
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer;
}
.hamburger span, .hamburger span::before, .hamburger span::after {
  content: "";
  display: block;
  width: 20px; height: 1.5px;
  background: var(--plum);
  position: relative;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.hamburger span::before { position: absolute; top: -6px; left: 0; }
.hamburger span::after  { position: absolute; top:  6px; left: 0; }
.hamburger.open span { background: transparent; }
.hamburger.open span::before { transform: translateY(6px) rotate(45deg); }
.hamburger.open span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 45;
  padding: 6rem var(--gutter) 3rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul { list-style: none; padding: 0; margin: 0 0 2rem; }
.mobile-drawer li a {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--stone-100);
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--plum);
  font-weight: 500;
}
.mobile-drawer .btn { width: 100%; margin-top: .5rem; }

/* ============ HERO ============ */
.hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: clamp(2.75rem, 6.2vw, 5.25rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 1.75rem;
}
.hero-title .word { display: inline-block; }
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--mauve);
}
.hero-title .and {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
  padding: 0 .05em;
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 480px;
}
.trust-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-family: var(--font-ui);
  font-size: .85rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.trust-item svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--sage);
  margin-top: 2px;
}

/* Hero Visual — Bloom motif signature */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(160deg, var(--blush-soft) 0%, var(--cream) 45%, var(--blush) 100%);
  box-shadow: var(--shadow-lg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(107,33,160,.15), transparent 60%);
  z-index: 1;
}

.bloom-svg {
  position: absolute;
  width: 88%;
  height: 88%;
  top: 6%; left: 6%;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(74,27,92,.15));
}

.hero-visual-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(253, 251, 247, 0.94);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 3;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow-md);
}
.hero-visual-card .avatar-stack {
  display: flex;
}
.hero-visual-card .avatar-stack span {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--pearl);
  background: var(--rose);
  margin-left: -10px;
  font-family: var(--font-ui);
  font-size: .75rem;
  font-weight: 600;
  color: white;
  display: flex; align-items: center; justify-content: center;
}
.hero-visual-card .avatar-stack span:first-child { margin-left: 0; background: var(--mauve); }
.hero-visual-card .avatar-stack span:nth-child(2) { background: var(--violet); }
.hero-visual-card .avatar-stack span:nth-child(3) { background: var(--rose); }
.hero-visual-card .avatar-stack span:nth-child(4) {
  background: var(--sage-soft);
  color: var(--sage);
}
.hero-visual-card-text {
  font-family: var(--font-ui);
  font-size: .78rem;
  line-height: 1.3;
  color: var(--ink);
}
.hero-visual-card-text strong { display: block; color: var(--plum); font-weight: 600; }

/* Ambient bloom decorations */
.hero-ambient {
  position: absolute;
  pointer-events: none;
  opacity: .4;
  z-index: 0;
}
.hero-ambient.top { top: -100px; right: -80px; width: 400px; }
.hero-ambient.bot { bottom: -180px; left: -100px; width: 500px; opacity: .25; }

/* ============ QUICK ENQUIRY CARD (floats near hero) ============ */
.quick-enquiry {
  background: var(--ivory);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}
.quick-enquiry-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.quick-enquiry-head h4 { margin: 0; color: var(--plum); }
.quick-enquiry-head .badge {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 600;
  color: var(--sage);
  background: var(--sage-soft);
  padding: .25rem .625rem;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.quick-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: .75rem;
}
.quick-form input, .quick-form select {
  padding: .8rem 1rem;
  border: 1px solid var(--stone-100);
  border-radius: var(--r-sm);
  background: var(--pearl);
  font-family: var(--font-ui);
  font-size: .9rem;
  transition: border-color .2s var(--ease);
}
.quick-form input:focus, .quick-form select:focus {
  outline: none;
  border-color: var(--violet);
  background: white;
}

/* ============ TRUST BAR / STATS ============ */
.trust-bar {
  padding: clamp(3rem, 5vw, 4.5rem) 0;
  background: var(--pearl);
  border-top: 1px solid var(--stone-100);
  border-bottom: 1px solid var(--stone-100);
}
.stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.stat {
  padding: 0 1.5rem;
  text-align: center;
  border-right: 1px solid var(--stone-100);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--plum);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num .plus { color: var(--rose); font-weight: 400; }
.stat-label {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 500;
  color: var(--stone-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: .625rem;
}

.trust-disclaimer {
  text-align: center;
  font-size: .8rem;
  color: var(--stone-400);
  margin-top: 2rem;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  font-family: var(--font-display);
}

/* ============ ABOUT ============ */
.about {
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.about-visual {
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(155deg, var(--plum) 0%, var(--mauve) 60%, var(--rose) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.about-visual svg { width: 100%; height: auto; opacity: .9; }
.about-visual-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  color: white;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.4;
}
.about-visual-caption::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--blush);
  margin-bottom: 1rem;
}

.about-body h2 { margin-bottom: 1.5rem; }
.about-pillars {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
.pillar {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.25rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--stone-100);
}
.pillar:last-child { border-bottom: none; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
  font-style: italic;
}
.pillar h4 { margin-bottom: .375rem; }
.pillar p { margin: 0; font-size: .95rem; color: var(--stone-600); }

/* ============ TREATMENTS ============ */
.treatment-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.tab {
  padding: .75rem 1.5rem;
  border: 1px solid var(--stone-200);
  background: transparent;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: .9rem;
  color: var(--stone-600);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.tab.active {
  background: var(--plum);
  color: white;
  border-color: var(--plum);
}
.tab:hover:not(.active) {
  border-color: var(--plum);
  color: var(--plum);
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.treatment-panel { display: none; }
.treatment-panel.active { display: contents; }

.treatment-card {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid var(--stone-100);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.treatment-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, var(--blush-soft), transparent 70%);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blush);
}
.treatment-card:hover::after { opacity: 1; }
.treatment-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush-soft);
  border-radius: 12px;
  color: var(--plum);
  margin-bottom: 1.25rem;
}
.treatment-icon svg { width: 22px; height: 22px; }
.treatment-card h4 {
  font-family: var(--font-display);
  font-size: 1.325rem;
  font-weight: 500;
  color: var(--plum-deep);
  margin-bottom: .5rem;
  letter-spacing: -0.005em;
}
.treatment-card p {
  font-size: .9rem;
  color: var(--stone-600);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.55;
}
.treatment-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--stone-100);
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 500;
}
.treatment-card-foot a { color: var(--plum); display: inline-flex; align-items: center; gap: .375rem; }
.treatment-card-foot a svg { width: 12px; height: 12px; transition: transform .2s var(--ease); }
.treatment-card-foot a:hover svg { transform: translateX(3px); }

/* ============ WHY US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0;
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  background: var(--ivory);
  overflow: hidden;
}
.why-item {
  padding: 2rem;
  border-right: 1px solid var(--stone-100);
  border-bottom: 1px solid var(--stone-100);
  transition: background .3s var(--ease);
}
.why-item:hover { background: var(--blush-soft); }
.why-icon {
  color: var(--mauve);
  margin-bottom: 1rem;
  display: inline-block;
}
.why-icon svg { width: 28px; height: 28px; }
.why-item h4 { font-size: 1.05rem; margin-bottom: .5rem; }
.why-item p { font-size: .9rem; color: var(--stone-600); margin: 0; line-height: 1.55; }

/* ============ TECHNOLOGY ============ */
.tech {
  background: linear-gradient(180deg, var(--plum-deep) 0%, var(--plum) 100%);
  color: var(--stone-100);
  position: relative;
  overflow: hidden;
}
.tech::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(192,132,199,0.15), transparent 40%),
    radial-gradient(ellipse at 90% 80%, rgba(90,139,127,0.12), transparent 40%);
}
.tech > .container { position: relative; z-index: 1; }
.tech .eyebrow { color: var(--blush); }
.tech h2 { color: white; }
.tech .lede { color: var(--stone-100); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.tech-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
  transition: all .3s var(--ease);
}
.tech-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(245,196,216,0.3);
  transform: translateY(-3px);
}
.tech-card .num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--blush);
  font-size: .95rem;
  margin-bottom: .625rem;
}
.tech-card h4 {
  color: white;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: .5rem;
}
.tech-card p {
  font-size: .875rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.55;
}


/* ============ PATIENT JOURNEY ============ */
.journey {
  background: var(--pearl);
}
.journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  margin-top: 4rem;
  padding: 0 1rem;
}
.journey-timeline::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 1.5px;
  background: linear-gradient(90deg,
    var(--rose) 0%,
    var(--mauve) 33%,
    var(--violet) 66%,
    var(--plum) 100%);
  z-index: 0;
}
.journey-step {
  position: relative;
  text-align: center;
  z-index: 1;
  padding: 0 .5rem;
}
.journey-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--plum);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 auto 1rem;
  position: relative;
  box-shadow: 0 0 0 6px var(--pearl);
}
.journey-step h5 {
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 600;
  color: var(--plum);
  margin: 0 0 .375rem;
  letter-spacing: 0.02em;
}
.journey-step p {
  font-size: .8rem;
  color: var(--stone-600);
  margin: 0;
  line-height: 1.45;
}

/* ============ DOCTORS ============ */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.doctor-card {
  background: var(--ivory);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--stone-100);
  transition: all .3s var(--ease);
}
.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.doctor-photo {
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, var(--blush-soft), var(--stone-50));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mauve);
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 300;
}
.doctor-body { padding: 1.5rem 1.5rem 1.75rem; }
.doctor-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--plum-deep);
  margin: 0 0 .25rem;
  letter-spacing: -0.005em;
}
.doctor-quals {
  font-family: var(--font-ui);
  font-size: .78rem;
  color: var(--stone-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: .875rem;
}
.doctor-spec {
  font-size: .9rem;
  color: var(--stone-600);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.doctor-meta {
  display: flex;
  gap: 1.25rem;
  padding: 1rem 0;
  border-top: 1px solid var(--stone-100);
  border-bottom: 1px solid var(--stone-100);
  margin-bottom: 1.25rem;
}
.doctor-meta > div { flex: 1; }
.doctor-meta-label {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 500;
  color: var(--stone-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.doctor-meta-val {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--plum);
  font-weight: 500;
}
.doctor-actions { display: flex; gap: .5rem; }
.doctor-actions .btn { flex: 1; padding: .625rem 1rem; font-size: .82rem; }

/* ============ STORIES ============ */
.stories {
  background: var(--blush-soft);
  overflow: hidden;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.story-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  border: 1px solid rgba(107,33,160,0.06);
  transition: all .3s var(--ease);
}
.story-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.story-quote-mark {
  font-family: var(--font-display);
  font-size: 4.5rem;
  color: var(--blush);
  line-height: 0.6;
  margin-bottom: -.5rem;
  font-weight: 300;
}
.story-text {
  font-family: var(--font-display);
  font-size: 1.075rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.story-foot {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stone-100);
}
.story-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mauve), var(--rose));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .85rem;
}
.story-attr {
  display: flex; flex-direction: column;
  font-family: var(--font-ui);
  font-size: .8rem;
}
.story-attr strong { color: var(--plum); font-weight: 600; margin-bottom: 1px; }
.story-attr span { color: var(--stone-400); }
.story-verified {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 500;
  color: var(--sage);
}
.story-verified svg { width: 14px; height: 14px; }

/* ============ SUCCESS INFO ============ */
.success-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.success-factors {
  background: var(--ivory);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  padding: 2rem;
}
.factor {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--stone-100);
  align-items: center;
}
.factor:last-child { border-bottom: none; }
.factor-name {
  font-family: var(--font-ui);
  font-weight: 500;
  color: var(--plum);
  font-size: .9rem;
}
.factor-bar {
  width: 120px;
  height: 4px;
  background: var(--stone-50);
  border-radius: 999px;
  overflow: hidden;
}
.factor-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--mauve));
  border-radius: 999px;
}
.factor-val {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--stone-600);
  font-style: italic;
}

.disclaimer-card {
  background: var(--stone-50);
  border-left: 3px solid var(--sage);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--stone-600);
  line-height: 1.55;
}
.disclaimer-card strong {
  color: var(--sage);
  font-family: var(--font-ui);
  font-weight: 600;
  display: block;
  margin-bottom: .375rem;
  font-size: .8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============ INTERNATIONAL ============ */
.intl {
  background: linear-gradient(135deg, var(--sage-soft) 0%, var(--cream) 100%);
}
.intl-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.intl-body h2 { color: var(--plum-deep); }
.intl-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.intl-features li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-family: var(--font-ui);
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.4;
}
.intl-features svg {
  width: 18px; height: 18px;
  color: var(--sage);
  flex-shrink: 0;
  margin-top: 2px;
}
.intl-visual {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(90,139,127,0.15);
}
.intl-visual-head {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--stone-100);
}
.intl-visual-head svg { width: 32px; height: 32px; color: var(--sage); }
.intl-visual-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--plum);
}
.intl-visual-head span {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: var(--stone-400);
  letter-spacing: 0.05em;
}
.intl-steps { display: grid; gap: 1rem; }
.intl-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: .75rem;
  font-family: var(--font-ui);
  font-size: .9rem;
  color: var(--ink-soft);
}
.intl-step span {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .78rem;
}
.intl-step strong { display: block; color: var(--plum); margin-bottom: 2px; }

/* ============ RESOURCES / BLOG ============ */
.resources-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
  flex-wrap: wrap;
}
.resources-head > div { max-width: 560px; }
.resources-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.resource-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--stone-100);
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--blush);
}
.resource-card.featured {
  grid-row: span 2;
}
.resource-image {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--rose), var(--mauve));
  position: relative;
  overflow: hidden;
}
.resource-card.featured .resource-image { aspect-ratio: 4/3; }
.resource-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(51,16,65,0.6) 100%);
}
.resource-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(255,255,255,0.9);
  color: var(--plum);
  padding: .35rem .75rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1;
}
.resource-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.resource-body h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--plum-deep);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: .625rem;
}
.resource-card.featured .resource-body h4 { font-size: 1.75rem; }
.resource-body p {
  font-size: .875rem;
  color: var(--stone-600);
  margin-bottom: 1rem;
  flex-grow: 1;
  line-height: 1.55;
}
.resource-meta {
  display: flex;
  gap: 1rem;
  font-family: var(--font-ui);
  font-size: .75rem;
  color: var(--stone-400);
}
.resource-meta span::after { content: "·"; margin-left: 1rem; }
.resource-meta span:last-child::after { display: none; }

/* ============ FAQ ============ */
.faq-grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.faq-sidebar h2 { position: sticky; top: 120px; }
.faq-sidebar .lede { margin-top: 1rem; }
.faq-sidebar-actions { margin-top: 1.75rem; display: flex; gap: .75rem; flex-wrap: wrap; }

.accordion {
  border-top: 1px solid var(--stone-100);
}
.accordion-item {
  border-bottom: 1px solid var(--stone-100);
}
.accordion-trigger {
  width: 100%;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--plum-deep);
  font-weight: 500;
  line-height: 1.3;
  transition: color .2s var(--ease);
}
.accordion-trigger:hover { color: var(--mauve); }
.accordion-trigger .icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--stone-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  transition: all .3s var(--ease);
}
.accordion-trigger .icon svg { width: 12px; height: 12px; transition: transform .3s var(--ease); }
.accordion-item.open .accordion-trigger .icon {
  background: var(--plum);
  color: white;
  border-color: var(--plum);
}
.accordion-item.open .accordion-trigger .icon svg { transform: rotate(45deg); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.accordion-body-inner {
  padding: 0 0 1.75rem;
  font-size: .95rem;
  color: var(--stone-600);
  line-height: 1.7;
  max-width: 62ch;
}
.accordion-item.open .accordion-body { max-height: 400px; }


/* ============ APPOINTMENT / BOOKING ============ */
.booking {
  background: linear-gradient(160deg, var(--plum-deep) 0%, var(--plum) 55%, var(--mauve) 100%);
  color: var(--stone-100);
  position: relative;
  overflow: hidden;
}
.booking::before {
  content: "";
  position: absolute;
  top: -200px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,196,216,0.15), transparent 60%);
  pointer-events: none;
}
.booking::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(90,139,127,0.15), transparent 60%);
  pointer-events: none;
}
.booking > .container { position: relative; z-index: 1; }

.booking-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.booking-copy h2 { color: white; }
.booking-copy .eyebrow { color: var(--blush); }
.booking-copy .lede { color: rgba(255,255,255,0.85); }

.booking-contacts {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}
.booking-contact {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  color: white;
  font-family: var(--font-ui);
  font-size: .95rem;
  transition: background .2s var(--ease);
}
.booking-contact:hover { background: rgba(255,255,255,0.12); color: white; }
.booking-contact svg { width: 22px; height: 22px; color: var(--blush); flex-shrink: 0; }
.booking-contact strong { display: block; font-weight: 600; margin-bottom: 2px; }
.booking-contact span { font-size: .8rem; color: rgba(255,255,255,0.65); }

.booking-form {
  background: rgba(253,251,247,0.98);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  color: var(--ink);
  box-shadow: var(--shadow-glow);
}
.booking-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--plum-deep);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.field-group { display: flex; flex-direction: column; }
.field-group.full { grid-column: 1 / -1; }
.field-group label {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 500;
  color: var(--stone-600);
  margin-bottom: .375rem;
  letter-spacing: 0.02em;
}
.field-group input,
.field-group select,
.field-group textarea {
  padding: .85rem 1rem;
  border: 1px solid var(--stone-100);
  border-radius: var(--r-sm);
  background: white;
  font-family: var(--font-ui);
  font-size: .92rem;
  color: var(--ink);
  transition: all .2s var(--ease);
}
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(107,33,160,0.1);
}
.field-group textarea { resize: vertical; min-height: 100px; }

.consult-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  padding: .25rem;
  background: var(--stone-50);
  border-radius: var(--r-sm);
}
.consult-toggle label {
  padding: .625rem;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: .85rem;
  font-weight: 500;
  color: var(--stone-600);
  transition: all .2s var(--ease);
  margin: 0;
}
.consult-toggle input { display: none; }
.consult-toggle input:checked + span { color: white; background: var(--plum); }
.consult-toggle label span { display: block; padding: .5rem; border-radius: 6px; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .8rem;
  color: var(--stone-600);
  margin: 1rem 0;
  line-height: 1.5;
}
.consent input {
  margin-top: 3px;
  accent-color: var(--plum);
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}
.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--stone-400);
  margin-top: 1rem;
  font-family: var(--font-ui);
}

/* ============ CONTACT / LOCATION ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem;
  align-items: stretch;
}
.contact-info {
  background: var(--ivory);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid var(--stone-100);
}
.contact-info h3 { margin-bottom: 1.75rem; }
.contact-block {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--stone-100);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}
.contact-block:last-child { border-bottom: none; }
.contact-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blush-soft);
  color: var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-block-label {
  font-family: var(--font-ui);
  font-size: .72rem;
  font-weight: 500;
  color: var(--stone-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: .375rem;
}
.contact-block-val {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--plum-deep);
  line-height: 1.35;
  font-weight: 500;
}
.contact-block-sub {
  font-family: var(--font-ui);
  font-size: .85rem;
  color: var(--stone-600);
  margin-top: .25rem;
}

.contact-map {
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 500px;
  background: linear-gradient(155deg, var(--sage-soft), var(--blush-soft));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--stone-100);
}
/* Stylised map illustration */
.map-svg {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
}
.map-marker {
  position: relative;
  z-index: 2;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 240px;
}
.map-marker::after {
  content: "";
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px; height: 16px;
  background: white;
}
.map-marker-pin {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--mauve));
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .75rem;
  box-shadow: 0 8px 20px -6px rgba(74,27,92,0.5);
}
.map-marker strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--plum-deep);
  margin-bottom: .25rem;
}
.map-marker span {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: var(--stone-600);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,0.7);
  padding: clamp(4rem, 6vw, 5rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--rose), var(--mauve), var(--violet), var(--plum), var(--sage));
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}
.footer-brand .brand-name { color: var(--blush); }
.footer-brand .brand-tag { color: rgba(255,255,255,0.5); }
.footer-brand p {
  font-size: .9rem;
  line-height: 1.65;
  max-width: 320px;
  margin: 1.25rem 0 1.5rem;
}
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s var(--ease);
}
.footer-social a:hover { background: var(--rose); color: white; transform: translateY(-2px); }
.footer-social svg { width: 15px; height: 15px; }

.footer-col h5 {
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 600;
  color: var(--blush);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .625rem;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: .88rem;
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--blush); }

.footer-newsletter p { font-size: .88rem; margin-bottom: 1rem; line-height: 1.55; }
.newsletter-form {
  display: flex;
  gap: .375rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: .3rem;
  border-radius: 999px;
}
.newsletter-form input {
  flex: 1;
  padding: .5rem 1rem;
  background: transparent;
  border: none;
  color: white;
  font-family: var(--font-ui);
  font-size: .85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  padding: .5rem 1.25rem;
  background: var(--blush);
  color: var(--plum-deep);
  border: none;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: .8rem;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.newsletter-form button:hover { background: white; }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .8rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: .8rem; }
.footer-bottom-links a:hover { color: var(--blush); }

.medical-disclaimer {
  background: rgba(0,0,0,0.2);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: .78rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}
.medical-disclaimer strong {
  color: var(--blush);
  font-family: var(--font-ui);
  font-size: .72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: .375rem;
}

/* ============ FLOATING ACTIONS ============ */
.floating-actions {
  position: fixed;
  bottom: 3rem;
  right: .5rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.float-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all .3s var(--ease);
  position: relative;
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 24px; height: 24px; }
.float-whatsapp { background: #25D366; }
.float-call { background: var(--plum); }
.float-btn.pulse::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  animation: pulse 2s var(--ease) infinite;
  z-index: -1;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .stats { grid-template-columns: repeat(3, 1fr); }
  .stat { border-bottom: 1px solid var(--stone-100); padding-bottom: 2rem; margin-bottom: 2rem; }
  .stat:nth-child(3n) { border-right: none; }
  .stat:nth-last-child(-n+3) { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
  .resources-grid { grid-template-columns: 1fr 1fr; }
  .resource-card.featured { grid-row: auto; grid-column: span 2; }
  .resource-card.featured .resource-body h4 { font-size: 1.4rem; }
  .journey-timeline { grid-template-columns: repeat(4, 1fr); row-gap: 2.5rem; }
  .journey-timeline::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { aspect-ratio: 4/4; }
  .trust-strip { max-width: none; grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { position: relative; top: 0; aspect-ratio: 5/4; max-height: 400px; }
  .success-info-grid, .intl-grid, .booking-grid, .contact-grid, .faq-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3n) { border-right: 1px solid var(--stone-100); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
  .journey-timeline { grid-template-columns: repeat(2, 1fr); }
  .quick-form { grid-template-columns: 1fr; }
  .intl-features { grid-template-columns: 1fr; }
  .resources-grid { grid-template-columns: 1fr; }
  .resource-card.featured { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero-title { font-size: clamp(2.5rem, 9vw, 3.5rem); }
  .form-grid { grid-template-columns: 1fr; }
  .doctor-actions { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .booking-contact { flex-direction: row; }
  .journey-timeline { grid-template-columns: 1fr; }
}


/* ============================================================
   INNER PAGES — shared components (same token system)
   ============================================================ */

/* Active nav state */
.nav-links a[aria-current="page"],
.mobile-drawer a[aria-current="page"] { color: var(--plum); }
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* ---------- Page hero ---------- */
.page-hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(192,132,199,0.22), transparent 60%),
    radial-gradient(700px 380px at 0% 110%, rgba(90,139,127,0.14), transparent 60%),
    linear-gradient(180deg, var(--blush-soft) 0%, var(--cream) 100%);
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero .breadcrumb {
  font-family: var(--font-ui);
  font-size: .78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-400);
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.page-hero .breadcrumb a { color: var(--mauve); }
.page-hero .breadcrumb a:hover { color: var(--plum); }
.page-hero .breadcrumb span[aria-hidden] { color: var(--stone-200); }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede { margin-top: .5rem; }
.page-hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.page-hero-visual { position: relative; }
.page-hero-visual svg { width: 100%; height: auto; }
.page-hero-ctas { display: flex; gap: .875rem; flex-wrap: wrap; margin-top: 2rem; }

/* ---------- Anchor pill nav (treatments) ---------- */
.anchor-nav {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: rgba(250,246,241,0.92);
  backdrop-filter: blur(12px);
  border-block: 1px solid var(--stone-100);
  padding: .75rem 0;
}
.anchor-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  gap: .5rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.anchor-nav ul::-webkit-scrollbar { display: none; }
.anchor-nav a {
  display: inline-block;
  white-space: nowrap;
  padding: .5rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--stone-200);
  font-family: var(--font-ui);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--ivory);
  transition: all .2s var(--ease);
}
.anchor-nav a:hover { border-color: var(--mauve); color: var(--plum); background: var(--blush-soft); }

/* ---------- Treatment detail rows ---------- */
.tx-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--stone-100);
  scroll-margin-top: 140px;
}
.tx-row:first-of-type { border-top: none; }
.tx-row.flip .tx-side { order: 2; }
.tx-side { position: sticky; top: 150px; }
.tx-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--rose);
  margin-bottom: .5rem;
  display: block;
}
.tx-side h2 { margin-bottom: .75rem; }
.tx-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mauve);
  margin-bottom: 1.25rem;
}
.tx-facts { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; margin-top: 1.5rem; }
.tx-fact {
  background: var(--ivory);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-md);
  padding: .875rem 1rem;
}
.tx-fact-label {
  font-family: var(--font-ui);
  font-size: .68rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--stone-400);
  margin-bottom: .25rem;
}
.tx-fact-val { font-family: var(--font-display); font-size: 1.05rem; color: var(--plum); font-weight: 500; }
.tx-body h3 { font-family: var(--font-ui); font-size: 1rem; font-weight: 700; color: var(--plum); letter-spacing: 0.01em; margin: 1.75rem 0 .625rem; }
.tx-body h3:first-child { margin-top: 0; }
.tx-body ul { margin: 0 0 1em; padding-left: 1.2rem; }
.tx-body li { margin-bottom: .45rem; }
.tx-body li::marker { color: var(--rose); }
.tx-chiplist { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0 !important; margin: .25rem 0 1rem; }
.tx-chiplist li {
  background: var(--blush-soft);
  color: var(--plum);
  border-radius: 999px;
  padding: .375rem .875rem;
  font-family: var(--font-ui);
  font-size: .8rem; font-weight: 600;
  margin: 0;
}

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--stone-100); background: var(--ivory); box-shadow: var(--shadow-sm); }
.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  font-size: .92rem;
}
.compare caption {
  text-align: left;
  padding: 1.5rem 1.5rem .5rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--plum-deep);
}
.compare th, .compare td { padding: 1rem 1.5rem; text-align: left; border-top: 1px solid var(--stone-100); vertical-align: top; }
.compare thead th {
  border-top: none;
  font-family: var(--font-ui);
  font-size: .75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--stone-400);
  background: var(--pearl);
}
.compare thead th:not(:first-child) { color: var(--plum); }
.compare tbody th {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--ink);
  font-size: .85rem;
  width: 22%;
  background: var(--pearl);
}
.compare td strong { color: var(--plum); }
.compare .tick { color: var(--sage); font-weight: 700; }

/* ---------- CSS-only FAQ (details/summary) ---------- */
.faq-details { border-top: 1px solid var(--stone-100); }
.faq-details details { border-bottom: 1px solid var(--stone-100); }
.faq-details summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--plum-deep);
  font-weight: 500;
  line-height: 1.3;
  transition: color .2s var(--ease);
}
.faq-details summary::-webkit-details-marker { display: none; }
.faq-details summary:hover { color: var(--mauve); }
.faq-details summary .icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--stone-200);
  display: flex; align-items: center; justify-content: center;
  color: var(--plum);
  transition: all .3s var(--ease);
  font-family: var(--font-ui);
}
.faq-details summary .icon::before { content: "+"; font-size: 1rem; line-height: 1; transition: transform .3s var(--ease); }
.faq-details details[open] summary .icon { background: var(--plum); border-color: var(--plum); color: white; }
.faq-details details[open] summary .icon::before { transform: rotate(45deg); }
.faq-details .faq-a { padding: 0 3rem 1.6rem 0; font-size: .95rem; color: var(--stone-600); line-height: 1.7; max-width: 62ch; }

/* ---------- Pillar / value cards ---------- */
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pillar-card {
  background: var(--ivory);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--violet));
  opacity: 0; transition: opacity .3s var(--ease);
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-card:hover::after { opacity: 1; }
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--blush-soft);
  color: var(--plum);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.pillar-card p { font-size: .92rem; color: var(--stone-600); margin: 0; }

/* ---------- Vertical milestones timeline ---------- */
.milestones { position: relative; max-width: 760px; margin: 0 auto; padding-left: clamp(2rem, 5vw, 3rem); }
.milestones::before {
  content: "";
  position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 1.5px;
  background: linear-gradient(180deg, var(--rose), var(--mauve), var(--plum));
}
.milestone { position: relative; padding-bottom: 2.5rem; }
.milestone:last-child { padding-bottom: 0; }
.milestone::before {
  content: "";
  position: absolute;
  left: calc(-1 * clamp(2rem, 5vw, 3rem) + 2px);
  top: 6px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--cream);
  border: 2.5px solid var(--plum);
  box-shadow: 0 0 0 5px var(--cream);
}
.milestone-year {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mauve);
  font-size: 1.05rem;
  display: block;
  margin-bottom: .25rem;
}
.milestone h3 { font-size: 1.3rem; margin-bottom: .375rem; }
.milestone p { font-size: .95rem; color: var(--stone-600); max-width: 56ch; margin: 0; }

/* ---------- Doctor profile (alternating feature layout) ---------- */
.profile {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--stone-100);
  scroll-margin-top: 120px;
}
.profile:first-of-type { border-top: none; }
.profile.flip .profile-visual { order: 2; }
.profile-visual {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(165deg, var(--blush-soft), var(--sage-soft));
  border: 1px solid var(--stone-100);
  position: sticky;
  top: 120px;
}
.profile-visual svg { width: 100%; height: auto; display: block; }
.profile-body .doctor-quals { margin-top: .375rem; }
.profile-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.25rem 0 1.5rem; }
.profile-badges span {
  background: var(--blush-soft);
  color: var(--plum);
  border-radius: 999px;
  padding: .375rem .875rem;
  font-family: var(--font-ui);
  font-size: .78rem; font-weight: 600;
}
.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem 0;
  border-block: 1px solid var(--stone-100);
}
.profile-stats .doctor-meta-val { font-size: 1.35rem; }
.profile-quote {
  border-left: 3px solid var(--rose);
  padding: .25rem 0 .25rem 1.25rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin: 1.5rem 0;
}
.profile-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---------- Blog ---------- */
.blog-featured {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 0;
  background: var(--ivory);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .3s var(--ease);
}
.blog-featured:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.blog-featured-visual {
  background: linear-gradient(150deg, var(--plum-deep), var(--violet) 60%, var(--mauve));
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.blog-featured-visual svg { width: 70%; height: auto; opacity: .9; }
.blog-featured-body { padding: clamp(1.75rem, 4vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
.blog-featured-body h2 a { color: inherit; }
.blog-featured-body h2 a:hover { color: var(--violet); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  background: var(--ivory);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-visual { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; }
.blog-card-visual svg { width: 52px; height: 52px; }
.blog-card-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.blog-card-body h3 { font-size: 1.2rem; line-height: 1.28; margin-bottom: .5rem; }
.blog-card-body h3 a { color: inherit; }
.blog-card-body h3 a:hover { color: var(--violet); }
.blog-card-body p { font-size: .9rem; color: var(--stone-600); flex: 1; }
.blog-cat {
  align-self: flex-start;
  font-family: var(--font-ui);
  font-size: .68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mauve);
  background: var(--blush-soft);
  border-radius: 999px;
  padding: .3rem .75rem;
  margin-bottom: .875rem;
}
.blog-meta { font-family: var(--font-ui); font-size: .75rem; color: var(--stone-400); display: flex; gap: 1rem; margin-top: .875rem; }
.topics-cloud { display: flex; flex-wrap: wrap; gap: .625rem; justify-content: center; }
.topics-cloud a {
  border: 1px solid var(--stone-200);
  background: var(--ivory);
  color: var(--ink-soft);
  border-radius: 999px;
  padding: .55rem 1.2rem;
  font-family: var(--font-ui);
  font-size: .85rem; font-weight: 600;
  transition: all .2s var(--ease);
}
.topics-cloud a:hover { border-color: var(--mauve); background: var(--blush-soft); color: var(--plum); }

/* ---------- Contact page ---------- */
.contact-page-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-form-card {
  background: var(--ivory);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}
.contact-form-card .form-grid { margin-top: 1.75rem; }
.contact-form-card label {
  display: block;
  font-family: var(--font-ui);
  font-size: .8rem; font-weight: 600;
  color: var(--plum);
  margin-bottom: .45rem;
}
.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1px solid var(--stone-200);
  border-radius: var(--r-sm);
  background: var(--pearl);
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(107,33,160,0.12);
}
.contact-form-card input:user-invalid,
.contact-form-card textarea:user-invalid { border-color: #b3395c; }
.contact-aside { display: grid; gap: 1.25rem; }
.contact-card {
  background: var(--ivory);
  border: 1px solid var(--stone-100);
  border-radius: var(--r-lg);
  padding: 1.5rem 1.5rem 1.6rem;
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  transition: all .3s var(--ease);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-card .contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--blush-soft);
  color: var(--plum);
  display: flex; align-items: center; justify-content: center;
}
.contact-card .contact-icon svg { width: 21px; height: 21px; }
.contact-card h3 { font-family: var(--font-ui); font-size: .95rem; font-weight: 700; margin: 0 0 .25rem; color: var(--plum); }
.contact-card p { margin: 0; font-size: .9rem; color: var(--stone-600); }
.contact-card a { font-weight: 600; }
.hours-table { width: 100%; border-collapse: collapse; font-family: var(--font-ui); font-size: .88rem; }
.hours-table td { padding: .55rem 0; border-bottom: 1px dashed var(--stone-100); color: var(--stone-600); }
.hours-table td:last-child { text-align: right; color: var(--plum); font-weight: 600; }
.hours-table tr:last-child td { border-bottom: none; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 50%, var(--violet) 100%);
  border-radius: var(--r-xl);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  color: var(--stone-100);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; top: -160px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,196,216,0.18), transparent 60%);
}
.cta-band h2 { color: white; max-width: 22ch; margin-inline: auto; }
.cta-band .lede { color: rgba(255,255,255,0.85); margin-inline: auto; }
.cta-band .hero-ctas { justify-content: center; margin-top: 2rem; }
.cta-band > * { position: relative; z-index: 1; }

/* ---------- Inner-page responsive ---------- */
@media (max-width: 980px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-visual { max-width: 420px; }
  .tx-row, .profile { grid-template-columns: 1fr; }
  .tx-side, .profile-visual { position: static; }
  .profile.flip .profile-visual { order: 0; }
  .tx-row.flip .tx-side { order: 0; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .anchor-nav { top: 64px; }
}
@media (max-width: 620px) {
  .pillars-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .tx-facts { grid-template-columns: 1fr 1fr; }
  .profile-stats { grid-template-columns: repeat(3, 1fr); gap: .5rem; }
  .faq-details .faq-a { padding-right: 0; }
}
