/* ============================================================
   med spa social club — stylesheet
   editorial · soft luxury · feminine
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Tokens ---------- */
:root {
  /* Brand colors */
  --charcoal: #363232;
  --charcoal-90: rgba(54, 50, 50, 0.9);
  --charcoal-60: rgba(54, 50, 50, 0.6);
  --charcoal-40: rgba(54, 50, 50, 0.4);
  --charcoal-15: rgba(54, 50, 50, 0.15);
  --charcoal-08: rgba(54, 50, 50, 0.08);
  --blush: #ffd9d6;
  --blush-soft: #fce8e6;
  --blush-deep: #f5b8b4;
  --cream: #faf7f4;
  --paper: #fbf8f5;
  --white: #ffffff;

  /* Fonts */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Type scale */
  --fs-eyebrow: 0.72rem;
  --fs-body:    1rem;
  --fs-lead:    1.18rem;
  --fs-h6:      1.1rem;
  --fs-h5:      1.4rem;
  --fs-h4:      2rem;
  --fs-h3:      2.6rem;
  --fs-h2:      clamp(2.4rem, 5vw, 4.6rem);
  --fs-h1:      clamp(3rem, 9vw, 8.5rem);

  /* Layout */
  --max-w:  1320px;
  --pad-x:  clamp(1.25rem, 4vw, 3rem);
  --gap:    1.5rem;
  --radius: 6px;

  /* Motion */
  --ease:    cubic-bezier(.2,.7,.2,1);
  --ease-in: cubic-bezier(.5,0,.75,0);
  --t-fast:  180ms;
  --t-med:   360ms;
  --t-slow:  720ms;
}

/* ---------- Base ---------- */
body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--blush); color: var(--charcoal); }

/* ---------- Reusable atoms ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--charcoal-40);
}

.serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.italic { font-style: italic; }

.h-display {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h2);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.h-display .italic { font-style: italic; font-weight: 400; }

.h-mega {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: var(--fs-h1);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--charcoal);
}
.h-mega .italic { font-style: italic; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: all var(--t-med) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn .arrow {
  display: inline-flex;
  transition: transform var(--t-med) var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--charcoal);
  color: var(--white);
}
.btn-primary:hover { background: #1f1d1d; }

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal-15);
}
.btn-ghost:hover { border-color: var(--charcoal); background: var(--cream); }

.btn-blush {
  background: var(--blush);
  color: var(--charcoal);
}
.btn-blush:hover { background: var(--blush-deep); }

/* Section heading block (eyebrow + heading + sub) */
.section-head {
  max-width: 880px;
  margin-bottom: 5rem;
}
.section-head .eyebrow { margin-bottom: 1.5rem; }
.section-head .h-display { margin-bottom: 1.5rem; }
.section-head .sub {
  font-size: var(--fs-lead);
  color: var(--charcoal-60);
  max-width: 580px;
  line-height: 1.55;
}

section { padding: clamp(5rem, 10vw, 9rem) 0; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all var(--t-med) var(--ease);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--charcoal-08);
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img {
  height: 60px;
  width: auto;
  filter: brightness(0) saturate(100%);  /* black logo on light bg */
  transition: opacity var(--t-med) var(--ease);
}
.nav-logo:hover img { opacity: 0.75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--charcoal-90);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--t-fast) var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--charcoal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med) var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: flex;
  justify-content: flex-end;
}
.nav-cta .btn {
  padding: 0.75rem 1.4rem;
  font-size: 0.8rem;
}

