/* Fleur Beauty & Wellness — Modern lifestyle beauty (Sorbet-inspired) */

:root {
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --stone: #EDE8E1;
  --espresso: #2B231E;
  --espresso-soft: #5C5248;
  --sage: #607A66;
  --sage-dark: #4D6354;
  --teal: #40A497;
  --lavender: #B18FCF;
  --blush: #F3E8EE;
  --blush-deep: #E8D4E0;
  --accent: var(--teal);
  --accent-2: var(--lavender);
  --gradient-hero: linear-gradient(135deg, #f0faf8 0%, #faf5f8 45%, #faf8f5 100%);
  --gradient-promo: linear-gradient(90deg, var(--sage-dark), var(--teal));
  --promo-banner-image: url('../images/Fleur%20beauty%20banner%20bg.png');
  --bg-promo: linear-gradient(90deg, rgba(77, 99, 84, 0.82) 0%, rgba(64, 164, 151, 0.78) 100%), var(--promo-banner-image);
  --shadow-sm: 0 2px 12px rgba(43, 35, 30, 0.06);
  --shadow-md: 0 8px 32px rgba(43, 35, 30, 0.1);
  --shadow-lg: 0 20px 50px rgba(43, 35, 30, 0.14);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --header-h: 4.5rem;
  --tabs-bar-h: 6.5rem;
  --scroll-anchor-offset: calc(var(--header-h) + var(--tabs-bar-h) + 3rem);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --max-width: 76rem;
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --transition: 0.6s var(--ease);
  --duration-reveal: 1.35s;
  --duration-hero-fade: 1.85s;
  --duration-hero-zoom: 9s;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

html.nav-open { overflow: hidden; }

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--espresso-soft);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: var(--header-h);
}

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

a { color: inherit; text-decoration: none; transition: color 0.45s var(--ease), transform 0.45s var(--ease), background 0.45s var(--ease), box-shadow 0.45s var(--ease); }

ul, ol { list-style: 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;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.1;
}

.container { width: min(var(--max-width), 92%); margin-inline: auto; }
.container--wide { width: min(88rem, 94%); margin-inline: auto; }

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity var(--duration-reveal) var(--ease-out), transform var(--duration-reveal) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.is-scrolled { box-shadow: var(--shadow-md); }

.site-header__inner {
  width: min(88rem, 94%);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.site-logo img,
.site-footer__brand img {
  height: 3.5rem;
  width: auto;
  background: var(--white);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(43, 35, 30, 0.06);
}

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

.site-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}

.site-nav a:hover,
.site-nav a.is-active { color: var(--teal); }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 1.75rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), background 0.45s var(--ease);
}

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

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(64, 164, 151, 0.35);
}

.btn--primary:hover {
  background: #359688;
  box-shadow: 0 8px 28px rgba(64, 164, 151, 0.45);
}

.btn--secondary {
  background: var(--white);
  color: var(--espresso);
  border: 2px solid var(--stone);
}

.btn--secondary:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--book {
  background: var(--lavender);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(177, 143, 207, 0.4);
  padding: 0.75rem 1.5rem;
}

.btn--book:hover {
  background: #9d7bc0;
  box-shadow: 0 8px 24px rgba(177, 143, 207, 0.5);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}

.btn--outline-light:hover {
  background: var(--white);
  color: var(--teal);
}

/* ——— Hero (home) ——— */
.hero-home {
  position: relative;
  min-height: min(92vh, 780px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 0 5.5rem;
}

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

.hero-home__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity var(--duration-hero-fade) var(--ease-out), transform var(--duration-hero-zoom) var(--ease);
}

.hero-home__slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-home__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(43, 35, 30, 0.08) 0%,
    rgba(43, 35, 30, 0.18) 45%,
    rgba(43, 35, 30, 0.55) 78%,
    rgba(43, 35, 30, 0.82) 100%
  );
  pointer-events: none;
}

.hero-home__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: 0.5rem;
}

.hero-home h1 {
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 600;
  margin-bottom: 0.75rem;
  max-width: 18ch;
  margin-inline: auto;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero-home h1 em,
.hero-home__glow {
  font-style: italic;
  color: #72ffed;
  text-shadow:
    0 0 10px rgba(114, 255, 237, 0.48),
    0 0 22px rgba(114, 255, 237, 0.38),
    0 0 40px rgba(64, 164, 151, 0.28),
    0 0 64px rgba(64, 164, 151, 0.18);
}

.hero-home__sub {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #72ffed;
  margin: 0 auto 1.25rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-home__dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.6rem;
}

.hero-home__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: width 0.55s var(--ease), background 0.55s var(--ease);
}

