:root {
  --bg: #f7f1eb;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #fffaf6;
  --text: #29131d;
  --muted: #684653;
  --line: rgba(92, 40, 59, 0.14);
  --brand: #8f163f;
  --brand-deep: #42102a;
  --brand-soft: #e6beca;
  --accent: #d66978;
  --shadow: 0 24px 60px rgba(67, 18, 38, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(214, 105, 120, 0.22), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(143, 22, 63, 0.18), transparent 24%),
    linear-gradient(180deg, #fcf7f3 0%, #f4ece5 100%);
}

img {
  display: block;
  max-width: 100%;
  height: auto; /* prevents CLS — browser uses width/height attrs to reserve space */
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 56px;
}

/* Performance: skip rendering below-fold sections until they're near viewport */
.site-footer {
  content-visibility: auto;
  contain-intrinsic-size: 0 300px;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 10px 18px 7px;
  background: rgba(255, 250, 246, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding-right: 2px;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: min(100%, 320px);
  height: 68px;
  object-fit: contain;
  filter:
    drop-shadow(0 3px 7px rgba(41, 19, 29, 0.24))
    drop-shadow(0 0 8px rgba(255, 248, 238, 0.42))
    saturate(1.04)
    contrast(1.06);
  image-rendering: auto;
}

.eyebrow,
.specialty-index,
.offer-tag {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.main-nav a:hover,
.offer-copy a:hover,
.specialty-card a:hover,
.branch-card:hover small {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease,
    border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, #7a1236 0%, var(--brand) 52%, #c12558 100%);
  box-shadow: 0 18px 40px rgba(143, 22, 63, 0.22);
}

.button-outline,
.button-ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.button-primary:hover {
  box-shadow: 0 22px 44px rgba(143, 22, 63, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: center;
  min-height: auto;
  padding: 42px 0 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 14% 22%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(135deg, #3f1230 0%, #8f163f 52%, #c53b69 100%);
  overflow: hidden;
}

.eyebrow,
.offer-tag {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  font-weight: 600;
}

h1 {
  max-width: 10ch;
  margin: 14px 0 16px;
  color: #fff8f5;
  font-size: clamp(2.9rem, 6.2vw, 5.4rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hero-text,
.section-heading p,
.about-copy p,
.results-copy p,
blockquote,
.offer-copy p,
.specialty-card p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 52ch;
  color: rgba(255, 245, 241, 0.86);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-copy {
  padding: 0 0 0 34px;
}

.hero-copy .eyebrow {
  color: rgba(255, 233, 238, 0.88);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-meta span,
.hero-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(92, 40, 59, 0.12);
  border-radius: 999px;
  background: rgba(255, 252, 249, 0.76);
  color: var(--brand-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-meta a:hover {
  color: var(--brand);
  border-color: rgba(143, 22, 63, 0.2);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-highlights article,
.offer-card,
.specialty-card,
.branch-card,
.cta,
.trust-strip,
.image-frame,
.results-copy blockquote {
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.hero-highlights article {
  padding: 18px 18px 16px;
  background: var(--surface);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-top: 2px solid rgba(143, 22, 63, 0.22);
}

.highlight-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(143, 22, 63, 0.08);
  border: 1px solid rgba(143, 22, 63, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
}

.highlight-text {
  flex: 1;
  min-width: 0;
}

.hero-highlights strong,
.stat-row strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--brand-deep);
  letter-spacing: 0.01em;
}

.hero-highlights span,
.stat-row span {
  color: var(--muted);
  font-size: 0.855rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 26px 0 0;
}

.hero-portrait-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 430px);
  min-height: 420px;
  align-self: end;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.26), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow:
    0 26px 54px rgba(42, 10, 25, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(35, 8, 20, 0.08) 100%);
  pointer-events: none;
}

.hero-portrait-badge,
.hero-portrait-location {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  z-index: 2;
}

.hero-portrait-badge {
  top: 18px;
  right: 18px;
  background: rgba(255, 248, 235, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #7a5c10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.hero-portrait-badge svg {
  color: #c9a84c;
  flex-shrink: 0;
}

.hero-portrait-location {
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.92);
}

.hero-portrait-ring {
  position: absolute;
  width: min(100%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.18);
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.06), transparent 60%);
}

h1 em {
  font-style: italic;
  color: rgba(255, 220, 230, 0.95);
}

.eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 233, 238, 0.7);
  margin-right: 4px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.button-ghost-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.44);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
  white-space: nowrap;
}

.button-ghost-hero:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.hero-portrait-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

/* ── Our Team page — Dr. Thajudheen name badge ─────────────── */
.hero-doctor-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 28px 24px 24px;
  background: linear-gradient(
    to top,
    rgba(22, 5, 14, 0.92) 0%,
    rgba(22, 5, 14, 0.72) 55%,
    transparent 100%
  );
}

.hero-doctor-name {
  margin: 0 0 2px;
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 3.5vw, 1.9rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero-doctor-quals {
  margin: 0 0 2px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-doctor-role {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 240, 245, 0.78);
}

.hero-doctor-divider {
  width: 40px;
  height: 1px;
  background: rgba(198, 150, 170, 0.5);
  margin: 10px 0;
}

.hero-doctor-exp {
  margin: 0;
  font-size: 0.75rem;
  color: rgba(255, 240, 245, 0.6);
  letter-spacing: 0.04em;
}

.treatment-page .hero-visual {
  min-height: 420px;
  padding-right: 0;
}

.treatment-page .hero-portrait-card {
  width: min(100%, 520px);
  min-height: 360px;
  aspect-ratio: 4 / 3;
}

.treatment-page .treatment-hero-image {
  object-position: center center;
}

.text-only-page .hero,
.text-only-page .about {
  grid-template-columns: 1fr;
}

.text-only-page .hero-copy,
.text-only-page .about-copy {
  max-width: 900px;
}

.treatment-rich {
  display: grid;
  gap: 22px;
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.treatment-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.54), transparent 36%),
    linear-gradient(145deg, rgba(255, 249, 245, 0.96) 0%, rgba(248, 231, 235, 0.92) 100%);
  box-shadow: var(--shadow);
}

