/*
Theme Name: Kadence Age Amazingly
Description: Custom WP theme that mirrors the Netlify build EXACTLY. Child of Kadence for compatibility, but replaces the Kadence header/footer with our own templates.
Template: kadence
Version: 2.0.0
Author: MaxConnex
*/

/* =========================================================================
   Age Amazingly with Nicki Belle — global stylesheet
   Redesigned: warm luxury med-spa aesthetic inspired by Ascension.com.au
   ========================================================================= */

:root {
  /* ---- Age Amazingly brand kit (warm luxury + gold accent) ---- */
  --terracotta: #1B3A5C;       /* primary brand — headings, primary CTA (now navy) */
  --terracotta-deep: #142C47;  /* hover state (now deep navy) */
  --gold: #C9A96E;             /* brand gold — primary accent, eyebrows, highlights */
  --gold-deep: #A8893D;        /* gold hover/deep state */
  --gold-light: #E2D1A8;       /* light gold for subtle backgrounds */
  --rose: #C18878;             /* secondary warmth — soft accents */
  --rose-light: #D4A090;       /* light rose for hover states */
  --blush: #EFD7CA;            /* warm blush — section backgrounds */
  --blush-light: #FAF4EF;      /* lighter blush — body background */

  /* ---- neutrals ---- */
  --surface: #FFFFFF;
  --surface-warm: #FAF4EF;     /* body bg — warm cream */
  --surface-blush: #F5EBE3;    /* feature section bg */
  --surface-gray: #F7F7F7;     /* light gray alt sections */
  --ink: #3D3D3D;              /* body text — warm dark gray */
  --ink-muted: #676767;        /* secondary text */
  --ink-light: #999999;        /* tertiary text */
  --line: #E8DDD6;             /* hairline dividers */
  --white: #FFFFFF;
  --dark: #30302E;             /* footer bg */

  /* ---- legacy alias (backward compat) ---- */
  --cream-deep: var(--surface-warm);
  --burgundy: var(--terracotta);
  --burgundy-deep: var(--terracotta-deep);
  --navy: #1B3A5C;
  --navy-deep: #142C47;
  --cornflower: var(--gold);
  --cornflower-text: var(--gold);
  --terracotta-soft: var(--rose-light);

  /* ---- typography ---- */
  --display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --subhead: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Raleway", "Inter", "Helvetica Neue", system-ui, sans-serif;

  --container: 1240px;
  --container-narrow: 860px;
  --radius-sm: 2px;
  --radius-md: 6px;

  --transition: 320ms cubic-bezier(.2,.6,.2,1);
}

/* ---------- reset & base ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body { overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--surface-warm);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
@media (min-width: 900px) { body { font-size: 1.0625rem; line-height: 1.8; } }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose); }
/* body-copy links: underline */
.compliance p a, .stack p a, main p a, main dd a, main li > a:not(.btn) {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
/* opt-out for pill-shaped nav elements inside <li> */
main .hero-tech-pills li > a,
main ul.hero-tech-pills li > a { text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- typography ---------- */
/* H1 + H2 centred site-wide per Kat's feedback */
h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--terracotta);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
  line-height: 1.15;
  text-align: center;
}
h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 400;
}
h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

h3 {
  font-family: var(--subhead);
  font-weight: 500;
  color: var(--terracotta);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 0 0 0.5em;
  line-height: 1.25;
  letter-spacing: -0.005em;
  text-align: center;
}
/* opt-outs: headings inside cards, pathway bands, numbered lists stay left-aligned for editorial rhythm */
.pathway-copy h3,
.numbered-list h3,
.faq-list h3,
.product-card h3 { text-align: left; }
.team-card h3 { text-align: center; }

h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--ink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1.2em; }
strong, b { font-weight: 600; color: var(--ink); }
em, i { font-style: italic; }

/* Eyebrow — refined label */
/* Gold sub-headings, larger per Kat's June 9 feedback */
.eyebrow {
  font-family: var(--sans);
  font-style: normal;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 1.1rem;
  /* Block + centered to match the global h1/h2/h3 (text-align:center at line 83).
     Previously inline-block + leading gold dash, which kept it left-flush; the
     dash was removed 22 Jun 2026 so the eyebrow needs to centre itself now
     to stay aligned with the heading it pairs with. */
  display: block;
  text-align: center;
  line-height: 1.4;
}
@media (min-width: 900px) { .eyebrow { font-size: 1.18rem; } }
/* Decorative gold dash also removed (was reading as an em-dash to Kat on mobile) */
.eyebrow::before { content: none; display: none; }
/* Smaller variant inside cards so we don't overwhelm tight layouts */
.team-card .eyebrow,
.product-card .eyebrow,
.pathway-copy .eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}

.lead { font-size: 1.18rem; line-height: 1.7; color: var(--ink-muted); max-width: 60ch; }
@media (min-width: 900px) { .lead { font-size: 1.3rem; line-height: 1.75; } }

/* ---------- utility ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 700px) { .container { padding: 0 32px; } }
.container.narrow { max-width: var(--container-narrow); text-align: center; }
.container.narrow .lead { margin-left: auto; margin-right: auto; }
.container.narrow .eyebrow::before { display: none; }
.visually-hidden { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* skip link */
.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--terracotta); color: var(--white);
  padding: 10px 16px; font-weight: 500; z-index: 200;
  transition: top var(--transition);
}
.skip-link:focus { top: 12px; color: var(--white); }

*:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 3px; border-radius: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 0;
  transition: all var(--transition);
  background: var(--terracotta);
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { background: var(--terracotta-deep); color: var(--white); transform: translateY(-1px); }
/* accent button */
.btn.btn-accent {
  background: var(--gold);
  color: var(--white);
  position: relative;
}
.btn.btn-accent::before {
  display: none;
}
.btn.btn-accent:hover { background: var(--gold-deep); color: var(--white); }
.btn.btn-sm { padding: 11px 22px; font-size: 0.65rem; }
.btn.ghost {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}
.btn.ghost:hover { background: var(--terracotta); color: var(--white); }
.btn.on-dark { background: var(--white); color: var(--terracotta); }
.btn.on-dark:hover { background: var(--blush-light); color: var(--terracotta-deep); }
.btn.text-only {
  background: transparent;
  color: var(--terracotta);
  padding: 8px 0;
  border: none;
  border-bottom: 1px solid var(--gold);
  letter-spacing: 0.15em;
  white-space: normal;
}
.btn.text-only:hover { background: transparent; color: var(--gold-deep); transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 16px;
}
@media (min-width: 1024px) { .site-header-inner { padding: 20px 32px; gap: 32px; } }
.brand-logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.brand-logo img { width: 52px; height: 52px; object-fit: contain; }
@media (min-width: 1024px) { .brand-logo img { width: 64px; height: 64px; } }
.brand-logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.1;
  color: var(--terracotta);
  letter-spacing: 0.01em;
}
@media (min-width: 1024px) { .brand-logo-text { font-size: 1.3rem; } }
.brand-logo-text small {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--navy);                /* WCAG AA on warm cream surface */
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 700;
}
@media (min-width: 1024px) { .brand-logo-text small { font-size: 0.62rem; letter-spacing: 0.26em; } }

.primary-nav { display: none; }
@media (min-width: 1024px) {
  .primary-nav { display: flex; align-items: center; gap: 36px; }
}
.primary-nav > ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 22px; align-items: baseline;
}
.primary-nav li { display: flex; align-items: baseline; }
.primary-nav a,
.primary-nav .has-dropdown > button {
  font-family: var(--sans);
  font-size: 0.7rem;
  white-space: nowrap;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  line-height: 1;
}
.primary-nav a:hover { color: var(--terracotta); }
.primary-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--terracotta); transition: width var(--transition);
}
.primary-nav a:hover::after { width: 100%; }

.has-dropdown { position: relative; }
.has-dropdown > button {
  display: inline-flex; align-items: baseline; gap: 6px;
  border: none; background: transparent; cursor: pointer;
}
.has-dropdown > button[aria-expanded="true"] { color: var(--terracotta); }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -12px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 20px 4px;
  min-width: 260px;
  list-style: none; margin: 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
  display: none;
  z-index: 50;
}
.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -12px;
  height: 12px;
  background: transparent;
}
.dropdown-menu.mega {
  min-width: 260px;
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
}
.has-dropdown[data-open="true"] > .dropdown-menu { display: block; }
.has-dropdown[data-open="true"] > .dropdown-menu.mega { display: block; }
.dropdown-menu li { padding: 0; }
.dropdown-menu a {
  display: block; padding: 10px 22px;
  font-size: 0.85rem; letter-spacing: 0.06em;
  color: var(--ink); text-transform: none;
}
.dropdown-menu a::after { display: none; }
.dropdown-menu a:hover { color: var(--terracotta); background: var(--blush-light); }
.dropdown-menu .group-title {
  font-family: var(--serif); font-size: 1.05rem; color: var(--terracotta);
  text-transform: none; letter-spacing: 0; padding: 8px 22px 2px;
  font-weight: 500;
}

.header-cta { display: none; align-items: center; gap: 14px; }
@media (min-width: 1024px) { .header-cta { display: flex; } }
.header-cta .btn { padding: 11px 20px; font-size: 0.62rem; letter-spacing: 0.14em; gap: 0; text-align: center; }
.phone-link {
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  margin-right: 4px;
}
.phone-link:hover { color: var(--terracotta); }
.call-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--terracotta);
  font-family: var(--sans);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta);
  text-decoration: none;
  transition: all var(--transition);
  white-space: nowrap;
  margin-right: 2px;
}
.call-circle:hover {
  background: var(--terracotta);
  color: var(--white);
}

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: transparent; border: 1px solid var(--line); color: var(--ink);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* mobile drawer */
.mobile-drawer {
  position: fixed; top: 0; right: -100%; width: min(380px, 90vw); height: 100vh;
  background: var(--white); z-index: 300; padding: 32px 28px;
  transition: right 320ms cubic-bezier(.2,.6,.2,1); overflow-y: auto;
  box-shadow: -12px 0 48px rgba(0,0,0,0.08);
}
.mobile-drawer[aria-hidden="false"] { right: 0; }
.mobile-drawer-head { display: flex; justify-content: flex-end; margin-bottom: 24px; }
.mobile-drawer ul { list-style: none; margin: 0; padding: 0; }
.mobile-drawer > nav > ul > li { border-bottom: 1px solid var(--line); }
.mobile-drawer a, .mobile-drawer button.m-group {
  display: block; width: 100%; text-align: left;
  padding: 16px 0; font-size: 0.9rem;
  font-family: var(--sans);
  color: var(--ink); letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 500;
  background: transparent; border: none;
}
.mobile-drawer .submenu { padding-left: 14px; padding-bottom: 12px; display: none; }
.mobile-drawer .submenu a {
  padding: 10px 0; font-size: 0.85rem; text-transform: none; letter-spacing: 0.02em;
  color: var(--ink-muted);
}
.mobile-drawer [data-open="true"] .submenu { display: block; }

