/* Brand display font (purchased from Sensatype Studio) */
@font-face {
  font-family: 'Parisian';
  font-style: normal;
  font-weight: normal;
  font-display: swap;
  src: url('../assets/fonts/parisian/PARISIAN.woff2') format('woff2'),
       url('../assets/fonts/parisian/PARISIAN.woff') format('woff'),
       url('../assets/fonts/parisian/PARISIAN.ttf') format('truetype');
}

:root {
  /* Brand palette mirrored from formandfunctionaesthetics.com */
  --color-charcoal: #1c1a1b;       /* primary brand color */
  --color-dark: #1c1a1b;
  --color-text: #1c1a1b;
  --color-text-light: #4a4848;
  --color-white: #ffffff;
  --color-off-white: #f2eeec;       /* secondary brand color */
  --color-cream: #f2eeec;
  --color-taupe: #1c1a1b;           /* legacy alias -> charcoal */
  --color-taupe-light: #f2eeec;     /* legacy alias -> cream */
  --color-gold: #1c1a1b;            /* legacy alias -> charcoal (no gold on real site) */
  --color-accent: #1c1a1b;
  --color-border: #e5e0db;
  --color-overlay: rgba(0, 0, 0, 0.28);

  --font-display: 'Parisian', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', Arial, sans-serif;
  --font-eyebrow: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --font-script: 'Parisian', 'Cormorant Garamond', serif;

  /* Type scale mirrored exactly from the live site (Elementor kit-1171) */
  --fs-eyebrow: 17px;
  --fs-body: 16px;
  --fs-h1: 48px;
  --fs-h2: 36px;
  --fs-h2-compact: 30px;
  --fs-h3: 28px;
  --fs-h4: 22px;
  --fs-tagline: 48px;
  --fs-hero-tagline: 60px;
  --tracking-eyebrow: 1.2px;
  --tracking-button: 1.2px;

  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 300;
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-charcoal);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p {
  margin-bottom: 1rem;
  font-size: var(--fs-body);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section--cream { background: var(--color-cream); }
.section--off-white { background: var(--color-off-white); }
.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}
.section--dark h2,
.section--dark h3 { color: var(--color-white); }

.text-center { text-align: center; }

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  letter-spacing: var(--tracking-button);
  text-transform: uppercase;
  border: 2px solid var(--color-charcoal);
  color: var(--color-charcoal);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn:hover {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn--filled {
  background: var(--color-charcoal);
  color: var(--color-white);
}

.btn--filled:hover {
  background: transparent;
  color: var(--color-charcoal);
}

.btn--white {
  border-color: var(--color-white);
  color: var(--color-white);
}

.btn--white:hover {
  background: var(--color-white);
  color: var(--color-charcoal);
}

/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--color-white);
  z-index: 1000;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header__logo img {
  height: 45px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header__actions a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  white-space: nowrap;
}

.header__actions a:hover {
  color: var(--color-gold);
}

.header__phone {
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2.5px;
  background: var(--color-charcoal);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================== NAVIGATION ===================== */
.nav {
  display: none;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__item {
  position: relative;
  display: flex;
  flex-direction: column;
}

.nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  white-space: nowrap;
  border-bottom: 1px solid var(--color-border);
}

.nav__link:hover {
  color: var(--color-gold);
}

.nav__link--has-dropdown::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  margin-left: 1rem;
  transition: transform var(--transition);
}

.nav__item.open .nav__link--has-dropdown::after {
  content: '−';
}

.nav__dropdown {
  display: none;
  padding: 0 0 0.5rem 1rem;
  background: var(--color-white);
}

.nav__item.open .nav__dropdown {
  display: block;
}

.nav__dropdown a {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
}

.nav__dropdown a:hover {
  color: var(--color-gold);
}

.nav__sub-dropdown {
  position: relative;
}

.nav__sub-dropdown > a::after {
  content: '›';
  float: right;
  margin-left: 1rem;
}

.nav__sub-items {
  display: none;
  padding-left: 1rem;
}