.treatment-panel h3 {
  margin: 0 0 12px;
}

.treatment-list,
.treatment-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.treatment-list li,
.treatment-steps li {
  position: relative;
  padding-left: 22px;
  line-height: 1.65;
}

.treatment-list li::before,
.treatment-steps li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(143, 22, 63, 0.09);
}

.treatment-note {
  padding: 28px 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 66, 116, 0.18), transparent 28%),
    linear-gradient(180deg, #3b0d2b 0%, #7a113d 54%, #c21849 100%);
  box-shadow: var(--shadow);
}

.treatment-note h3,
.treatment-note p {
  color: #fff;
}

.treatment-note h3 {
  margin: 0 0 10px;
}

.treatment-note p {
  margin: 0;
  max-width: 64ch;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 42px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 252, 249, 0.88);
}

.trust-strip article {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.trust-strip p,
.trust-strip span {
  margin: 0;
  color: var(--muted);
}

.trust-strip strong {
  color: var(--brand-deep);
  font-size: 1rem;
}

.section {
  padding: 64px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 10px 0 16px;
}

.peptide-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.peptide-copy,
.peptide-panel {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.peptide-copy {
  padding: 34px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.7), transparent 38%),
    linear-gradient(145deg, rgba(255, 248, 244, 0.96) 0%, rgba(248, 225, 230, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.peptide-copy h2 {
  margin: 10px 0 16px;
}

.peptide-lead {
  margin: 0 0 14px;
  color: var(--brand-deep);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.7;
}

.peptide-note {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(143, 22, 63, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.56);
}

.peptide-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.peptide-note p {
  margin: 0;
}

.peptide-panel {
  padding: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 116, 150, 0.22), transparent 30%),
    linear-gradient(180deg, #431028 0%, #7c173f 56%, #c92961 100%);
  color: #fff;
}

.peptide-panel h3,
.peptide-tagline {
  color: #fff;
}

.peptide-panel h3 {
  margin: 14px 0 20px;
}

.peptide-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.peptide-benefits {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.peptide-benefits li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.65;
}

.peptide-benefits li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ffd47c;
  box-shadow: 0 0 0 6px rgba(255, 212, 124, 0.12);
}

.peptide-tagline {
  margin: 24px 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.7;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: end;
  max-width: none;
}

.offer-grid,
.specialty-grid,
.branch-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

/* ── Doctor team grid ───────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.team-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(143, 22, 63, 0.1);
  box-shadow: 0 8px 28px rgba(67, 18, 38, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(67, 18, 38, 0.15);
}

.team-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--brand-deep);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 480ms ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.04);
}

.team-info {
  padding: 16px 18px 20px;
  background: var(--surface-strong);
  flex: 1;
}

.team-info h3 {
  margin: 0 0 5px;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand-deep);
  line-height: 1.2;
}

.team-info p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 420px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .team-info {
    padding: 12px 14px 16px;
  }
  .team-info h3 {
    font-size: 1rem;
  }
}

.offer-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start; /* must be start (not stretch) so aspect-ratio works on grid items */
}

/* ── Offer cards — tall portrait image-overlay style ─── */
.offer-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3 / 4;
  align-self: start; /* reinforce: don't let grid stretch override aspect-ratio */
  text-decoration: none;
  cursor: pointer;
  background: var(--brand-deep);
}

.offer-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 480ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.offer-card:hover img,
.offer-card:focus-visible img {
  transform: scale(1.07);
}

/* Per-doctor image positioning */
#priyadharshini-a img,
#doc-priyadharshini img {
  object-position: center 19%;
}

/* Scrim: always-on gradient so text is readable */
.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(28, 6, 18, 0.88) 0%,
      rgba(28, 6, 18, 0.42) 42%,
      rgba(28, 6, 18, 0.0) 72%
    );
  pointer-events: none;
  z-index: 1;
}

.offer-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-copy {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 20px 20px 22px;
  transform: translateY(4px);
  transition: transform 320ms ease;
}

.offer-card:hover .offer-copy,
.offer-card:focus-visible .offer-copy {
  transform: translateY(0);
}

.offer-copy h3 {
  margin: 0 0 6px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.05;
  color: #fff;
}

.offer-copy p {
  margin: 0 0 10px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 240, 245, 0.82);
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-soft);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 280ms ease 60ms, transform 280ms ease 60ms;
  letter-spacing: 0.04em;
}

.offer-card:hover .offer-cta,
.offer-card:focus-visible .offer-cta {
  opacity: 1;
  transform: translateX(0);
}

.offer-cta svg {
  flex-shrink: 0;
  transition: transform 220ms ease;
}

.offer-card:hover .offer-cta svg {
  transform: translateX(3px);
}

.specialty-card a {
  display: inline-block;
  margin-top: 10px;
  font-weight: 800;
  color: var(--brand-deep);
}

.offers-footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.offers-footer .button-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.specialties-shell {
  display: block;
}

.specialty-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.doctor-carousel {
  overflow: hidden;
}

.doctor-track {
  display: flex;
  gap: 22px;
  transition: transform 420ms ease;
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.specialty-card {
  position: relative;
  min-height: 320px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(249, 236, 228, 0.88) 100%);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    filter 220ms ease,
    opacity 220ms ease;
  cursor: pointer;
  z-index: 1;
}

.specialty-grid:hover .specialty-card {
  filter: blur(4px);
  opacity: 0.52;
  transform: scale(0.97);
}

.specialty-grid:hover .specialty-card:hover,
.specialty-grid:hover .specialty-card:focus-within {
  filter: none;
  opacity: 1;
  transform: scale(1.07);
  border-color: rgba(143, 22, 63, 0.24);
  box-shadow: 0 34px 70px rgba(67, 18, 38, 0.18);
  z-index: 4;
}

.specialty-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
}