.nav-menu-toggle {
  display: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav-menu-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--charcoal);
  transition: all var(--t-med) var(--ease);
}
.nav-menu-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-menu-toggle.open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-inner { grid-template-columns: auto 1fr auto; }
  .nav-logo { justify-self: start; }
  .nav-menu-toggle { display: flex; justify-self: end; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed;
    inset: 70px 0 0 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateY(-100%);
    transition: transform var(--t-med) var(--ease);
    border-bottom: 1px solid var(--charcoal-08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.5rem; font-family: var(--font-serif); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding-top: clamp(7rem, 14vw, 10rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}
.hero-text { padding-bottom: 1.5rem; }
.hero-eyebrow { margin-bottom: 2.25rem; }
.hero h1 {
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: var(--fs-lead);
  color: var(--charcoal-60);
  max-width: 480px;
  line-height: 1.55;
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-meta {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--charcoal-08);
  font-size: 0.82rem;
  color: var(--charcoal-60);
  letter-spacing: 0.04em;
}
.hero-meta strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-visual .main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.hero-visual .side-img {
  position: absolute;
  width: 36%;
  aspect-ratio: 3/4;
  object-fit: cover;
  bottom: -3rem;
  left: -3rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.hero-visual .blush-shape {
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--blush);
  border-radius: 50%;
  top: -2rem;
  right: -2rem;
  z-index: -1;
  opacity: 0.6;
}

.hero-decor-text {
  position: absolute;
  top: 50%;
  right: -20%;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12rem;
  color: var(--blush-soft);
  z-index: -1;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 4rem; }
  .hero-visual .side-img { width: 30%; bottom: -1.5rem; left: -1rem; }
  .hero-meta { flex-wrap: wrap; gap: 1.25rem 2rem; }
  .hero-meta > div { flex: 1 1 40%; }
}

/* ============================================================
   MARQUEE (services strip)
   ============================================================ */
.marquee {
  border-top: 1px solid var(--charcoal-08);
  border-bottom: 1px solid var(--charcoal-08);
  background: var(--cream);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: marquee 38s linear infinite;
}
.marquee-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
}
.marquee-item::after {
  content: "•";
  color: var(--blush-deep);
  font-style: normal;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  background: var(--charcoal);
  color: var(--white);
  padding: 4.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat {
  text-align: left;
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--blush);
}
.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1rem; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--paper);
  position: relative;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.about-visual .main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-visual .accent-img {
  position: absolute;
  width: 45%;
  aspect-ratio: 1;
  object-fit: cover;
  bottom: -2.5rem;
  right: -2.5rem;
  border-radius: var(--radius);
  border: 8px solid var(--paper);
}
.about-visual::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--blush);
  top: -2rem;
  left: -2rem;
  z-index: -1;
  border-radius: var(--radius);
  opacity: 0.4;
}
.about-text .h-display { margin: 1.5rem 0 2rem; }
.about-text p {
  font-size: 1.05rem;
  color: var(--charcoal-90);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.2rem;
  float: left;
  line-height: 0.9;
  padding: 0.4rem 0.5rem 0 0;
  color: var(--charcoal);
}
.about-signature {
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--charcoal-60);
  font-size: 1.05rem;
}
@media (max-width: 880px) {
  .about-inner { grid-template-columns: 1fr; gap: 4rem; }
  .about-visual .accent-img { width: 38%; bottom: -1.5rem; right: -1rem; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--t-med) var(--ease);
  cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); }
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(54,50,50,0.15), transparent 40%);
}
.service-card-body {
  padding: 1.75rem 1.75rem 2rem;
}
.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--blush-deep);
  margin-bottom: 1rem;
  display: block;
}
.service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.service-card-body p {
  font-size: 0.95rem;
  color: var(--charcoal-60);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
}
.service-link .arrow { transition: transform var(--t-med) var(--ease); }
.service-card:hover .service-link .arrow { transform: translateX(4px); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESULTS / PORTFOLIO
   ============================================================ */
.results { background: var(--paper); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.result-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.result-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.result-card:hover img { transform: scale(1.05); }
.result-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent 50%);
  color: var(--white);
}
.result-card h4 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}
.result-card-treatment {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}
.result-card:nth-child(3n+2) { margin-top: 3rem; }