.nav__sub-dropdown:hover .nav__sub-items {
  display: block;
}

.nav__sub-items a {
  font-size: 0.75rem;
  padding: 0.4rem 0;
}

/* Slide-out panel */
.nav--slide {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 380px;
  max-width: 90vw;
  height: 100vh;
  background: var(--color-white);
  z-index: 999;
  padding: calc(var(--header-height) + 1rem) 2rem 2rem;
  overflow-y: auto;
  box-shadow: -4px 0 30px rgba(0,0,0,0.12);
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav--slide.open {
  right: 0;
}

.nav--slide .nav__list {
  display: flex;
  flex-direction: column;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.active {
  opacity: 1;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
  padding: 2rem;
}

.hero__content h1 {
  color: var(--color-white);
  font-family: var(--font-eyebrow);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.hero__content .tagline,
.hero__content .hero__subhead {
  font-family: var(--font-display);
  font-style: normal;
  font-size: var(--fs-hero-tagline);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  opacity: 1;
  color: var(--color-white);
  text-transform: none;
}

.hero__content .hero__h1--caps {
  font-family: var(--font-display);
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  font-weight: 400;
}

/* Service page heroes */
.hero--service {
  height: 55vh;
  min-height: 380px;
}

.hero--service .hero__content h1 {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.5rem;
}

.hero--service .hero__content .tagline {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.hero--service .hero__content h2 {
  color: var(--color-white);
  font-family: var(--font-display);
  font-style: normal;
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1.2;
  margin-top: 0.5rem;
}

/* ===================== INTRO SECTION ===================== */
.intro {
  padding: 5rem 0;
  text-align: center;
}

.intro__tagline {
  font-family: var(--font-display);
  font-size: var(--fs-tagline);
  font-style: normal;
  font-weight: 400;
  color: var(--color-charcoal);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.2;
}

/* ===================== FEATURES GRID ===================== */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 2rem;
}

.feature {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.feature__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature h3 {
  margin-bottom: 1rem;
  font-size: var(--fs-h3);
  line-height: 1.2;
}

.feature p {
  color: var(--color-text);
  font-size: var(--fs-body);
  line-height: 1.6;
}

/* ===================== TWO COLUMN LAYOUT ===================== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col--reverse {
  direction: rtl;
}

.two-col--reverse > * {
  direction: ltr;
}

.two-col__image {
  border-radius: 4px;
  overflow: hidden;
}

.two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col__content h2 {
  margin-bottom: 1.5rem;
}

.two-col__content p {
  margin-bottom: 1.2rem;
  color: var(--color-text-light);
}

.two-col__content .btn {
  margin-top: 1rem;
}

/* ===================== WELLNESS STATEMENT ===================== */
.wellness-statement {
  background: var(--color-cream);
  padding: 5rem 0;
  text-align: center;
}

.wellness-statement__quote {
  font-family: var(--font-display);
  font-size: var(--fs-h2-compact);
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-charcoal);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.wellness-statement p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--color-text);
  font-size: var(--fs-body);
  line-height: 1.7;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 5rem 0;
  background: var(--color-off-white);
}

.testimonial-slider {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: 2rem;
}

.testimonial.active {
  display: block;
}

.testimonial__text {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  color: var(--color-charcoal);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.testimonial__author {
  font-family: var(--font-eyebrow);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-charcoal);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testimonial-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-taupe-light);
  cursor: pointer;
  transition: background var(--transition);
}

.testimonial-dots span.active {
  background: var(--color-gold);
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: var(--fs-h2-compact);
  line-height: 1.2;
}

.cta-banner p {
  font-style: normal;
  font-weight: 300;
  opacity: 0.92;
  margin-bottom: 1.25rem;
  font-size: var(--fs-body);
  line-height: 1.7;
}

.cta-banner .signature {
  width: 120px;
  margin: 2rem auto 0;
  filter: invert(1);
}

/* ===================== EVENTS ===================== */
.events-section {
  padding: 4rem 0;
  text-align: center;
}

.events-section h3 {
  margin-bottom: 1rem;
}

.events-section p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
  color: var(--color-text-light);
}