.specialty-card h3 {
  margin-bottom: 14px;
}

.specialty-hover {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(36, 11, 24, 0.08) 0%, rgba(36, 11, 24, 0.62) 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.specialty-hover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialty-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 10, 18, 0.14) 0%, rgba(28, 10, 18, 0.74) 70%, rgba(28, 10, 18, 0.86) 100%);
}

.specialty-hover-copy {
  position: absolute;
  inset: auto 0 0 0;
  display: grid;
  gap: 12px;
  padding: 26px;
  z-index: 1;
}

.specialty-hover-eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.specialty-hover-copy strong {
  margin: 0;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.18;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.specialty-hover-copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.specialty-card:hover .specialty-hover,
.specialty-card:focus-within .specialty-hover {
  opacity: 1;
  transform: translateY(0);
}

.doctor-card {
  flex: 0 0 calc((100% - 44px) / 3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(143, 22, 63, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.doctor-card img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.doctor-copy {
  display: grid;
  gap: 10px;
  flex: 1 1 auto;
  padding: 22px;
}

.doctor-copy h3 {
  margin: 0;
}

.doctor-role,
.doctor-tag {
  margin: 0;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.doctor-specialty {
  margin: 0;
  width: fit-content;
  max-width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.42), transparent 58%),
    linear-gradient(135deg, rgba(255, 248, 245, 0.92) 0%, rgba(246, 218, 224, 0.9) 48%, rgba(232, 170, 188, 0.88) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
  color: rgba(66, 16, 42, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.doctor-copy a {
  display: inline-block;
  margin-top: 4px;
  color: var(--brand-deep);
  font-weight: 800;
}

.doctors-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.testimonial-carousel {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  width: max-content;
  animation: testimonial-scroll 48s linear infinite;
  will-change: transform;
}

.testimonial-carousel:hover .testimonial-track {
  animation-play-state: paused;
}

@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--marquee-shift, -50%)); }
}

.testimonial-card {
  flex: 0 0 360px;
  display: grid;
  gap: 18px;
  min-height: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.48), transparent 34%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.96) 0%, rgba(247, 226, 231, 0.92) 100%);
  box-shadow:
    0 24px 60px rgba(143, 22, 63, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.testimonial-dots {
  display: none;
}

.testimonial-stars {
  display: flex;
  gap: 6px;
  color: #d6a13e;
  font-size: 1rem;
}

.testimonial-quote {
  margin: 0;
  color: rgba(66, 16, 42, 0.92);
  font-size: 1rem;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-author div {
  display: grid;
  gap: 4px;
}

.testimonial-author strong {
  color: var(--brand-deep);
}

.testimonial-author span:last-child {
  color: rgba(66, 16, 42, 0.66);
  font-size: 0.88rem;
}

.testimonial-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: linear-gradient(135deg, rgba(143, 22, 63, 0.96) 0%, rgba(214, 105, 120, 0.78) 100%);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.about,
.results,
.cta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
}

.stat-row {
  display: grid;
  gap: 16px;
  margin: 26px 0 30px;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 28px;
  padding: 14px 18px;
  border: 1px solid rgba(92, 40, 59, 0.12);
  border-radius: 22px;
  background: rgba(255, 250, 245, 0.9);
  box-shadow: var(--shadow);
}

.about-badge img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.about-badge-label {
  margin: 0 0 4px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-badge strong {
  display: block;
  color: var(--brand-deep);
  font-size: 1rem;
  line-height: 1.4;
}

.about-visual {
  position: relative;
  min-height: 680px;
}

.image-frame {
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.7);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-large {
  position: absolute;
  inset: 0 0 110px 52px;
}

.treatment-page .about-visual {
  min-height: 520px;
}

.treatment-page .image-large {
  inset: 0;
}

.treatment-page .image-frame img,
.treatment-page .treatment-detail-image {
  object-position: center top;
}

.image-small {
  position: absolute;
  width: 280px;
  right: 24px;
  bottom: 0;
}

.results-copy blockquote {
  margin: 30px 0 0;
  padding: 26px 28px;
  border-radius: 26px;
  background: rgba(255, 250, 245, 0.74);
  font-size: 1.18rem;
  line-height: 1.75;
}

.commitment,
.rating-banner {
  padding-top: 26px;
  padding-bottom: 26px;
}

.commitment-inner,
.rating-inner {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 66, 116, 0.18), transparent 26%),
    radial-gradient(circle at 50% 50%, rgba(217, 86, 124, 0.18), transparent 18%),
    linear-gradient(180deg, #3b0d2b 0%, #7a113d 54%, #c21849 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.commitment-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  align-items: end;
  padding: 42px 42px 40px;
}

.commitment-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.commitment-inner h2,
.rating-quote,
.commitment-name {
  color: #fff;
}

.commitment-inner h2 {
  max-width: 10ch;
  margin: 10px 0 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.01em;
}

/* Decorative quote */
.commitment-quote-wrap {
  position: relative;
  margin-bottom: 28px;
}

.commitment-qmark {
  position: absolute;
  top: -18px;
  left: -12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.12);
  pointer-events: none;
  user-select: none;
  font-style: italic;
}

.commitment-text {
  position: relative;
  z-index: 1;
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.8;
  font-weight: 400;
  font-style: italic;
}

/* Stat bar */
.commitment-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 28px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
}

.commitment-stat {
  flex: 1;
  text-align: center;
}

.commitment-stat strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.commitment-stat span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.commitment-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

/* Footer row: name + signature */
.commitment-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.commitment-id {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.commitment-name {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 700;
  line-height: 1.1;
}

.commitment-title {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 500;
}

.commitment-signature {
  display: block;
  width: min(100%, 180px);
  height: auto;
  object-fit: contain;
  opacity: 0.88;
  flex-shrink: 0;
}

/* Portrait */
.commitment-portrait {
  position: relative;
  align-self: stretch;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 60px rgba(34, 6, 18, 0.26);
}

.commitment-portrait img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 38% top;
}