.drawer-scrim {
  position: fixed; inset: 0; background: rgba(48,48,46,0.4); z-index: 250;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.drawer-scrim[aria-hidden="false"] { opacity: 1; pointer-events: auto; }

/* ---------- hero blocks ---------- */
.hero {
  position: relative;
  padding: 40px 0 56px;
  overflow: hidden;
}
@media (min-width: 900px) { .hero { padding: 100px 0 120px; } }

.hero-home {
  display: flex; align-items: center;
  padding: 24px 0 48px;
  background: var(--blush-light);
}
@media (min-width: 900px) { .hero-home { min-height: 80vh; padding: 80px 0 100px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
.hero-grid > .hero-copy { order: 2; }
.hero-grid > .hero-figure { order: 1; }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; gap: 80px; }
  .hero-grid > .hero-copy,
  .hero-grid > .hero-figure { order: initial; }
}

.hero-copy .eyebrow { color: var(--gold); }
.hero-copy h1 { margin-top: 0; font-size: clamp(2.2rem, 5.5vw, 4rem); }
.hero-copy .lead { font-size: 1rem; color: var(--ink-muted); }
@media (min-width: 900px) { .hero-copy .lead { font-size: 1.1rem; } }

/* hide secondary hero paragraphs on mobile */
.hero-copy .hero-extra,
.hide-mobile,
.desktop-only { display: none; }
@media (min-width: 900px) {
  .hero-copy .hero-extra,
  .hide-mobile,
  .desktop-only { display: block; }
}
.mobile-only { display: block; }
@media (min-width: 900px) { .mobile-only { display: none; } }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-ctas .btn { width: 100%; justify-content: center; }
@media (min-width: 600px) { .hero-ctas .btn { width: auto; } }

/* Google reviews badge */
.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 10px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.84rem;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.reviews-badge:hover {
  background: var(--white);
  border-color: var(--rose);
  color: var(--terracotta);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.reviews-badge .stars {
  color: #E8A33A;
  font-size: 0.92rem;
  letter-spacing: 1px;
}
.reviews-badge .reviews-text strong { font-weight: 600; color: var(--ink); }
.reviews-badge.centered { margin: 24px auto 0; display: inline-flex; }
.section-head.centered .reviews-badge { display: inline-flex; }

.hero-figure {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  max-height: 64vh;
}
@media (min-width: 900px) { .hero-figure { max-height: none; } }
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(143,87,71,0.04) 100%);
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  width: 240px; height: 240px;
  background-image: url("../images/AgeAmazingly_HalfCircleShape01.png");
  background-size: contain; background-repeat: no-repeat; background-position: center;
  opacity: 0.08;
  pointer-events: none;
  right: -80px; top: 20px;
  z-index: 0;
  display: none;
}
@media (min-width: 900px) {
  .hero-accent { display: block; width: 320px; height: 320px; top: 40px; }
}
.hero-copy, .hero-figure { position: relative; z-index: 1; }

/* breadcrumbs */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  padding: 12px 0;
  color: var(--ink-muted);
}
.breadcrumb a {
  color: var(--ink-muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--terracotta); }
.breadcrumb .sep { margin: 0 8px; color: var(--gold); opacity: 0.6; }
.breadcrumb [aria-current="page"] {
  color: var(--terracotta);
  font-weight: 500;
}

/* generic page hero */
.page-hero {
  padding: 56px 0 40px;
  position: relative;
  background: var(--blush-light);
}
@media (min-width: 900px) { .page-hero { padding: 100px 0 80px; } }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.page-hero .lead { margin-top: 18px; font-size: 1rem; margin-left: auto; margin-right: auto; text-align: center; }
@media (min-width: 900px) { .page-hero .lead { margin-top: 24px; font-size: 1.12rem; } }
.page-hero .two-col > .col-image { order: 1; }
.page-hero .two-col > div:not(.col-image) { order: 2; }
@media (min-width: 900px) {
  .page-hero .two-col.reverse > .col-image { order: 2; }
  .page-hero .two-col.reverse > div:not(.col-image) { order: 1; }
}
.page-hero .col-image { aspect-ratio: 4/5; max-height: 56vh; }
@media (min-width: 900px) { .page-hero .col-image { max-height: none; aspect-ratio: 4/5; } }

/* ---------- section rhythm ---------- */
section { padding: 56px 0; }
@media (min-width: 900px) { section { padding: 120px 0; } }

section.tight { padding: 32px 0; }
@media (min-width: 900px) { section.tight { padding: 64px 0; } }
section.cream-deep { background: var(--surface-blush); }
section.blush-bg { background: var(--blush); }
section.ink-bg { background: var(--dark); color: var(--white); }
section.ink-bg h1, section.ink-bg h2, section.ink-bg h3, section.ink-bg h4 { color: var(--white); }
section.ink-bg .eyebrow { color: var(--gold-light); }