.hero-home__dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.hero-home__dot.is-active {
  width: 1.75rem;
  background: var(--teal);
}

/* ——— Experience cards (Sorbet grid) ——— */
.experiences {
  padding: 2rem 0 5rem;
}

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

.experiences__intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
}

/* "deserve" — letters appear one by one when parent reveals */
.deserve-type {
  display: inline;
  font-style: italic;
}

.deserve-type__char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.2em);
}

.reveal.is-visible .deserve-type__char {
  animation: deserveCharIn 0.55s var(--ease-out) forwards;
  animation-delay: calc(var(--deserve-delay, 0.45s) + var(--i) * 0.14s);
}

@keyframes deserveCharIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.experience-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform 0.65s var(--ease), box-shadow 0.65s var(--ease);
}

.experience-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-lg);
}

.experience-card__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.9s var(--ease);
}

.experience-card:hover .experience-card__bg {
  transform: scale(1.06);
}

.experience-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,35,30,0.85) 0%, rgba(43,35,30,0.2) 55%, transparent 100%);
}

.experience-card__body {
  position: relative;
  z-index: 2;
  padding: 2rem;
  width: 100%;
  color: var(--white);
}

.experience-card__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.35rem;
}

.experience-card h3 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.experience-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.experience-card__actions .btn--secondary {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.experience-card__actions .btn--secondary:hover {
  background: var(--white);
  color: var(--espresso);
  border-color: var(--white);
}

/* ——— Stats ——— */
.stats {
  background: var(--white);
  padding: 3.5rem 0;
  border-block: 1px solid var(--stone);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
  justify-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 14rem;
}

.stat-item__number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
  display: block;
}

.stat-item__number span { font-size: 0.6em; color: var(--lavender); }

.stat-item__label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--espresso-soft);
  margin-top: 0.5rem;
}

/* ——— Promise / feel-good ——— */
.promise {
  padding: 5rem 0;
  background: var(--blush);
}

.promise__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.promise__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

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

.promise h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1rem;
}

.promise h2 em { color: var(--teal); font-style: italic; }

.promise p { margin-bottom: 1rem; max-width: none; }

.promise__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

/* ——— Page hero (inner) ——— */
.page-hero {
  background: var(--gradient-hero);
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  margin-bottom: 0.5rem;
}

.page-hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 0.75rem;
}

.page-hero p {
  margin-inline: auto;
  font-size: 1.1rem;
  max-width: 36rem;
}

.page-treatments .page-hero {
  background: var(--bg-promo);
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  color: var(--white);
}

.page-treatments .page-hero h1 {
  color: var(--white);
}

.page-treatments .page-hero__eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.page-treatments .page-hero p {
  color: rgba(255, 255, 255, 0.92);
}

.page-branches .page-hero {
  background: var(--bg-promo);
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  color: var(--white);
}

.page-branches .page-hero h1 {
  color: var(--white);
}

.page-branches .page-hero__eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.page-branches .page-hero p {
  color: rgba(255, 255, 255, 0.92);
}

/* ——— Treatments ——— */
.treatment-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.5rem 0 2rem;
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stone);
}

.tab-btn {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--stone);
  background: var(--white);
  color: var(--espresso-soft);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.45s var(--ease);
}

.tab-btn:hover { border-color: var(--teal); color: var(--teal); }

.tab-btn.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.page-treatments {
  scroll-padding-top: var(--scroll-anchor-offset);
}

.treatments-panels {
  padding: 1rem 0 4rem;
  overflow: visible;
}

.page-treatments .treatments-panels .treatment-panel {
  overflow: visible;
}

/* First category visible on load; later panels still use .reveal on scroll */
.page-treatments .treatments-panels > .treatment-panel:first-child {
  opacity: 1;
  transform: none;
}

.treatment-panel {
  display: block;
  scroll-margin-top: var(--scroll-anchor-offset);
  padding-bottom: 3rem;
}