.commitment-portrait-badge {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 248, 235, 0.92);
  border: 1px solid rgba(201, 168, 76, 0.4);
  color: #7a5c10;
  font-size: 0.74rem;
  font-weight: 700;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 2;
}

.commitment-portrait-badge svg {
  color: #c9a84c;
  flex-shrink: 0;
}

.rating-inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: 52px 36px 58px;
  text-align: center;
}

.rating-stars {
  display: flex;
  gap: 14px;
  color: #ffc63d;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1;
}

.rating-quote {
  max-width: 11ch;
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.4rem, 4.8vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
}

.rating-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  line-height: 1.5;
}

.before-after {
  position: relative;
  aspect-ratio: 6 / 7;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  user-select: none;
}

.before-after img,
.after-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.before-after img {
  object-fit: cover;
}

.after-layer {
  z-index: 2;
}

.divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 64px;
  transform: translateX(-50%);
}

.divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255, 255, 255, 0.94);
  transform: translateX(-50%);
}

.divider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.97), rgba(243, 219, 225, 0.94));
  box-shadow: 0 18px 32px rgba(46, 9, 23, 0.22);
  transform: translate(-50%, -50%);
  cursor: grab;
  touch-action: none;
  -webkit-user-drag: none;
}

.divider-icon {
  display: block;
  width: 24px;
  height: 14px;
  fill: var(--brand);
}

.divider-handle:hover,
.divider-handle.is-dragging {
  box-shadow: 0 22px 38px rgba(46, 9, 23, 0.3);
}

.divider-handle.is-dragging {
  cursor: grabbing;
}

.divider span {
  position: absolute;
  bottom: 22px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 248, 244, 0.86);
  color: var(--brand-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  pointer-events: none;
  box-shadow: 0 12px 24px rgba(46, 9, 23, 0.12);
}

.divider span:first-of-type {
  left: 50%;
  transform: translateX(calc(-100% - 18px));
}

.divider span:last-of-type {
  left: 50%;
  transform: translateX(18px);
}

.branch-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.branch-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  min-height: 240px;
  padding: 22px;
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(59, 13, 43, 0.97) 0%, rgba(122, 17, 61, 0.94) 56%, rgba(194, 24, 73, 0.82) 100%);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.branch-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(59, 13, 43, 0.28);
}

/* Flagship card — 2-col wide */
.branch-card--featured {
  grid-column: span 2;
  min-height: 260px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 30%),
    linear-gradient(145deg, #2a0a1a 0%, #6d0f36 45%, #b8174a 100%);
}

/* Coming soon card — 2-col wide */
.branch-card--coming-soon {
  grid-column: span 2;
  border: 1.5px dashed rgba(255, 255, 255, 0.28);
  background:
    radial-gradient(circle at bottom left, rgba(255,255,255,0.08), transparent 36%),
    linear-gradient(145deg, rgba(42, 8, 25, 0.96) 0%, rgba(90, 15, 48, 0.92) 100%);
}

/* Card internal layout */
.branch-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.branch-flag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.03em;
}

.branch-flagship-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.22);
  border: 1px solid rgba(201, 168, 76, 0.44);
  color: #f0d98a;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.branch-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 700;
}

.branch-pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f87171;
  animation: branch-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes branch-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.branch-card > div:not(.branch-card-top):not(.branch-hover) {
  position: relative;
  z-index: 1;
}

.branch-card span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 10px;
}

.branch-card--featured span {
  font-size: 2.6rem;
}

.branch-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  font-size: 0.9rem;
}

.branch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: gap 200ms ease, color 200ms ease;
}

.branch-card:hover .branch-link {
  gap: 10px;
  color: #fff;
}

.branch-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.04);
  transition: opacity 380ms ease, transform 380ms ease;
}

.branch-hover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.branch-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 10, 18, 0.3) 0%, rgba(28, 10, 18, 0.78) 100%);
}

.branch-card:hover .branch-hover,
.branch-card:focus-within .branch-hover {
  opacity: 1;
  transform: scale(1);
}

.cta {
  padding: 34px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 22%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 52%, #d03261 100%);
  color: #fff;
}

.cta .eyebrow,
.cta h2 {
  color: #fff;
}

.cta-copy h2 {
  max-width: 10ch;
  margin: 10px 0 18px;
}

.cta-text {
  max-width: 52ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.cta-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  font-weight: 600;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  align-self: center;
  min-width: 0;
  width: 100%;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.cta-panel-top {
  display: grid;
  gap: 8px;
}

.cta-panel-top h3 {
  margin: 0;
  color: #fff;
  font-size: 1.7rem;
}

.cta-panel-top p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.cta-panel-eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.field {
  display: grid;
  gap: 8px;
}

.contact-list {
  display: grid;
  gap: 12px;
}

.field span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font: inherit;
  font-size: 1rem;
  outline: none;
  appearance: none;
  box-sizing: border-box;
  line-height: 54px;
}

.field textarea {
  height: auto;
  min-height: 160px;
  padding: 16px;
  line-height: 1.6;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.field select option {
  color: #2b1020;
}

.field-message {
  grid-column: 1 / -1;
}

.cta-submit {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 60px;
  margin-top: 6px;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-color: rgba(255, 255, 255, 0.46);
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.18), transparent 40%),
    linear-gradient(135deg, rgba(126, 19, 57, 0.92) 0%, rgba(163, 34, 80, 0.96) 100%);
  box-shadow:
    0 16px 34px rgba(67, 18, 38, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.cta-submit:hover {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.24), transparent 42%),
    linear-gradient(135deg, rgba(116, 17, 51, 0.96) 0%, rgba(143, 22, 63, 0.98) 100%);
}