.section-head { max-width: 56ch; margin-bottom: 28px; }
@media (min-width: 900px) { .section-head { margin-bottom: 56px; } }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .eyebrow::before { display: none; }
.section-head .lead { display: none; }
@media (min-width: 900px) { .section-head .lead { display: block; } }
.section-head .lead.show-mobile { display: block; }

/* meet the angels — team hero + team grid */
.team-hero-section { padding-top: 0; }
.team-hero {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
}
.team-hero img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 24px;
  align-items: stretch;
}
@media (min-width: 700px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.team-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 0 0 28px;
  border-top: 3px solid var(--gold);
  text-align: left;
  height: 100%;
}
.team-card > p:last-child { margin-bottom: 0; }
.team-card-image {
  margin: 0 0 20px;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 500ms ease;
}
.team-card:hover .team-card-image img { transform: scale(1.03); }
.team-card h3 {
  margin: 0 24px 6px;
  color: var(--navy);
  font-size: 1.55rem;
  text-align: center;
}
.team-card .eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin: 0 24px 14px;
  display: block;
  text-align: center;
}
.team-card .eyebrow::before { display: none; }    /* drop the leading dash inside cards */
.team-card p { margin: 0 24px 14px; font-size: 0.95rem; color: var(--ink); line-height: 1.6; }
.team-card p:last-child { margin-bottom: 0; }
.show-mobile { display: block; }
@media (min-width: 700px) { .show-mobile { display: none; } }

/* philosophy + mission dual block */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 800px) {
  .philosophy-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}
.philosophy-grid article {
  padding: 24px 0;
}
@media (min-width: 800px) {
  .philosophy-grid article:first-child {
    padding-right: 24px;
    border-right: 1px solid var(--line);
  }
}
.philosophy-grid h2 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
}
.philosophy-grid p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.75;
}

/* pull quote */
.philosophy-pullquote {
  margin: 48px auto 0;
  max-width: 56ch;
  padding: 28px 0 0;
  border-top: 1px solid var(--gold-light);
  font-family: var(--subhead);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.5;
  color: var(--terracotta);
  text-align: center;
}
.philosophy-pullquote cite {
  display: block;
  margin-top: 18px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (min-width: 800px) {
  .philosophy-pullquote { margin-top: 64px; padding-top: 36px; }
}

/* ablative vs non-ablative laser comparison */
.laser-compare {
  gap: 32px;
}
.laser-compare article {
  background: var(--white);
  padding: 32px;
  border-top: 3px solid var(--terracotta);
  display: flex;
  flex-direction: column;
}
.laser-compare article:nth-child(2) { border-top-color: var(--rose); }
.laser-compare h3 { margin-top: 6px; }
.laser-compare .note { font-size: 0.92rem; color: var(--ink-muted); margin: 8px 0 0; margin-top: auto; }
.two-col.laser-compare { align-items: stretch; grid-template-columns: 1fr 1fr; gap: 32px; }

/* asymmetric two-col */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 0.9fr 1fr; gap: 80px; }
  .two-col.reverse { grid-template-columns: 1fr 0.9fr; }
  .two-col.reverse > .col-image { order: 2; }
  .two-col.media-heavy { grid-template-columns: 1.15fr 1fr; }
}
.two-col:has(.col-image) > .col-image { order: 1; }
.two-col:has(.col-image) > *:not(.col-image) { order: 2; }
@media (min-width: 900px) {
  .two-col > * { order: initial; }
}
.col-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.col-image.landscape { aspect-ratio: 5/4; }
.col-image img { width: 100%; height: 100%; object-fit: cover; }
.col-image .caption {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--serif); font-style: italic; font-size: 0.9rem;
  color: var(--white);
  background: rgba(48,48,46,0.7);
  padding: 6px 14px;
}

/* editorial numbered list (Why Choose) */
.numbered-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 20px;
}
@media (min-width: 900px) { .numbered-list { gap: 32px; } }
.numbered-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
@media (min-width: 900px) {
  .numbered-list li { grid-template-columns: 72px 1fr; gap: 24px; padding-bottom: 28px; }
}
.numbered-list li:last-child { border-bottom: none; }
.numbered-list .num {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold);
  font-weight: 400;
}
@media (min-width: 900px) { .numbered-list .num { font-size: 2.6rem; } }
.numbered-list h3 { margin: 0; font-size: 1.02rem; color: var(--ink); font-family: var(--sans); font-weight: 600; letter-spacing: 0.02em; }
@media (min-width: 900px) { .numbered-list h3 { font-size: 1.2rem; margin: 0 0 6px; } }
.numbered-list p {
  margin: 0; color: var(--ink-muted); font-size: 0.93rem;
  display: none;
}
@media (min-width: 900px) { .numbered-list p { display: block; font-size: 0.95rem; } }

/* pull quote — centred per Kat's feedback (25 Jun 2026, screenshot of philosophy section);
   removed asymmetric left border so the quote balances with the centred heading above. */
.pull-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.2vw, 1.85rem);
  line-height: 1.45;
  color: var(--terracotta);
  padding: 24px 0;
  margin: 48px auto;
  max-width: 40ch;
  text-align: center;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.pull-quote cite {
  display: block;
  margin-top: 16px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
}