.treatment-panel__header {
  scroll-margin-top: var(--scroll-anchor-offset);
  padding-top: 0.25rem;
}

.treatment-panel__header h2 {
  scroll-margin-top: var(--scroll-anchor-offset);
}

.page-treatments .treatment-panel__header h2 {
  color: var(--lavender);
}

.page-treatments .treatment-panel + .treatment-panel {
  padding-top: 2rem;
}

.page-treatments .treatment-panel:not(:last-child) {
  padding-bottom: 2.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--stone);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.treatment-panel__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.treatment-panel__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.treatment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--stone);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.treatment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(64, 164, 151, 0.3);
}

.treatment-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender);
}

.treatment-card h3 {
  font-size: 1.35rem;
  font-family: var(--font-serif);
}

.treatment-card p {
  font-size: 0.9rem;
  flex: 1;
  max-width: none;
}

.treatment-card__meta {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal);
  padding-top: 0.75rem;
  border-top: 1px dashed var(--stone);
}

.treatment-card__meta a {
  color: var(--teal);
  font-weight: 600;
}

.treatment-card__meta a:hover {
  text-decoration: underline;
}

.treatment-card__details {
  font-size: 0.82rem;
  color: var(--espresso-soft);
}

.treatment-card__details dt {
  font-weight: 700;
  color: var(--espresso);
  display: inline;
}

.treatment-card__details dd {
  display: inline;
  margin-left: 0.25rem;
}

.treatment-card__details dd::after {
  content: '';
  display: block;
  margin-bottom: 0.35rem;
}

/* ——— Branches ——— */
.branches-layout {
  padding: 2rem 0 5rem;
}

.find-store h2 {
  text-align: center;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.5rem;
}

.branch-locator__filters {
  margin-bottom: 2.5rem;
}

.district-filter-mobile {
  display: none;
}

.district-filter-mobile label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso-soft);
  margin-bottom: 0.5rem;
}

.district-filter-mobile select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--espresso);
  padding: 0.9rem 2.75rem 0.9rem 1rem;
  border: 2px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235C5248' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") no-repeat right 1rem center;
  background-size: 12px 8px;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.district-filter-mobile select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(64, 164, 151, 0.2);
}

.district-filters {
  display: none;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

@media (min-width: 769px) {
  .district-filter-mobile {
    display: none;
  }

  .district-filters {
    display: flex;
  }
}

.district-btn {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.35rem;
  flex-shrink: 0;
  border: 2px solid var(--stone);
  background: var(--white);
  color: var(--espresso-soft);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.45s var(--ease);
}

.district-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.district-btn.is-active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(64, 164, 151, 0.35);
}

.branch-maps {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--stone);
  min-height: 22rem;
}

.branch-map-panel {
  display: none;
  min-height: 22rem;
  background: var(--stone);
}

.branch-map-panel.is-active {
  display: block;
  animation: fadeUp 0.85s var(--ease-out);
}

.branch-map-panel iframe {
  display: block;
  width: 100%;
  min-height: 22rem;
  height: min(50vh, 28rem);
  border: 0;
}

.branch-contact {
  padding: 0 0 5rem;
}

.branch-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: start;
}

.branch-contact__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 0.5rem;
}

.branch-contact h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.branch-contact__lead {
  margin-bottom: 2rem;
  max-width: 32rem;
}

.branch-locations {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.branch-location {
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.branch-location h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 0.35rem;
}

.branch-location__meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.branch-location__phones {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.branch-location__address,
.branch-location__phone {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
}

.branch-location__address {
  margin-bottom: 0.75rem;
  color: var(--espresso-soft);
  line-height: 1.5;
}

.branch-location__phone {
  font-weight: 600;
  color: var(--teal);
  transition: color 0.35s var(--ease), gap 0.35s var(--ease);
}

.branch-location__phone:hover {
  color: var(--sage-dark);
  gap: 0.85rem;
}

.branch-location__icon {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15rem;
  color: var(--teal);
}

.branch-contact__reach {
  padding-top: 1.5rem;
  border-top: 1px solid var(--stone);
}

.branch-contact__reach-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.85rem;
}

.contact-channels {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  transition: color 0.35s var(--ease);
}

.contact-channel:hover {
  color: var(--teal);
}

.contact-channel__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--stone);
  color: var(--teal);
}

.contact-channel__icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.contact-channel__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.contact-channel__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso-soft);
}