.cta-support {
  display: grid;
  gap: 12px;
  padding-top: 4px;
  min-width: 0;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-item:hover,
.social-link:hover {
  background: rgba(255, 255, 255, 0.14);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  flex: 0 0 auto;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 4px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 180ms ease, transform 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr 0.8fr;
  gap: 28px;
  margin-top: 70px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: rgba(255, 250, 246, 0.82);
  box-shadow: var(--shadow);
}

.footer-brand p,
.footer-column p,
.footer-column a {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.footer-logo {
  height: 88px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 16px;
  filter:
    drop-shadow(0 4px 10px rgba(41, 19, 29, 0.22))
    drop-shadow(0 0 10px rgba(255, 248, 238, 0.34));
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin-bottom: 6px;
  font-size: 1.45rem;
}

.footer-column a {
  color: var(--brand-deep);
  font-weight: 600;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--brand-deep);
  background: rgba(143, 22, 63, 0.08);
  border: 1px solid rgba(143, 22, 63, 0.14);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body.popup-open {
  overflow: hidden;
}

body.comparison-dragging {
  cursor: ew-resize;
}

.launch-popup {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.launch-popup[hidden] {
  display: none;
}

.launch-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 7, 16, 0.68);
  backdrop-filter: blur(10px);
}

.launch-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 980px);
}

.launch-popup-shell {
  display: grid;
  grid-template-columns: minmax(280px, 450px) minmax(260px, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 32px;
  background: rgba(255, 250, 246, 0.9);
  box-shadow: 0 36px 90px rgba(24, 7, 16, 0.34);
  backdrop-filter: blur(20px);
}

.launch-popup-dialog > .launch-popup-map {
  display: none;
}

.launch-popup-image-wrap {
  background: linear-gradient(180deg, #2b0d1f 0%, #56112f 100%);
}

.launch-popup-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launch-popup-image-badge {
  display: none;
}

.launch-popup-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 36px 34px;
}

.launch-popup-eyebrow {
  margin: 0;
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.launch-popup-copy h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.02;
}

.launch-popup-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.launch-popup-location {
  font-weight: 700;
  color: var(--brand-deep);
}

.launch-popup-map {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: rgba(44, 19, 31, 0.86);
  font-weight: 700;
  line-height: 1.4;
}

.launch-popup-map svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: currentColor;
}

.launch-popup-map:hover {
  color: var(--brand);
}

.launch-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 6px;
}

.launch-popup-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(44, 19, 31, 0.82);
  cursor: pointer;
}

.launch-popup-close span {
  font-size: 2.2rem;
  line-height: 1;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-topbar .topbar-cta {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: translateY(-4px);
}

.home-topbar .topbar-cta.is-scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  transition: background 180ms ease;
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.82);
}