@media (max-width: 900px) {
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .result-card:nth-child(3n+2) { margin-top: 0; }
  .result-card:nth-child(even) { margin-top: 2rem; }
}
@media (max-width: 600px) {
  .results-grid { grid-template-columns: 1fr; gap: 1rem; }
  .result-card:nth-child(even) { margin-top: 0; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--blush);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: "";
  font-family: var(--font-serif);
  position: absolute;
  font-size: 30rem;
  font-style: italic;
  top: -3rem;
  right: 2rem;
  line-height: 1;
  color: rgba(255,255,255,0.4);
  pointer-events: none;
  user-select: none;
}
.testimonials .section-head { position: relative; z-index: 1; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.testimonial {
  background: var(--white);
  padding: 2.25rem 2rem 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  color: var(--blush-deep);
  font-size: 1rem;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--charcoal);
  flex: 1;
  letter-spacing: -0.01em;
}
.testimonial-author {
  padding-top: 1.25rem;
  border-top: 1px solid var(--charcoal-08);
}
.testimonial-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.testimonial-treatment {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal-60);
}
@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--white); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
}
.process-grid::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--charcoal-15);
  z-index: 0;
}
.process-step {
  position: relative;
  padding-top: 2.75rem;
  z-index: 1;
}
.process-step::before {
  content: "";
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--blush-deep);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--white);
}
.process-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--blush-deep);
  margin-bottom: 1rem;
  display: block;
}
.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.process-step p {
  color: var(--charcoal-60);
  font-size: 0.96rem;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .process-grid::before { display: none; }
}
@media (max-width: 500px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INSTAGRAM
   ============================================================ */
.instagram { background: var(--paper); }
.instagram-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
}
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--charcoal-15);
  border-radius: 999px;
  transition: all var(--t-med) var(--ease);
  white-space: nowrap;
}
.instagram-handle:hover { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.625rem;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.ig-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile:hover::after { opacity: 0.15; }
@media (max-width: 880px) {
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-head { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--white); }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 8vw, 6rem);
  align-items: start;
}
.faq-list { border-top: 1px solid var(--charcoal-15); }
.faq-item {
  border-bottom: 1px solid var(--charcoal-15);
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.75rem 0;
  text-align: left;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  transition: color var(--t-fast) var(--ease);
}
.faq-q:hover { color: var(--charcoal-60); }
.faq-q .plus {
  width: 22px; height: 22px;
  flex-shrink: 0;
  position: relative;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--charcoal);
  transition: transform var(--t-med) var(--ease);
}
.faq-q .plus::before {
  top: 50%; left: 0; right: 0;
  height: 1px;
  transform: translateY(-50%);
}
.faq-q .plus::after {
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}
.faq-item.open .plus::after { transform: translateX(-50%) rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med) var(--ease);
}
.faq-a-inner {
  padding: 0 0 1.75rem;
  color: var(--charcoal-60);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
}
.faq-item.open .faq-a { max-height: 500px; }

@media (max-width: 880px) {
  .faq-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle at center, rgba(255,217,214,0.25), transparent 65%);
  top: -20%;
  right: -20%;
  pointer-events: none;
}
.cta-banner-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-banner .eyebrow { color: var(--blush); }
.cta-banner .eyebrow::before { background: var(--blush); opacity: 0.4; }
.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: var(--fs-h2);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 1.5rem 0;
  color: var(--white);
}
.cta-banner h2 .italic { font-style: italic; color: var(--blush); }
.cta-banner .sub {
  font-size: var(--fs-lead);
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cream);
  padding: 5rem 0 2.5rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand .footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) saturate(100%);
  margin-bottom: 1.5rem;
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--charcoal-60);
  line-height: 1.45;
  max-width: 340px;
}
.footer-col h5 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal-60);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.footer-col a,
.footer-col li {
  display: block;
  font-size: 0.95rem;
  color: var(--charcoal-90);
  padding: 0.3rem 0;
  transition: color var(--t-fast) var(--ease);
  list-style: none;
}
.footer-col a:hover { color: var(--charcoal-60); }
.footer-col .hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  gap: 1rem;
}
.footer-col .hours-row span:first-child { color: var(--charcoal-60); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--charcoal-08);
  font-size: 0.82rem;
  color: var(--charcoal-60);
  letter-spacing: 0.04em;
}
.footer-socials {
  display: flex;
  gap: 1.5rem;
}
.footer-socials a {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   CMS — Edit mode
   ============================================================ */
.cms-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: transform var(--t-med) var(--ease), background var(--t-med) var(--ease);
  opacity: 0.5;
}
.cms-fab:hover { opacity: 1; transform: scale(1.05); }
.cms-fab svg { width: 18px; height: 18px; }

.cms-toolbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-family: var(--font-sans);
}
body.cms-edit .cms-toolbar { display: flex; }
body.cms-edit { padding-top: 56px; }
body.cms-edit .nav { top: 56px; }