/* as-seen-on media bar */
.media-bar {
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.media-bar .eyebrow { display: block; text-align: center; margin-bottom: 28px; }
.media-bar .eyebrow::before { display: none; }
.media-bar-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 28px 48px;
  list-style: none; padding: 0; margin: 0;
}
.media-bar-logos li {
  font-family: var(--subhead);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--terracotta);
  letter-spacing: 0.02em;
  white-space: nowrap;
  position: relative;
  padding: 8px 0;
}
@media (min-width: 700px) {
  .media-bar-logos li { font-size: 1.25rem; }
  .media-bar-logos { gap: 32px 64px; }
}
.media-bar-logos li .media-show {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 600px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (min-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
.gallery-item { margin: 0; overflow: hidden; border-radius: 4px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-placeholder {
  aspect-ratio: 4/3;
  background: var(--blush-light);
  border: 2px dashed var(--line);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder span {
  font-family: var(--subhead);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* treatment pathways */
.pathway {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 900px) {
  .pathway { grid-template-columns: 1fr 1fr; gap: 80px; padding: 80px 0; }
  .pathway.reverse > .pathway-image { order: 2; }
}
.pathway:first-of-type { border-top: none; padding-top: 0; }
@media (min-width: 900px) { .pathway:first-of-type { padding-top: 80px; } }
.pathway-image { aspect-ratio: 5/4; overflow: hidden; position: relative; }
.pathway-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.pathway:hover .pathway-image img { transform: scale(1.02); }
.pathway-copy h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  margin: 8px 0 12px;
}
.pathway-copy .eyebrow { font-size: 0.68rem; margin-bottom: 0.5rem; }
.pathway-copy p {
  max-width: 52ch; color: var(--ink-muted); font-size: 0.95rem;
  display: none;
}
@media (min-width: 900px) {
  .pathway-copy p { display: block; font-size: 1rem; }
}
.pathway { padding: 24px 0; }
@media (min-width: 900px) { .pathway { padding: 80px 0; } }
.pathway-copy { padding: 4px 0; }

/* testimonial block */
.feature-testimonial {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.2rem, 4.5vw, 2.2rem);
  line-height: 1.4;
  color: var(--terracotta);
  max-width: 34ch;
  margin: 0 auto 40px;
  text-align: center;
}
@media (min-width: 700px) { .feature-testimonial { margin-bottom: 56px; } }
.feature-testimonial cite {
  display: block; margin-top: 24px;
  font-family: var(--sans); font-style: normal;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 100%;
  padding: 36px;
  background: var(--white);
  border-top: 2px solid var(--gold);
  text-align: center;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--terracotta);
  background: transparent;
  color: var(--terracotta);
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.carousel-btn:hover {
  background: var(--terracotta);
  color: var(--white);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  /* WCAG target-size — 24x24 hit area, visual dot is 8px via ::before */
  width: 24px; height: 24px;
  border-radius: 50%;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.carousel-dot::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  transition: background var(--transition);
}
.carousel-dot.active::before { background: var(--terracotta); }
.testimonial-card p {
  font-family: var(--serif); font-style: italic;
  font-size: 1.02rem; line-height: 1.6; color: var(--ink);
  margin: 0 0 18px;
}
.testimonial-card cite {
  font-family: var(--sans); font-style: normal;
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

/* full treatment list */
.full-treatments, .common-questions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  font-family: var(--subhead);
}
@media (min-width: 700px) {
  .full-treatments { grid-template-columns: repeat(2, 1fr); column-gap: 32px; }
  .common-questions { grid-template-columns: 1fr; }
}
.full-treatments li, .common-questions li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  color: var(--terracotta);
  position: relative;
  padding-left: 28px;
}
.full-treatments li::before, .common-questions li::before {
  content: "\203A";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--gold);
  font-family: var(--subhead);
  font-size: 1.2rem;
}
.common-questions li {
  font-style: italic;
  color: var(--ink);
  font-size: 1.05rem;
}

/* product grid */
.product-grid {
  display: grid; grid-template-columns: 1fr; gap: 20px;
  align-items: stretch;
}
@media (min-width: 600px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 1000px) { .product-grid { grid-template-columns: repeat(4, 1fr); } }
/* Equal heights for related-treatment cards on every page per Kat's feedback */
.product-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 240px;
}
.product-card > :last-child { margin-top: auto; }