.menu-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brand-deep);
  border-radius: 2px;
  transition: transform 280ms ease, opacity 280ms ease;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.mobile-nav[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav:not([hidden]) {
    display: grid;
    gap: 4px;
    padding: 18px;
    margin-top: -6px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 22px;
    background: rgba(255, 250, 246, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow);
  }

  .mobile-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--brand-deep);
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 180ms ease;
  }

  .mobile-nav a:hover {
    background: rgba(143, 22, 63, 0.06);
  }

  .home-topbar .topbar-cta {
    display: none;
  }

  .mobile-nav .button {
    margin-top: 8px;
    text-align: center;
    justify-content: center;
  }

  .hero,
  .about,
  .results,
  .peptide-shell,
  .treatment-grid,
  .split-heading,
  .cta {
    grid-template-columns: 1fr;
  }

  .specialties-shell {
    display: block;
  }

  .split-heading {
    gap: 14px;
    margin-bottom: 28px;
  }

  .split-heading h2 {
    font-size: clamp(2rem, 7.5vw, 2.6rem);
  }

  .specialty-grid {
    gap: 16px;
  }

  .specialty-grid:hover .specialty-card,
  .specialty-grid:hover .specialty-card:hover,
  .specialty-grid:hover .specialty-card:focus-within {
    filter: none;
    opacity: 1;
    transform: none;
    box-shadow: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 590px;
    padding: 24px 22px;
  }

  .launch-popup-shell {
    grid-template-columns: minmax(240px, 380px) minmax(240px, 1fr);
  }

  .hero-stack {
    gap: 18px 22px;
    width: min(100%, 520px);
  }

  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .specialty-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .doctor-card {
    flex-basis: calc((100% - 22px) / 2);
  }

  /* Hero — tablet */
  .hero-copy {
    padding: 0 0 0 20px;
  }

  .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  /* Branch — collapse featured/coming-soon to 1 col at tablet */
  .branch-card--featured,
  .branch-card--coming-soon {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 24px, 100%);
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    max-width: none;
  }

  h2 {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
  }

  h3 {
    font-size: clamp(1.3rem, 5vw, 1.7rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .peptide-copy,
  .peptide-panel {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .topbar {
    position: static;
    margin-top: 12px;
    padding: 9px 14px 6px;
    border-radius: 22px;
  }

  .brand-logo {
    max-width: min(100%, 270px);
    height: 56px;
  }

  .about-visual {
    min-height: 400px;
  }

  .hero {
    padding-top: 42px;
    gap: 28px;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-highlights,
  .trust-strip,
  .specialty-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card {
    aspect-ratio: 4 / 5;
  }

  .branch-grid {
    grid-template-columns: 1fr;
  }

  .branch-card--featured,
  .branch-card--coming-soon {
    grid-column: span 1;
  }

  .doctor-card {
    flex-basis: 100%;
  }

  .testimonial-card {
    flex: 0 0 300px;
  }

  .appointment-form {
    grid-template-columns: 1fr;
  }

  .specialty-card {
    min-height: 160px;
    padding: 28px 28px 32px;
  }

  .specialty-card p {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .specialty-card h3 {
    margin-bottom: 10px;
  }

  .specialty-index {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .specialty-hover {
    display: none;
  }

  .hero-visual {
    min-height: 380px;
    padding: 20px 14px;
  }

  .treatment-page .hero-visual {
    min-height: 300px;
    padding: 0;
  }

  .treatment-page .hero-portrait-card {
    width: 100%;
    min-height: 280px;
  }

  .launch-popup {
    padding: 16px;
  }

  .launch-popup-shell {
    grid-template-columns: 1fr;
    position: relative;
  }

  .launch-popup-copy {
    display: none;
  }

  .launch-popup-image-wrap {
    position: relative;
    max-height: none;
  }

  .launch-popup-image-badge {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(143, 22, 63, 0.35);
    white-space: nowrap;
  }

  .launch-popup-dialog > .launch-popup-map {
    display: inline-flex;
    justify-content: center;
    margin-top: 14px;
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.22);
    align-self: center;
  }

  .launch-popup-close {
    color: #fff;
    background: rgba(24, 7, 16, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 999px;
  }

  .launch-popup-dialog {
    width: min(100%, 400px);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(150px, auto);
    gap: 14px;
    width: 100%;
  }

  .hero-panel {
    min-height: 150px;
    padding: 18px 18px 16px;
    border-radius: 24px;
  }

  .hero-panel-number {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .hero-panel-title,
  .hero-panel-copy {
    font-size: 0.92rem;
  }

  .hero-panel-eyebrow {
    font-size: 0.72rem;
  }

  .rating-inner {
    gap: 18px;
    padding: 42px 24px 46px;
  }

  .rating-stars {
    gap: 8px;
    font-size: 1.65rem;
  }

  .rating-quote {
    max-width: 12ch;
    font-size: clamp(1.9rem, 7vw, 3rem);
  }

  .rating-copy {
    font-size: 1.05rem;
  }

  .section {
    padding: 52px 0;
  }

  .about-visual {
    min-height: 520px;
  }

  .commitment-inner,
  .rating-inner {
    padding: 34px 24px;
  }

  .commitment-inner {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .commitment-text {
    max-width: none;
  }

  .commitment-signature {
    width: min(100%, 160px);
  }

  .commitment-portrait {
    max-width: 420px;
    min-height: 320px;
  }

  .commitment-stats {
    flex-wrap: wrap;
    gap: 12px;
  }

  .commitment-stat-divider {
    display: none;
  }

  .commitment-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .image-large {
    inset: 0 0 88px 0;
  }

  .treatment-page .about-visual {
    min-height: 380px;
  }

  .treatment-page .image-large {
    inset: 0;
  }

  .image-small {
    width: 180px;
    right: 12px;
  }

  .cta {
    padding: 26px;
  }

  .cta-panel {
    padding: 18px;
  }

  .contact-item {
    font-size: 0.92rem;
  }

  .site-footer {
    margin-top: 52px;
    padding: 24px;
  }

  /* ── Hero mobile ───────────────────────── */
  .hero-copy {
    padding: 0 18px 0;
  }

  .hero-copy .eyebrow {
    font-size: 0.72rem;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-highlights article {
    padding: 13px 14px;
    gap: 13px;
    flex-direction: row;
    align-items: flex-start;
  }

  .highlight-icon {
    width: 38px;
    height: 38px;
    margin-top: 2px;
  }

  .hero-meta {
    gap: 8px;
    margin-top: 14px;
  }

  .hero-portrait-ring {
    display: none;
  }

  .hero-portrait-badge,
  .hero-portrait-location {
    font-size: 0.7rem;
    padding: 6px 10px;
    gap: 5px;
  }

  .hero-portrait-badge svg,
  .hero-portrait-location svg {
    width: 11px;
    height: 11px;
  }

  /* ── Commitment mobile ─────────────────── */
  .commitment-inner h2 {
    font-size: clamp(2rem, 7vw, 2.8rem);
    margin-bottom: 16px;
  }

  .commitment-qmark {
    font-size: 5rem;
    top: -12px;
    left: -6px;
  }

  .commitment-text {
    font-size: 0.98rem;
  }

  .commitment-stats {
    padding: 14px 16px;
    gap: 10px;
  }

  .commitment-stat strong {
    font-size: 1.2rem;
  }

  .commitment-portrait-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .commitment-signature {
    width: min(100%, 140px);
  }

  /* ── Branch cards mobile ───────────────── */
  .branch-card-top {
    flex-wrap: wrap;
    gap: 7px;
  }

  .branch-flagship-badge,
  .branch-soon-badge {
    font-size: 0.68rem;
    padding: 4px 8px;
  }

  .branch-flag {
    font-size: 0.68rem;
    padding: 4px 8px;
  }

  .branch-card span {
    font-size: 1.8rem;
  }

  .branch-card--featured span {
    font-size: 2rem;
  }

  /* ── Testimonial mobile ────────────────── */
  .testimonial-track {
    gap: 14px;
  }

  .testimonial-card {
    flex: 0 0 280px;
    padding: 20px;
    gap: 12px;
  }

  .testimonial-quote {
    font-size: 0.94rem;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  #testimonials.section {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

@media (max-width: 520px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    aspect-ratio: 16 / 9;
  }

  .offer-copy h3 {
    font-size: 1.3rem;
  }

  .hero-visual {
    padding: 16px 10px;
  }

  .launch-popup-image-wrap {
    max-height: 48vh;
  }

  .launch-popup-close {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
  }

  .hero-stack {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    max-width: 320px;
  }

  .hero-panel-left,
  .hero-panel-right {
    justify-self: stretch;
  }

  .hero-panel {
    min-height: auto;
  }

  /* Small phone extras */
  .hero-copy {
    padding: 0 12px 0;
  }

  .hero-portrait-badge,
  .hero-portrait-location {
    display: none;
  }

  .commitment-qmark {
    font-size: 4rem;
  }

  .commitment-stats {
    gap: 6px;
    padding: 12px 14px;
  }

  .commitment-stat strong {
    font-size: 1.1rem;
  }

  .commitment-stat span {
    font-size: 0.65rem;
  }

  .testimonial-card {
    flex: 0 0 260px;
  }

  .branch-flagship-badge,
  .branch-soon-badge {
    display: none;
  }
}

/* ── Staggered card entrance ──────────────────────────────── */
.stagger-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stagger-child.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .stagger-child {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-card img {
    transition: none;
  }
  .offer-copy,
  .offer-cta {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

/* ── Touch devices: always show card copy & CTA (no hover on mobile) ── */
@media (hover: none) {
  .offer-copy {
    transform: translateY(0);
  }
  .offer-cta {
    opacity: 1;
    transform: translateX(0);
  }
  .offer-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }
}

/* ── Card hover lift (pointer devices only) ─────────────────── */
@media (hover: hover) {
  .offer-card {
    transition: transform 0.32s ease, box-shadow 0.32s ease;
  }
  .offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 64px rgba(28, 6, 18, 0.32);
  }
}


/* branch card transitions consolidated above */

/* ── Hero panel gentle float ──────────────────────────────── */
@keyframes panel-float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.hero-panel:nth-child(1) {
  animation: panel-float 6s ease-in-out infinite;
}

.hero-panel:nth-child(2) {
  animation: panel-float 6s ease-in-out 1.5s infinite;
}

.hero-panel:nth-child(3) {
  animation: panel-float 6s ease-in-out 0.8s infinite;
}

.hero-panel:nth-child(4) {
  animation: panel-float 6s ease-in-out 2.2s infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel {
    animation: none;
  }
}

/* ── Eyebrow shimmer ──────────────────────────────────────── */
@keyframes shimmer-sweep {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.eyebrow {
  background: linear-gradient(
    90deg,
    var(--brand) 0%,
    var(--accent) 40%,
    var(--brand-deep) 60%,
    var(--accent) 80%,
    var(--brand) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-sweep 4s linear infinite;
}

.hero .eyebrow,
.cta .eyebrow,
.peptide-panel .eyebrow,
.treatment-note .eyebrow {
  background: none;
  -webkit-text-fill-color: currentColor;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--brand);
    color: var(--brand);
  }
}

/* ── Hero load animation ──────────────────────────────────── */
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-fade-in {
  animation: hero-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-fade-in-delay {
  animation-delay: 0.18s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-fade-in {
    animation: none;
  }
}

/* ── Floating action buttons ──────────────────────────────── */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  z-index: 900;
}

.fab {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px;
  padding: 12px 20px 12px 16px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 20px rgba(67, 18, 38, 0.14), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.fab:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 28px rgba(67, 18, 38, 0.18), inset 0 1px 0 rgba(255,255,255,0.7);
}

.fab svg {
  flex-shrink: 0;
}

.fab-whatsapp {}
.fab-call {}

/* Age Stepper */
.age-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  overflow: hidden;
  min-height: 54px;
}
.age-btn {
  flex-shrink: 0;
  width: 48px;
  height: 54px;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}
.age-btn:hover { background: rgba(255,255,255,0.1); color: #fff; }
.age-btn:active { background: rgba(255,255,255,0.16); }
.age-input {
  flex: 1;
  min-width: 0;
  height: 54px;
  border: none;
  border-left: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.1);
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 1rem;
  text-align: center;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
  padding: 0;
}
.age-input::placeholder { color: rgba(255,255,255,0.38); }
.age-input::-webkit-inner-spin-button,
.age-input::-webkit-outer-spin-button { display: none; }

/* Custom Datepicker */
.datepicker-field { position: relative; }

.datepicker-wrapper { position: relative; }

.datepicker-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.09);
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, background 0.18s;
}
.datepicker-trigger:focus,
.datepicker-trigger[aria-expanded="true"] {
  border-color: rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.12);
  outline: none;
}
.datepicker-display {
  color: rgba(255,255,255,0.5);
  flex: 1;
}
.datepicker-display.has-value { color: #fff; }
.datepicker-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.55;
  transition: opacity 0.15s;
}
.datepicker-trigger:hover .datepicker-icon,
.datepicker-trigger[aria-expanded="true"] .datepicker-icon { opacity: 0.9; }

.datepicker-popup {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: max(100%, 280px);
  z-index: 200;
  background: linear-gradient(150deg, #5a1830 0%, #380e1f 100%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 16px 14px 14px;
  box-shadow: 0 28px 64px rgba(15,4,10,0.55), inset 0 1px 0 rgba(255,255,255,0.08);
}
.datepicker-popup[hidden] { display: none; }

.dp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.dp-month-year {
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 0.01em;
}
.dp-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.dp-nav:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.26);
}

.dp-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.dp-weekdays span {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  padding: 4px 0;
}
.dp-weekdays span:first-child {
  color: rgba(214,105,120,0.8);
}

.dp-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.dp-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: rgba(255,255,255,0.82);
  font: inherit;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0;
  transition: background 0.12s, color 0.12s;
}
.dp-day:hover:not(:disabled):not(.dp-selected) {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.dp-day.dp-today {
  border: 1px solid rgba(214,105,120,0.55);
  color: #f0a0ad;
}
.dp-day.dp-selected {
  background: linear-gradient(135deg, #8f163f, #d66978);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(143,22,63,0.45);
}
.dp-day:disabled {
  color: rgba(255,255,255,0.2);
  cursor: not-allowed;
}
.dp-day.dp-empty { cursor: default; pointer-events: none; }

/* Formspree feedback */
.fs-success-message {
  background: #f0faf4;
  border: 1px solid #7ec8a0;
  border-radius: 10px;
  padding: 20px 24px;
  color: #1a6640;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.fs-form-error {
  background: #fff0f2;
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.fs-field-error {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  margin-top: 4px;
}

/* ── Why Choose section ───────────────────────────────────── */
/* ── Why Choose — bento grid ──────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

/* Card 1 (featured): spans 2 cols | Card 2: 1 col → row fills
   Card 3: 1 col | Card 4 (accent): spans 2 cols → row fills   */
.why-card--featured { grid-column: span 2; }
.why-card--accent   { grid-column: span 2; }

.why-card {
  position: relative;
  padding: 36px 36px 32px;
  border: 1px solid rgba(143, 22, 63, 0.11);
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 247, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  cursor: default;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(214, 105, 120, 0.06), transparent 55%);
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(67, 18, 38, 0.12);
  border-color: rgba(143, 22, 63, 0.2);
}

/* Featured card — dark brand gradient */
.why-card--featured {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.10), transparent 40%),
    linear-gradient(135deg, #2e0d1e 0%, #6b1235 55%, #9c1a48 100%);
  border-color: transparent;
  color: #fff;
}

.why-card--featured::before {
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.07), transparent 50%);
}

.why-card--featured:hover {
  box-shadow: 0 28px 60px rgba(28, 6, 18, 0.35);
  border-color: rgba(255,255,255,0.12);
}

/* Icon circle */
.why-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(143, 22, 63, 0.10);
  color: var(--brand);
  margin-bottom: 20px;
}

.why-card--featured .why-card-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #f9d0de;
}