/* ===================== BLOG GRID ===================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.blog-card__image {
  height: 220px;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__content {
  padding: 1.5rem;
}

.blog-card__content h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card__content .btn {
  font-size: 14px;
  padding: 12px 24px;
  letter-spacing: var(--tracking-button);
}

/* ===================== WHY US SECTION ===================== */
.why-us {
  padding: 5rem 0;
}

.why-us__content {
  max-width: 800px;
  margin: 0 auto;
}

.why-us h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.why-us p {
  color: var(--color-text-light);
  margin-bottom: 1.2rem;
}

.why-us strong {
  color: var(--color-charcoal);
}

/* ===================== NEWSLETTER ===================== */
.newsletter {
  background: var(--color-taupe-light);
  padding: 3rem 0;
  text-align: center;
}

.newsletter h3 {
  margin-bottom: 0.5rem;
}

.newsletter p {
  max-width: 500px;
  margin: 0 auto 1.5rem;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.newsletter__form {
  display: flex;
  max-width: 450px;
  margin: 0 auto;
  gap: 0;
}

.newsletter__form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-right: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
}

.newsletter__form button {
  padding: 12px 24px;
  background: var(--color-charcoal);
  color: var(--color-white);
  border: 1px solid var(--color-charcoal);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.newsletter__form button:hover {
  background: transparent;
  color: var(--color-charcoal);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--color-dark);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.footer__col {
  display: flex;
  flex-direction: column;
}

/* Column 1 — brand / newsletter */
.footer__col--brand {
  gap: 1rem;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-white);
  margin: 0 0 0.4rem;
  line-height: 1.2;
}

.footer__heading--social {
  margin: 1.5rem 0 0.85rem;
  font-weight: 600;
}

.footer__copy {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  max-width: 340px;
  margin: 0 0 0.5rem;
}

.footer__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding-bottom: 0.7rem;
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-white);
  width: fit-content;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color var(--transition), border-color var(--transition);
}

.footer__cta:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.footer__cta-icon {
  display: inline-flex;
  color: var(--color-white);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}

.footer__cta-icon svg {
  width: 26px;
  height: 26px;
}

.footer__cta:hover .footer__cta-icon {
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer__copyright {
  margin: 2.5rem 0 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
}

.footer__credit {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
  margin: 0.4rem 0 0;
}

.footer__credit a {
  color: rgba(255,255,255,0.55);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color var(--transition);
}

.footer__credit a:hover { color: var(--color-gold); }

/* Column 2 — contact icon-boxes (chat + phone full-width, then 2-col grid) */
.footer__col--contact {
  gap: 0.4rem;
  border-left: 1px solid rgba(255,255,255,0.12);
  padding-left: 2.5rem;
}

.footer__contact-row {
  width: 100%;
}

.footer__contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem 0;
  margin-top: 0.4rem;
  position: relative;
}

.footer__contact-grid::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.12);
}

.footer__contact-grid > .footer__icon-box:nth-child(odd) {
  padding-right: 1.5rem;
}

.footer__contact-grid > .footer__icon-box:nth-child(even) {
  padding-left: 1.5rem;
}

.footer__icon-box {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 0 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}

.footer__icon-box:hover { color: var(--color-white); }

.footer__icon-box-icon {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--color-white);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  transition: color var(--transition);
}

.footer__icon-box-icon svg {
  width: 22px;
  height: 22px;
}

.footer__icon-box:hover .footer__icon-box-icon {
  color: var(--color-gold);
}

.footer__icon-box-text {
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer__icon-box-text u {
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 400;
  color: var(--color-white);
  display: inline;
}

/* Column 3 — text links + Follow Us + social icons */
.footer__col--links {
  align-items: flex-start;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
}

.footer__links a {
  display: inline-block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-gold);
}

.footer__social {
  display: flex;
  gap: 1rem;
  margin-top: 0.25rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: color var(--transition), transform var(--transition);
}