/* Meno category archive toolbar — mirrors the WC shop result-count + sort dropdown UX */
.meno-archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(12, 55, 128, 0.12);
}
.meno-result-count {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-muted, #4B6299);
  letter-spacing: 0.02em;
}
.meno-result-count strong, .meno-result-count #meno-visible-count {
  color: var(--navy);
  font-weight: 600;
}
.meno-sort { display: inline-flex; align-items: center; gap: 10px; }
.meno-sort-select {
  appearance: none;
  -webkit-appearance: none;
  background: #FFFFFF url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%230C3780' d='M0 0l5 6 5-6z'/></svg>") no-repeat right 14px center;
  border: 1px solid rgba(12, 55, 128, 0.25);
  border-radius: 999px;
  color: var(--navy);
  font: inherit;
  font-size: 0.95rem;
  padding: 10px 38px 10px 18px;
  min-height: 44px;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.meno-sort-select:hover { border-color: var(--navy); }
.meno-sort-select:focus-visible {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(12, 55, 128, 0.18);
}

/* Meno Skincare grid — 2/3 col layout with product photo on top */
.meno-grid { grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 700px)  { .meno-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .meno-grid { grid-template-columns: repeat(3, 1fr); } }
.meno-product { padding: 0; overflow: hidden; text-align: center; }
.meno-product-img {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--surface-warm);
}
.meno-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.meno-product:hover .meno-product-img img { transform: scale(1.04); }
.meno-product .eyebrow { margin: 22px 24px 4px; font-size: 0.75rem; letter-spacing: 0.18em; }
.meno-product .eyebrow::before { display: none; }
.meno-product h3 { margin: 0 24px 6px; font-size: 1.4rem; color: var(--navy); text-align: center; }
.meno-product .price {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: 0.04em;
  margin: 0 24px 10px;
  font-weight: 500;
}
.meno-product p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin: 0 24px 18px;
  line-height: 1.5;
  flex: 1;
}
.meno-shop-btn {
  margin: 0 24px 24px;
  align-self: center;
  width: calc(100% - 48px);
  justify-content: center;
}
.product-card h3 {
  font-size: 1.35rem; color: var(--terracotta); font-weight: 400;
  margin: 12px 0 4px;
}
.product-card .price {
  font-family: var(--sans); font-size: 0.82rem; color: var(--ink-muted);
  letter-spacing: 0.06em;
}
.product-card p { font-size: 0.93rem; color: var(--ink-muted); margin: 12px 0; }

/* location / contact card */
.location-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .location-grid { grid-template-columns: 1.2fr 1fr; gap: 48px; } }
.location-map {
  aspect-ratio: 16/10; overflow: hidden;
  border: 1px solid var(--line);
  width: 100%;
}
.location-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.location-details dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 24px;
  margin: 0;
}
@media (min-width: 480px) {
  .location-details dl { grid-template-columns: 110px 1fr; gap: 14px 24px; }
}
.location-details dt {
  font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold);
  margin-top: 12px;
  font-weight: 600;
}
@media (min-width: 480px) {
  .location-details dt { font-size: 0.72rem; letter-spacing: 0.2em; margin-top: 0; }
}
.location-details dt:first-of-type { margin-top: 0; }
.location-details dd { margin: 0; font-size: 0.95rem; word-break: break-word; }
@media (min-width: 480px) { .location-details dd { font-size: 1rem; } }

/* appointment strip */
.appointment-strip {
  background: var(--blush-light);
  position: relative;
  overflow: hidden;
}
.appointment-strip::before {
  content: ""; position: absolute; right: -80px; bottom: -40px; width: 280px; height: 280px;
  background-image: url("../images/AgeAmazingly_HalfCircleShape02.png");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.08; pointer-events: none;
}
.appointment-strip { padding: 56px 0; }
@media (min-width: 900px) { .appointment-strip { padding: 120px 0; } }
.appointment-strip .inner {
  display: grid; grid-template-columns: 1fr; gap: 28px; align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 900px) {
  .appointment-strip .inner { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.appointment-strip h2 { margin-top: 0; }
.appointment-strip table { border-collapse: collapse; width: 100%; max-width: 420px; font-size: 0.95rem; }
.appointment-strip td {
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.appointment-strip td:first-child {
  font-family: var(--sans); letter-spacing: 0.14em; text-transform: uppercase;
  font-size: 0.68rem; color: var(--gold); width: 110px; font-weight: 600;
}
@media (min-width: 480px) {
  .appointment-strip td:first-child { font-size: 0.72rem; width: 180px; }
}
.appointment-strip td:last-child { word-break: break-word; }
.appointment-strip table { table-layout: fixed; }
.appointment-strip .btn { margin-top: 28px; }

/* FAQ */
.faq-list { list-style: none; padding: 0; margin: 0; border-top: 1px solid var(--line); }
.faq-list li { border-bottom: 1px solid var(--line); }
.faq-item {
  display: block; width: 100%; text-align: left;
  background: transparent; border: none; padding: 24px 0;
  font-family: var(--serif); font-size: 1.2rem; color: var(--terracotta);
  cursor: pointer;
  position: relative; padding-right: 48px;
}
.faq-item::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--gold); transition: transform var(--transition);
}
.faq-item[aria-expanded="true"]::after { content: "\2212"; }
.faq-answer { padding: 0 0 24px; color: var(--ink-muted); display: none; max-width: 72ch; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-list [data-open="true"] .faq-answer { display: block; }

/* compliance block */
.compliance {
  padding: 32px 0;
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
@media (min-width: 900px) { .compliance { padding: 48px 0; } }
.compliance .compliance-label {
  font-size: 0.7rem; letter-spacing: 0.2em;
  font-family: var(--sans); text-transform: uppercase;
  color: var(--gold); margin: 0;
  font-weight: 600;
  display: inline;
}
@media (min-width: 900px) { .compliance .compliance-label { font-size: 0.72rem; letter-spacing: 0.22em; } }
.compliance p { font-size: 0.85rem; max-width: 78ch; margin-top: 14px; }
.compliance-details summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  user-select: none;
}
.compliance-details summary::-webkit-details-marker { display: none; }
.compliance-details summary::after {
  content: "+";
  margin-left: auto;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--transition);
}
.compliance-details[open] summary::after { content: "\2212"; }

/* newsletter */
.newsletter {
  background: var(--dark); color: var(--white);
  padding: 64px 0;
}
.newsletter-inner {
  display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center;
}
@media (min-width: 800px) { .newsletter-inner { grid-template-columns: 1fr 1fr; } }
.newsletter h3 { color: var(--white); margin: 0 0 8px; font-size: 1.7rem; }
.newsletter p { margin: 0; color: var(--white); opacity: 0.85; }
.newsletter form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter input[type="email"] {
  flex: 1; min-width: 220px;
  padding: 16px 18px; border: 1px solid rgba(255,255,255,0.3); background: transparent;
  color: var(--white); font-family: var(--sans); font-size: 0.95rem;
}
.newsletter input[type="email"]::placeholder { color: var(--white); opacity: 0.5; }
.newsletter button { padding: 16px 24px; background: var(--white); color: var(--dark); border: none;
  font-family: var(--sans); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; transition: all var(--transition); }
.newsletter button:hover { background: var(--blush-light); color: var(--terracotta); }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy); color: var(--white);
  border-top: none;
  padding: 80px 0 32px;
}
.site-footer a { color: var(--white); opacity: 0.85; }
.site-footer a:hover { color: var(--rose-light); opacity: 1; }
.footer-grid {
  display: grid; gap: 40px 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-col h4 {
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-light); margin: 0 0 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col li { font-size: 0.92rem; }
.footer-social a { display: inline-flex; align-items: center; gap: 10px; }
.footer-social .social-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: currentColor;
  opacity: 0.9;
  transition: opacity 160ms ease, transform 160ms ease;
}
.footer-social a:hover .social-icon { opacity: 1; transform: translateY(-1px); }
.footer-brand p { font-size: 0.92rem; opacity: 0.8; max-width: 34ch; }
.footer-brand img { width: 80px; margin-bottom: 18px; }
.footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
  font-size: 0.8rem; opacity: 0.6;
}
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: 20px; list-style: none; margin: 0; padding: 0; }