.why-card--accent .why-card-icon {
  background: rgba(143, 22, 63, 0.10);
  color: var(--brand);
}

/* Big stat number */
.why-stat {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--brand-deep);
  margin-bottom: 10px;
}

.why-card--featured .why-stat {
  color: rgba(255, 235, 242, 0.95);
}

.why-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
  text-transform: none;
  line-height: 1.3;
}

.why-card--featured h3 {
  color: rgba(255, 215, 228, 0.9);
}

.why-card p {
  color: #5a3240;
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.why-card--featured p {
  color: rgba(255, 235, 242, 0.75);
}

.why-card p a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(143, 22, 63, 0.4);
  transition: text-decoration-color 180ms;
}

.why-card p a:hover {
  text-decoration-color: var(--brand);
}

/* Decorative large background numeral */
.why-card--featured::after {
  content: attr(data-stat);
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 9rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ── FAQ section ──────────────────────────────────────────── */
.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(143, 22, 63, 0.13);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-deep);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  background: rgba(255, 248, 244, 0.75);
  transition: background 0.2s;
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--brand);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item[open] summary {
  background: rgba(143, 22, 63, 0.06);
}

.faq-answer {
  padding: 4px 24px 20px;
  background: rgba(255, 248, 244, 0.75);
}

.faq-answer p {
  color: #5a3240;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.faq-answer a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Branch page: treatments grid ───────────────────────── */
.branch-treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
  padding: 0;
  list-style: none;
}