.footer__social a svg {
  width: 22px;
  height: 22px;
}

.footer__social a:hover {
  color: var(--color-gold);
  transform: translateY(-2px);
}

/* ===================== SERVICE PAGE STYLES ===================== */
/* Treatment highlights — white card that overlaps the hero from below */
.hero--service + .section .treatment-highlights,
.hero + .section .treatment-highlights {
  margin-top: -100px;
  background: var(--color-white);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  padding: 2rem 2.5rem;
  position: relative;
  z-index: 3;
  border: 1px solid var(--color-border);
}

.hero--service + .section .treatment-highlights::before,
.hero + .section .treatment-highlights::before {
  content: "Treatment Highlights";
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-charcoal);
  text-align: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 1.5rem;
  grid-column: 1 / -1;
}

.treatment-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  text-align: center;
}

.treatment-highlight {
  padding: 0.5rem;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.treatment-highlight h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.25rem;
}

.treatment-highlight .value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-charcoal);
  margin: 0;
}

.what-treats {
  padding: 4rem 0;
}

.what-treats__conditions {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-gold);
  text-align: center;
  margin-bottom: 2rem;
}

.process-steps {
  counter-reset: step;
  max-width: 700px;
  margin: 2rem auto;
}

.process-step {
  counter-increment: step;
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  border-left: 2px solid var(--color-taupe-light);
}

.process-step::before {
  content: counter(step);
  position: absolute;
  left: -18px;
  top: 1.5rem;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-charcoal);
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step h4 {
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.process-step p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2rem;
}

.benefit {
  text-align: center;
  padding: 2rem 1.5rem;
}

.benefit__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
}

.benefit h4,
.benefit h2 {
  margin-bottom: 0.8rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.benefit p {
  color: var(--color-text-light);
  font-size: 0.92rem;
}

/* FAQs */
.faqs {
  padding: 4rem 0;
}

.faqs h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 2.5rem 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-charcoal);
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--transition);
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 1.5rem 0;
  color: var(--color-text-light);
  font-size: 0.95rem;
}

.faq-item.open .faq-answer {
  max-height: 800px;
}

/* Related treatments */
.related {
  padding: 4rem 0;
  text-align: center;
}

.related h2 {
  margin-bottom: 2rem;
}

.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.related__card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition);
}

.related__card:hover {
  transform: translateY(-4px);
}

.related__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related__card h4 {
  padding: 1.2rem;
  font-size: 1.1rem;
}

/* Pre/Post care */
.care-instructions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.care-block h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.care-block__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.care-item {
  margin-bottom: 1.5rem;
}

.care-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.care-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

/* ===================== ABOUT PAGE ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

.team-card {
  text-align: center;
}

.team-card__image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  margin-bottom: 0.3rem;
}

.team-card__role {
  color: var(--color-gold);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===================== CONTACT PAGE ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-detail {
  margin-bottom: 1.5rem;
}

.contact-detail h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  color: var(--color-gold);
}

.contact-detail p, .contact-detail a {
  color: var(--color-text);
  font-size: 0.95rem;
}

.contact-map {
  height: 400px;
  border: 1px solid var(--color-border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* New live-style contact layout */
.contact-page {
  padding-bottom: 6rem;
}

.contact-page__header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-page__header h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-charcoal);
}

.contact-info__phone a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-charcoal);
  text-decoration: none;
  letter-spacing: 0;
}

.contact-info__phone a:hover {
  color: var(--color-gold);
}

.contact-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-hours li {
  display: flex;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 0.2rem 0;
}

.contact-hours li span:first-child {
  min-width: 7rem;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .contact-page__header {
    margin-bottom: 2.5rem;
  }
}