/* ---------- forms ---------- */
.contact-form { display: grid; gap: 20px; max-width: 640px; }
.contact-form label {
  display: block;
  font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; font-weight: 600;
}
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px;
  background: var(--white); border: 1px solid var(--line);
  font-family: var(--sans); font-size: 1rem; color: var(--ink);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--terracotta); outline-offset: 0; }
.contact-form .hp { position: absolute; left: -9999px; }
.form-status { padding: 16px 20px; border-left: 3px solid var(--rose); background: var(--blush-light); display: none; }
.form-status[data-state="success"] { display: block; border-color: #5A7A4A; }
.form-status[data-state="error"] { display: block; border-color: var(--terracotta); }

/* ---------- small visual helpers ---------- */
.divider { border: 0; height: 1px; background: var(--line); margin: 48px 0; }
.pill-tag {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); padding: 6px 14px; border: 1px solid var(--gold);
  margin-bottom: 16px;
}

/* rhythm utility */
.stack > * + * { margin-top: 1.2em; }
.stack-lg > * + * { margin-top: 2em; }

/* decorative half-circle accent (subtle) */
.accent-right {
  position: absolute; right: -100px; top: 40%;
  width: 220px; height: 220px;
  background-image: url("../images/AgeAmazingly_HalfCircleShape01.png");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.06; pointer-events: none;
}
.accent-left {
  position: absolute; left: -80px; bottom: -40px;
  width: 240px; height: 240px;
  background-image: url("../images/AgeAmazingly_HalfCircleShape02.png");
  background-size: contain; background-repeat: no-repeat;
  opacity: 0.06; pointer-events: none;
}

/* ---------- back-to-top ---------- */
.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 280ms ease, transform 280ms ease, background 200ms ease;
  box-shadow: 0 6px 22px rgba(143,87,71,0.2);
}
.back-to-top[data-visible="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--rose); }
.back-to-top svg { width: 20px; height: 20px; fill: currentColor; }
@media (min-width: 1024px) {
  .back-to-top { right: 28px; bottom: 28px; width: 52px; height: 52px; }
}

/* ---------- back link on sub-pages ---------- */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--rose);
  text-decoration: none;
  padding: 14px 0 0;
  transition: color var(--transition);
}
.back-link:hover { color: var(--terracotta); }
.back-link::before { content: "\2190"; margin-right: 2px; }