.branch-treatments-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(255, 248, 244, 0.85);
  border: 1px solid rgba(143, 22, 63, 0.10);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-deep);
  transition: background 200ms, border-color 200ms, transform 200ms;
}

.branch-treatments-grid li::before {
  content: '';
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.6;
}

.branch-treatments-grid li a {
  color: inherit;
  text-decoration: none;
}

.branch-treatments-grid li:hover {
  background: rgba(255, 240, 244, 0.95);
  border-color: rgba(143, 22, 63, 0.22);
  transform: translateY(-2px);
}

@media (max-width: 1120px) {
  .branch-treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .branch-treatments-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .branch-treatments-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1120px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-card--featured,
  .why-card--accent {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-card--featured,
  .why-card--accent {
    grid-column: span 1;
  }
  .why-stat {
    font-size: 3rem;
  }
}

@media (max-width: 520px) {
  .why-card {
    padding: 26px 22px;
  }
  .why-stat {
    font-size: 2.6rem;
  }

  .faq-item summary {
    padding: 16px 18px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 4px 18px 16px;
  }
}

@media (max-width: 520px) {
  .fab-group {
    bottom: 20px;
    right: 16px;
    gap: 10px;
  }

  .fab {
    padding: 12px;
    border-radius: 50%;
  }

  .fab-label {
    display: none;
  }
}

/* ── Mobile conversion optimizations ─────────────────────── */

/* WhatsApp button — inherits outline style, no custom colour */
.button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


/* Mobile CTA strip — desktop hidden, mobile shown */
/* Sticky bottom action bar — desktop hidden */
.mobile-action-bar {
  display: none;
}

/* Smooth show/hide via JS class */
.mobile-action-bar.bar-hidden {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}

/* ── Mobile-only overrides (≤760px) ──────────────────────── */
@media (max-width: 760px) {

  /* Pad body so sticky bar never covers content */
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  /* Hide desktop FAB — bottom bar replaces it */
  .fab-group {
    display: none;
  }

  /* ── Sticky bottom action bar ─── */
  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(255, 250, 246, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(143, 22, 63, 0.1);
    padding: 10px 12px env(safe-area-inset-bottom, 10px);
    gap: 8px;
    align-items: stretch;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .mob-bar-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-height: 52px;
    padding: 6px 4px;
    border-radius: 14px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--brand);
    border: 1.5px solid rgba(143, 22, 63, 0.2);
    background: transparent;
    transition: background 0.15s, transform 0.1s;
    -webkit-tap-highlight-color: transparent;
  }

  .mob-bar-btn:active {
    background: rgba(143, 22, 63, 0.07);
    transform: scale(0.96);
  }

  .mob-bar-wa {
    color: var(--brand);
    border-color: rgba(143, 22, 63, 0.2);
  }

  .mob-bar-book {
    flex: 1.6;
    background: var(--brand);
    color: #fff;
    border-color: transparent;
    font-size: 0.72rem;
  }

  .mob-bar-book:active {
    background: var(--brand-deep);
    transform: scale(0.97);
  }

  /* ── Hero copy: remove left padding and center on mobile ─── */
  .hero-copy {
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* ── Hero actions: centered single button on mobile ─── */
  .hero-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .hero-actions .button {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    min-height: 52px;
    text-align: center;
  }

  /* ── Mobile CTA strips (between sections) ─── */
  /* ── Global min tap target ─── */
  .button {
    min-height: 48px;
  }

  .specialty-card a,
  .offer-copy a,
  .doctor-copy a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .branch-card {
    min-height: 44px;
  }

  .contact-item {
    min-height: 44px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .contact-item span:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.branch-opening-note { font-size: 0.7em; opacity: 0.75; margin-left: 6px; }

.footer-address { font-style: normal; font-size: inherit; line-height: 1.6; opacity: 0.8; }