/* ===================== MEMBERSHIPS ===================== */
.membership-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.membership-card {
  border: 1px solid var(--color-border);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform var(--transition);
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.membership-card h3 {
  margin-bottom: 1rem;
}

.membership-card p {
  color: var(--color-text-light);
}

/* ===================== PAGE CONTENT ===================== */
.page-content {
  padding: 5rem 0;
  margin-top: var(--header-height);
}

.page-content h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.page-content__body {
  max-width: 800px;
  margin: 0 auto;
}

.page-content__body p {
  margin-bottom: 1.2rem;
  color: var(--color-text-light);
}

.page-content__body h2 {
  margin: 2rem 0 1rem;
}

.page-content__body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
  list-style: disc;
}

.page-content__body li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

/* ===================== LOCATION TOGGLE ===================== */
.location-bar {
  background: var(--color-cream);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ===================== BLOG POST ===================== */
.blog-post {
  padding: 4rem 0;
}

.blog-post__header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.blog-post__meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.blog-post__header h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.blog-post__lead {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--color-text-light);
  line-height: 1.5;
}

.blog-post__hero {
  max-width: 1100px;
  margin: 0 auto 3rem;
  height: 400px;
  overflow: hidden;
  border-radius: 4px;
}

.blog-post__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post__body {
  max-width: 760px;
  margin: 0 auto;
}

.blog-post__body h2 {
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
}

.blog-post__body h3 {
  font-size: 1.4rem;
  margin: 2rem 0 0.8rem;
  color: var(--color-charcoal);
}

.blog-post__body h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 1.8rem 0 0.5rem;
}

.blog-post__body p {
  margin-bottom: 1.2rem;
  color: var(--color-text);
  font-size: 1rem;
  line-height: 1.8;
}

.blog-post__body ul,
.blog-post__body ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style: disc;
}

.blog-post__body ol {
  list-style: decimal;
}

.blog-post__body li {
  margin-bottom: 0.6rem;
  color: var(--color-text);
  line-height: 1.7;
}

.blog-post__body strong {
  color: var(--color-charcoal);
  font-weight: 600;
}

.blog-post__body blockquote {
  border-left: 3px solid var(--color-gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-charcoal);
}

.blog-post__cta {
  margin: 3rem auto 0;
  padding: 2.5rem;
  text-align: center;
  background: var(--color-cream);
  max-width: 760px;
  border-radius: 4px;
}

.blog-post__cta h3 {
  margin-bottom: 1rem;
}

.blog-post__cta p {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.blog-post__share {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ===================== RELATED POSTS (blog post footer) ===================== */
.related-posts {
  margin: 5rem auto 0;
  max-width: 1100px;
  padding-top: 4rem;
  border-top: 1px solid var(--color-border);
}

.related-posts h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

.related-posts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2.5rem;
}

@media (max-width: 768px) {
  .related-posts__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.related-post-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.related-post-card__thumb {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  margin-bottom: 1.25rem;
}

.related-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.related-post-card__thumb:hover img {
  transform: scale(1.04);
}

.related-post-card__body h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.85rem;
  letter-spacing: 0;
}

.related-post-card__body h3 a {
  color: var(--color-charcoal);
  text-decoration: none;
}

.related-post-card__body h3 a:hover {
  color: var(--color-gold);
}

.related-post-card__body p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.related-post-card__more {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--color-charcoal);
  padding-bottom: 0.2rem;
  transition: color var(--transition), border-color var(--transition);
}

.related-post-card__more:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* Blog filter / category bar */
.blog-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.blog-filter {
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-charcoal);
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.blog-filter:hover,
.blog-filter.active {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination a,
.pagination span {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-charcoal);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.pagination a:hover,
.pagination .current {
  background: var(--color-charcoal);
  color: var(--color-white);
  border-color: var(--color-charcoal);
}

/* ===================== HOMEPAGE ADDITIONS ===================== */

/* Section heading (centered intro above feature grid) */
.section__heading.text-center {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.section__heading h2 { margin-bottom: 1.5rem; }
.section__heading p { font-size: 1.05rem; line-height: 1.75; }

/* Vimeo-style video frame */
.video-section { padding: 3rem 0 5rem; }
.video-frame {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  background: var(--color-charcoal);
  aspect-ratio: 16 / 9;
}
.video-frame__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.video-frame__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.video-frame__link:hover img { transform: scale(1.03); }
.video-frame__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.95);
  pointer-events: none;
  transition: color var(--transition);
}
.video-frame__play svg {
  width: 86px;
  height: 86px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}