/* ---------- search overlay ---------- */
.search-trigger {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  cursor: pointer;
  transition: color var(--transition);
}
.search-trigger:hover { color: var(--terracotta); }
.search-trigger svg { width: 18px; height: 18px; }

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(48, 48, 46, 0.88);
  z-index: 400;
  display: none;
  overflow-y: auto;
  padding: 12vh 16px 4vh;
}
.search-overlay[data-open="true"] { display: block; }
.search-overlay-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
}
.search-overlay-form {
  position: relative;
}
.search-overlay input {
  width: 100%;
  padding: 18px 44px 18px 12px;
  border: none;
  border-bottom: 2px solid var(--terracotta);
  font-family: var(--sans);
  font-size: 1.15rem;
  background: transparent;
  color: var(--ink);
}
.search-overlay input:focus { outline: none; border-bottom-color: var(--rose); }
.search-overlay-close {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: var(--ink-muted);
  cursor: pointer;
}
.search-overlay-close:hover { color: var(--terracotta); }
.search-results {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.search-results li { border-bottom: 1px solid var(--line); }
.search-results li:last-child { border-bottom: none; }
.search-results a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: var(--ink);
}
.search-results a:hover, .search-results [data-active="true"] a {
  background: var(--blush-light);
  padding-left: 12px;
  color: var(--terracotta);
}
.search-results .r-title {
  font-family: var(--subhead);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--terracotta);
}
.search-results .r-desc {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 4px;
}
.search-empty {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* ---------- Full-bleed hero (Ascension-style) ---------- */
.hero-fullbleed {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: var(--white);
}
@media (min-width: 900px) { .hero-fullbleed { min-height: 85vh; } }
.hero-fullbleed .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-fullbleed .hero-bg img,
.hero-fullbleed .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-fullbleed .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.6) 30%, rgba(255,255,255,0.88) 50%, rgba(255,255,255,0.97) 70%, rgba(255,255,255,1) 100%);
  z-index: 1;
}
.hero-fullbleed .hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 20px 48px;
  text-align: center;
}
@media (min-width: 900px) {
  .hero-fullbleed .hero-content { padding: 60px 32px 80px; }
}
.hero-fullbleed .eyebrow {
  color: var(--ink-muted);
  margin-bottom: 1.2rem;
  display: block;
}
.hero-fullbleed .eyebrow::before { display: none; }
.hero-fullbleed h1 {
  color: var(--navy);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  margin: 0 0 1rem;
  line-height: 1.1;
}
.hero-fullbleed .hero-sub {
  color: var(--ink-muted);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 48ch;
  margin: 0 auto 2rem;
}
@media (min-width: 900px) { .hero-fullbleed .hero-sub { font-size: 1.08rem; } }

/* Hero tech pills — clickable buttons that jump to the relevant treatment page */
.hero-tech-pills {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.hero-tech-pills li { display: block; }
.hero-tech-pills a {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  min-height: 44px;
  line-height: 1.2;
}
.hero-tech-pills a:hover,
.hero-tech-pills a:focus-visible {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}
.hero-tech-pills a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.35);
}
@media (min-width: 900px) { .hero-tech-pills a { font-size: 0.78rem; padding: 12px 22px; } }

/* Nicki credentials list (position 2 section) */
.credential-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 20px;
  display: grid;
  gap: 10px;
}
.credential-list li {
  position: relative;
  padding-left: 24px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
}
.credential-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 12px;
  height: 1px;
  background: var(--gold);
}
.tech-benefit-note {
  margin: 28px 0 4px;
  padding: 20px 24px;
  background: rgba(201, 169, 110, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 6px 6px 0;
}
.tech-benefit-note .eyebrow {
  display: block !important;
  text-align: left !important;
  margin-bottom: 8px;
  font-size: 0.72rem;
}
.tech-benefit-note p { margin: 0; font-size: 0.98rem; line-height: 1.6; }

.hero-fullbleed .btn {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.hero-fullbleed .btn:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* ---------- Large statement heading (Ascension section 1) ---------- */
.statement-section {
  padding: 80px 0;
  text-align: center;
}
@media (min-width: 900px) { .statement-section { padding: 120px 0; } }
.statement-section h2 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  max-width: 18ch;
  margin: 0 auto 1rem;
  line-height: 1.1;
}
.statement-section .statement-sub {
  font-family: var(--sans);
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 52ch;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 900px) { .statement-section .statement-sub { font-size: 1.25rem; } }

/* ---------- 3-column treatment category grid ---------- */
.treatment-categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px) { .treatment-categories { grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.treatment-cat {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
@media (min-width: 700px) { .treatment-cat { aspect-ratio: 2/3; } }
.treatment-cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.treatment-cat:hover img { transform: scale(1.04); }
.treatment-cat .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(48,48,46,0.65) 0%, rgba(48,48,46,0.1) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background var(--transition);
}
.treatment-cat:hover .cat-overlay {
  background: linear-gradient(0deg, rgba(143,87,71,0.7) 0%, rgba(48,48,46,0.15) 50%, transparent 100%);
}
.treatment-cat .cat-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.treatment-cat .cat-title {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--white);
  font-weight: 400;
  line-height: 1.15;
  margin: 0;
}
.treatment-cat .cat-arrow {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
}
.treatment-cat:hover .cat-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Clinic about section (wide with image) ---------- */
.clinic-about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .clinic-about { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.clinic-about .clinic-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.clinic-about .clinic-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.clinic-about .clinic-copy {
  padding: 16px 0;
}

/* ---------- Blog cards grid ---------- */
.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) { .blog-cards { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (min-width: 900px) { .blog-cards { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.blog-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  transition: transform var(--transition);
}
.blog-card:hover { transform: translateY(-4px); color: var(--ink); }
.blog-card .blog-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--blush);
}
.blog-card .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}
.blog-card:hover .blog-thumb img { transform: scale(1.04); }
.blog-card h3 {
  font-size: 1.25rem;
  color: var(--terracotta);
  margin: 0 0 8px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card .read-more {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ---------- Get in Touch section ---------- */
.get-in-touch {
  background: var(--surface-gray);
}
.get-in-touch .touch-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .get-in-touch .touch-grid { grid-template-columns: 1fr 1fr; gap: 80px; }
}

/* print */
@media print {
  .site-header, .mobile-drawer, .drawer-scrim, .appointment-strip, .newsletter, .site-footer { display: none; }
  body { background: #fff; color: #000; }
}