.contact-channel__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.35;
  word-break: break-word;
}

.contact-channel:hover .contact-channel__value {
  color: inherit;
}

.branch-contact .branch-form {
  padding: 2rem 2.25rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone);
  box-shadow: var(--shadow-lg);
}

.branch-detail {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.35rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.branch-detail__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.branch-detail__value a { color: var(--teal); font-weight: 600; }
.branch-detail__value a:hover { text-decoration: underline; }

.branch-form__field select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--espresso);
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2340A497' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.branch-form__field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(64, 164, 151, 0.15);
}

.branch-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.branch-form__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--espresso);
}

.branch-form__field {
  margin-bottom: 1rem;
}

.branch-form__field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}

.branch-form__field label span {
  color: var(--lavender);
}

.branch-form__field input,
.branch-form__field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--espresso);
  background: var(--cream);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.branch-form__field input:focus,
.branch-form__field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(64, 164, 151, 0.15);
}

.branch-form__field textarea {
  resize: vertical;
  min-height: 6rem;
}

.branch-form__submit {
  width: 100%;
  margin-top: 0.25rem;
}

.branch-form__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.branch-form__status {
  font-size: 0.9rem;
  margin-top: 0.75rem;
  min-height: 1.25rem;
}

.branch-form__status:empty {
  display: none;
}

.branch-form__status.is-success {
  color: var(--teal);
  font-weight: 600;
}

.branch-form__status.is-error {
  color: #b33a3a;
  font-weight: 500;
}

.hours-list li { padding: 0.2rem 0; }
.hours-list li span {
  display: inline-block;
  min-width: 5.5rem;
  color: var(--espresso-soft);
}

/* ——— CTA band ——— */
.cta-band {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-promo);
  background-size: contain;
  background-position: center;
  background-repeat: repeat;
  color: var(--white);
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 32rem;
  opacity: 0.92;
  color: var(--white);
}

.cta-band .btn--primary {
  background: var(--white);
  color: var(--teal);
  box-shadow: var(--shadow-md);
}

.cta-band .btn--primary:hover {
  background: var(--cream);
  color: var(--sage-dark);
}

/* ——— Footer ——— */
.site-footer {
  background: var(--white);
  color: var(--espresso);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--stone);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.site-footer__brand img {
  margin-bottom: 1rem;
}

.site-footer__brand p {
  font-size: 0.9rem;
  max-width: 20rem;
  line-height: 1.6;
  color: var(--espresso-soft);
}

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer nav a {
  color: var(--espresso);
}

.site-footer nav a:hover { color: var(--teal); }

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.footer-link__icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--teal);
}

.footer-link:hover .footer-link__icon {
  color: var(--sage-dark);
}

.site-footer__book {
  margin-top: 1rem;
  background: var(--teal);
}

.site-footer__book:hover {
  background: #359688;
}

.site-footer__cta-mobile {
  display: none;
}

.site-footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--stone);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--espresso-soft);
}

.site-footer__bottom a {
  color: var(--teal);
  font-weight: 600;
}

.site-footer__bottom a:hover {
  color: var(--sage-dark);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .experiences__grid { grid-template-columns: 1fr; }
  .experience-card { min-height: 280px; }
  .stats__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    justify-items: center;
    max-width: 18rem;
    margin-inline: auto;
  }
  .promise__inner { grid-template-columns: 1fr; }
  .branch-contact__grid { grid-template-columns: 1fr; }
  .branch-maps,
  .branch-map-panel {
    min-height: 13rem;
  }

  .branch-map-panel iframe {
    min-height: 13rem;
    height: 13rem;
  }
  .branch-contact .branch-form { padding: 1.75rem 1.5rem; }
  .contact-channels { flex-direction: column; gap: 1rem; }
  .site-footer__grid { grid-template-columns: 1fr; }
}

[id] {
  scroll-margin-top: calc(var(--header-h) + 1.25rem);
}