.video-frame__link:hover .video-frame__play { color: var(--color-white); }

/* Wellness statement (now a two-col with image) */
.wellness-statement { padding: 5rem 0; }
.wellness-statement .two-col__content { padding-right: 1rem; }
.wellness-statement__quote {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.25;
  color: var(--color-charcoal);
  margin-bottom: 1.5rem;
}

/* Image flip helpers (live site uses CSS transforms on certain photos) */
.img--flip-x { transform: scaleX(-1); }
.img--flip-y { transform: scaleY(-1); }

/* Accent image strip between Origins and Helping Patients */
.accent-image-section { padding: 0 0 5rem; }
.accent-image-section .container { padding: 0 2rem; }
.accent-image {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: block;
  height: auto;
}

/* Inline signature image for Helping Patients */
.signature--inline {
  width: 240px;
  max-width: 100%;
  margin: 1.5rem 0 1rem;
}

/* Long arrow icon button */
.btn--with-arrow::after {
  content: '\2192';
  display: inline-block;
  margin-left: 0.6rem;
  transition: transform var(--transition);
}
.btn--with-arrow:hover::after { transform: translateX(4px); }

/* "Stay In The Loop" teaser strip */
.loop-teaser__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.loop-teaser__divider {
  border: none;
  border-top: 1px solid var(--color-charcoal);
  margin: 1rem 0;
}
.loop-teaser__cta {
  margin: 0.5rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}
.loop-teaser p {
  font-size: 0.92rem;
  color: var(--color-text);
  margin-top: 1.5rem;
}

/* Why Form & Function: now has a full-width banner image */
.why-us {
  padding: 0 0 5rem;
  background: var(--color-white);
}
.why-us__banner {
  width: 100%;
  margin: 0 0 4rem;
  overflow: hidden;
  background: var(--color-charcoal);
}
.why-us__banner img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.why-us__content {
  max-width: 880px;
  margin: 0 auto;
}
.why-us__content h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Events section is now a two-col layout with image */
.events-section .two-col__content h3 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

/* ===================== SHINE CTA (mid-page accent) ===================== */
.shine-cta {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  color: var(--color-white);
  background: var(--color-charcoal);
  overflow: hidden;
}

.shine-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.shine-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shine-cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 27, 0.55);
  z-index: 1;
}

.shine-cta .container {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.shine-cta__eyebrow {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.shine-cta h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-white);
  margin: 0;
}

/* Text-only shine CTA (no background image) */
.shine-cta--text {
  background: var(--color-charcoal);
  padding: 5.5rem 0;
}

.shine-cta--text h2 {
  margin-bottom: 1.25rem;
}

.shine-cta__lead {
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--color-white);
}

.shine-cta__sub {
  font-family: var(--font-body);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 2rem;
  max-width: 480px;
}

.shine-cta--text .btn {
  background: var(--color-white);
  color: var(--color-charcoal);
  border-color: var(--color-white);
}

.shine-cta--text .btn:hover {
  background: var(--color-gold);
  color: var(--color-white);
  border-color: var(--color-gold);
}

/* Compact service hero (Tier 1 pages without subhead) */
.hero--compact {
  height: 45vh;
  min-height: 320px;
}

/* Team card link styling */
.team-card__name {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  text-align: center;
}

.team-card__name a {
  color: var(--color-charcoal);
  text-decoration: none;
}

.team-card__name a:hover {
  color: var(--color-gold);
}

/* ===================== WHERE BEAUTY & WELLNESS MEET ===================== */
.where-beauty {
  padding: 6rem 0;
  background: var(--color-secondary);
  text-align: center;
}

.where-beauty__intro {
  max-width: 720px;
  margin: 0 auto 3rem;
  color: var(--color-text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.where-beauty__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pillar {
  text-align: center;
}

.pillar__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--color-charcoal);
}