.cms-toolbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cms-badge {
  background: var(--blush);
  color: var(--charcoal);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cms-toolbar-hint {
  font-size: 0.86rem;
  opacity: 0.7;
}
.cms-toolbar-actions {
  display: flex;
  gap: 0.5rem;
}
.cms-btn {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
  transition: all var(--t-fast) var(--ease);
}
.cms-btn:hover { background: rgba(255,255,255,0.1); }
.cms-btn-primary {
  background: var(--blush);
  color: var(--charcoal);
  border-color: var(--blush);
}
.cms-btn-primary:hover { background: var(--white); border-color: var(--white); }

body.cms-edit [data-cms] {
  outline: 1px dashed rgba(255, 99, 99, 0.3);
  outline-offset: 4px;
  border-radius: 3px;
  cursor: text;
  transition: outline-color var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
  position: relative;
}
body.cms-edit [data-cms]:hover {
  outline-color: rgba(255, 99, 99, 0.8);
  background-color: rgba(255, 217, 214, 0.15);
}
body.cms-edit [data-cms]:focus {
  outline: 2px solid #ff6363;
  outline-offset: 4px;
  background-color: rgba(255, 217, 214, 0.3);
}
body.cms-edit [data-cms-img] {
  outline: 1px dashed rgba(255, 99, 99, 0.3);
  outline-offset: 4px;
  cursor: pointer;
  transition: outline-color var(--t-fast) var(--ease);
  position: relative;
}
body.cms-edit [data-cms-img]:hover {
  outline-color: rgba(255, 99, 99, 0.8);
}
body.cms-edit [data-cms-img]::after {
  content: "Click to change image";
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: var(--charcoal);
  color: var(--white);
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-family: var(--font-sans);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  pointer-events: none;
  z-index: 2;
}
body.cms-edit [data-cms-img]:hover::after { opacity: 1; }

/* Modal */
.cms-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cms-modal.show { display: flex; }
.cms-modal-box {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
}
.cms-modal-box h3 {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.cms-modal-box p {
  color: var(--charcoal-60);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.cms-modal-box input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--charcoal-15);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-sans);
  margin-bottom: 1rem;
  color: var(--charcoal);
  background: var(--white);
}
.cms-modal-box input:focus {
  outline: none;
  border-color: var(--charcoal);
}
.cms-modal-actions {
  display: flex;
  gap: 0.625rem;
  justify-content: flex-end;
}
.cms-modal-actions button {
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.cms-modal-actions .secondary {
  background: transparent;
  color: var(--charcoal-60);
}
.cms-modal-actions .primary {
  background: var(--charcoal);
  color: var(--white);
}
.cms-error {
  color: #d44;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: none;
}
.cms-error.show { display: block; }

/* Toast */
.cms-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--charcoal);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.86rem;
  z-index: 3000;
  transition: transform var(--t-med) var(--ease);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  pointer-events: none;
}
.cms-toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   CMS — visible "Edit link" badge on every editable link
   ============================================================ */
body.cms-edit [data-cms-href] {
  position: relative;
  overflow: visible;
}
body.cms-edit a.btn[data-cms-href],
body.cms-edit [data-cms-href].service-link,
body.cms-edit [data-cms-href].instagram-handle {
  overflow: visible;
}
.cms-link-edit-btn {
  position: absolute;
  top: -14px;
  right: -8px;
  display: none;
  align-items: center;
  gap: 4px;
  padding: 4px 8px 4px 6px;
  background: #ff6363;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(255, 99, 99, 0.35), 0 0 0 2px var(--white);
  z-index: 50;
  white-space: nowrap;
  transition: background 180ms var(--ease), transform 180ms var(--ease), opacity 180ms var(--ease);
  pointer-events: auto;
  opacity: 0.75;
}
.cms-link-edit-btn:hover {
  background: #e04545;
  transform: scale(1.08);
  opacity: 1;
}
.cms-link-edit-btn svg {
  flex-shrink: 0;
}
/* Always show the badge when the page is in edit mode */
body.cms-edit [data-cms-href] > .cms-link-edit-btn {
  display: inline-flex;
}

/* For tiny links (nav, footer socials), let the badge breathe a bit */
body.cms-edit .nav-links [data-cms-href] > .cms-link-edit-btn,
body.cms-edit .footer-socials [data-cms-href] > .cms-link-edit-btn {
  top: -22px;
  right: 50%;
  transform: translateX(50%);
}
body.cms-edit .nav-links [data-cms-href] > .cms-link-edit-btn:hover,
body.cms-edit .footer-socials [data-cms-href] > .cms-link-edit-btn:hover {
  transform: translateX(50%) scale(1.08);
}

/* ============================================================
   CMS — let clicks reach images that sit under decorative overlays
   ============================================================ */
/* Result cards: overlay covers the whole card so the title/treatment
   sit readable over the image. In edit mode, let clicks pass through
   the overlay to the image — but keep the editable text clickable. */
body.cms-edit .result-card-overlay {
  pointer-events: none;
}
body.cms-edit .result-card-overlay [data-cms] {
  pointer-events: auto;
}

/* Service cards and Instagram tiles have ::after pseudo-elements
   (subtle gradient on services, hover dimmer on instagram) that catch
   clicks. Disable them in edit mode so the image is reachable. */
body.cms-edit .service-card-img::after,
body.cms-edit .ig-tile::after {
  pointer-events: none;
}

/* Hero decorative blush circle also sits over the image area */
body.cms-edit .hero-visual .blush-shape {
  pointer-events: none;
}