@media (max-width: 768px) {
  :root {
    --header-h: 5rem;
  }

  body { padding-top: var(--header-h); }

  .nav-toggle {
    display: flex;
    align-self: center;
    position: relative;
    z-index: 1002;
  }

  .site-header__inner {
    align-items: center;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - var(--header-h));
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--white);
    padding: 2rem 1.5rem 2.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translate3d(100%, 0, 0);
    visibility: hidden;
    opacity: 0;
    transition: transform 0.55s var(--ease), opacity 0.5s var(--ease), visibility 0.5s;
    pointer-events: none;
  }

  .site-nav.is-open {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--stone);
    font-size: 0.9rem;
  }

  .site-nav .btn--book {
    margin-top: 1.25rem;
    text-align: center;
    border-bottom: none;
    width: 100%;
  }

  .header-cta-desktop { display: none; }

  /* Hero copy pinned to bottom of viewport on mobile */
  .hero-home {
    min-height: calc(100dvh - var(--header-h));
    min-height: calc(100svh - var(--header-h));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1rem 5.25rem;
  }

  .hero-home__content {
    position: relative;
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding-bottom: 0;
  }

  .hero-home__content.container {
    width: min(var(--max-width), 92%);
  }

  .hero-home h1 {
    max-width: 18ch;
  }

  .hero-home__dots {
    bottom: 1.35rem;
  }

  .experiences {
    padding: 1.25rem 0 2.25rem;
  }

  .experiences__intro {
    margin-bottom: 1.25rem;
  }

  .stats {
    padding: 1.75rem 0;
    text-align: center;
  }

  .promise {
    padding: 2.25rem 0;
  }

  .promise__inner {
    gap: 1.5rem;
  }

  .page-hero {
    padding: 1.5rem 0 1.25rem;
  }

  .treatment-tabs {
    padding: 0.65rem 0 0.85rem;
  }

  .tab-btn {
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
  }

  .treatments-panels {
    padding: 0.35rem 0 1.75rem;
  }

  .page-treatments .treatment-panel {
    padding-bottom: 2.25rem;
  }

  .page-treatments .treatment-panel + .treatment-panel {
    padding-top: 1.5rem;
  }

  .page-treatments .treatment-panel:not(:last-child) {
    padding-bottom: 2rem;
    margin-bottom: 1.25rem;
  }

  .treatment-panel__header {
    margin-bottom: 1.25rem;
  }

  .branches-layout {
    padding: 0.75rem 0 1.25rem;
  }

  .branch-maps,
  .branch-map-panel {
    min-height: 10.5rem;
  }

  .branch-map-panel iframe {
    min-height: 10.5rem;
    height: 10.5rem;
  }

  .branch-locator__filters {
    margin-bottom: 1.25rem;
  }

  .district-filter-mobile {
    display: block;
  }

  .district-filters {
    display: none;
  }

  .district-btn {
    padding: 0.65rem 1.15rem;
    font-size: 0.72rem;
  }

  .branch-contact {
    padding: 0 0 2rem;
  }

  .branch-contact__grid {
    gap: 1.25rem;
  }

  .branch-contact__lead {
    margin-bottom: 1rem;
  }

  .branch-locations {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .branch-location {
    padding: 1rem 1.1rem;
  }

  .branch-contact .branch-form {
    padding: 1.25rem 1.15rem;
  }

  .branch-contact__reach {
    padding-top: 1rem;
  }

  .cta-band {
    padding: 2rem 1.15rem;
  }

  .site-footer {
    padding: 2rem 0 1.25rem;
  }

  .stats .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stats__grid {
    width: 100%;
    max-width: 16rem;
  }

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

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    justify-items: center;
  }

  .site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer__brand img {
    margin-inline: auto;
  }

  .site-footer__brand p {
    max-width: 22rem;
    margin-inline: auto;
  }

  .site-footer__book {
    align-self: center;
  }

  .site-footer__services {
    display: none;
  }

  .site-footer__brand .site-footer__book {
    display: none;
  }

  .site-footer__cta-mobile {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 1.25rem;
  }

  .site-footer__cta-mobile .site-footer__book {
    display: inline-flex;
    width: 100%;
    max-width: 20rem;
    margin-top: 0;
  }

  .site-footer h4 {
    text-align: center;
    width: 100%;
  }

  .site-footer nav {
    align-items: center;
  }

  .footer-link {
    justify-content: center;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
  }
}

@media (min-width: 769px) {
  .site-nav .btn--book { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .branch-map-panel.is-active, .treatment-panel.is-active { animation: none; }
  .hero-home__slide { transition: opacity 0.4s; transform: none; }
  .deserve-type__char {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