.pillar p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===================== TWO-COL TEXT+IMAGE FOR SERVICE PAGES ===================== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
}

.service-block--reverse {
  direction: rtl;
}
.service-block--reverse > * {
  direction: ltr;
}

.service-block__eyebrow {
  font-family: var(--font-eyebrow);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.75rem;
}

.service-block__heading {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--color-charcoal);
}

.service-block p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.service-block__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1024px) {
  .service-block { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 0; }
  .service-block--reverse { direction: ltr; }
  .where-beauty__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .shine-cta { padding: 5rem 0; }
  .shine-cta h2 { font-size: 1.6rem; }
}

/* ===================== KATONAH AUTO-SHOW POPUP ===================== */
.katonah-popup {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  animation: katonahFadeIn 0.5s ease;
}

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

@keyframes katonahFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.katonah-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 26, 27, 0.7);
  cursor: pointer;
}

.katonah-popup__panel {
  position: relative;
  background: var(--color-cream);
  padding: 3rem 2.5rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.katonah-popup__panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--color-charcoal);
}

.katonah-popup__panel p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom: 1.75rem;
}

.katonah-popup__close {
  position: absolute;
  top: 0.6rem;
  right: 0.85rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--color-charcoal);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.katonah-popup__close:hover {
  color: var(--color-gold);
}

body.has-modal {
  overflow: hidden;
}

/* ===================== LONG-FORM SERVICE PROSE (ExoMind / Mental / Sexual Wellness) ===================== */
.service-intro {
  background: var(--color-cream);
  padding: 5rem 0;
}

.service-intro .container {
  max-width: 800px;
}

.service-intro p {
  color: var(--color-text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.service-prose {
  max-width: 820px;
  margin: 0 auto;
}

.service-prose h2 {
  margin-bottom: 1.5rem;
}

.service-prose p {
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  counter-reset: bl;
}

.benefit-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2rem;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.7;
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.4rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

.benefit-list--ordered {
  counter-reset: bl;
}

.benefit-list--ordered li {
  counter-increment: bl;
  padding-left: 2.5rem;
}

.benefit-list--ordered li::before {
  content: counter(bl);
  background: transparent;
  width: auto;
  height: auto;
  top: 0.85rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-gold);
}

/* Two-column split for sexual-wellness Women / Men */
.split-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .split-cards { grid-template-columns: 1fr; gap: 2rem; }
}

.split-card {
  background: var(--color-white);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
}

.split-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--color-charcoal);
}

.split-card p {
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  :root {
    --fs-h1: 36px;
    --fs-h2: 36px;
    --fs-h2-compact: 30px;
    --fs-h3: 28px;
    --fs-tagline: 36px;
    --fs-hero-tagline: 36px;
  }
  .hero__content h1 { font-size: 36px; }
  .hero__content .tagline { font-size: 36px; }
  .intro__tagline { font-size: 36px; }

  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col--reverse { direction: ltr; }

  .features { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .treatment-highlights { grid-template-columns: 1fr; }
  .care-instructions { grid-template-columns: 1fr; }
  .related__grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .membership-cards { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__col--links { grid-column: span 2; }
  .footer__col--contact { padding-left: 0; border-left: none; }
}

@media (max-width: 767px) {
  :root {
    --fs-h1: 36px;
    --fs-h2: 36px;
    --fs-h2-compact: 30px;
    --fs-h3: 28px;
    --fs-tagline: 28px;
    --fs-hero-tagline: 35px;
  }
  .hero__content h1 { font-size: 36px; }
  .hero__content .tagline { font-size: 35px; }
  .intro__tagline { font-size: 28px; }
  .section { padding: 3rem 0; }
  .container { padding: 0 1.25rem; }
  .footer { padding: 3.5rem 0 2.5rem; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__col--links { grid-column: auto; }
  .footer__col--contact { padding-left: 0; border-left: none; }
  .footer__contact-grid { grid-template-columns: 1fr; gap: 0.4rem; }
  .footer__copy { max-width: 100%; }
}
