/* ============================================
   COCO BEAUTY HOUSE — Stylesheet v3
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* ── Core palette ── */
  --white:        #FFFFFF;
  --blush:        #F7ECED;   /* light blush — section alternating bg */
  --blush-mid:    #E8C9CC;   /* borders, dividers */
  --rose:         #B5404F;   /* primary accent — buttons, overlines, highlights */
  --rose-dark:    #892F3C;   /* hover state */
  --rose-pale:    #F2D8DA;   /* tinted boxes, badges */
  --charcoal:     #1C1C24;   /* dark sections: footer, stat band, CTA */
  --charcoal-soft:#2E2E3A;   /* hover on dark bg */
  --text:         #1C1C24;   /* headings */
  --text-body:    #4A4553;   /* body paragraphs */
  --text-muted:   #7E7A89;   /* labels, captions */

  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', Arial, sans-serif;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:       0 2px 16px rgba(28, 28, 36, 0.09);
  --shadow-md:    0 8px 36px rgba(28, 28, 36, 0.13);
  --shadow-lg:    0 18px 60px rgba(28, 28, 36, 0.16);
  --radius:       4px;
  --radius-lg:    12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── TYPOGRAPHY ──────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.6rem); }
h3 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
h4 { font-size: 1.35rem; }

.overline {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 0.75rem;
}

p { font-size: 1rem; color: var(--text-body); line-height: 1.8; }
p.lead { font-size: 1.15rem; }

/* ─── LAYOUT ──────────────────────────────────── */

.container    { width: min(1180px, 92vw); margin-inline: auto; }
.container-sm { width: min(820px, 92vw);  margin-inline: auto; }
.section      { padding: 100px 0; }
.section-sm   { padding: 70px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.text-center   { text-align: center; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }

/* ─── BUTTONS ─────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

/* Dark charcoal bg — white text */
.btn-primary {
  background: var(--charcoal);
  color: #FFFFFF;
  border: 2px solid var(--charcoal);
}
.btn-primary:hover {
  background: var(--charcoal-soft);
  border-color: var(--charcoal-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Rose accent bg — white text */
.btn-gold {
  background: var(--rose);
  color: #FFFFFF;
  border: 2px solid var(--rose);
}
.btn-gold:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline — charcoal border + text, fills on hover */
.btn-outline {
  background: transparent;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* White outline — for use on dark bg */
.btn-outline-white {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  color: #FFFFFF;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* Ghost / inline link */
.btn-ghost {
  color: var(--rose);
  border-bottom: 1px solid currentColor;
  padding: 0 0 2px;
  border-radius: 0;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}
.btn-ghost:hover { letter-spacing: 0.2em; }

/* ─── HEADER / NAV ────────────────────────────── */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

/* ── Transparent state (over hero) — everything white ── */
.site-header:not(.scrolled) .logo-main { color: #FFFFFF; }
.site-header:not(.scrolled) .logo-sub  { color: rgba(255,255,255,0.75); }
.site-header:not(.scrolled) .nav-link  { color: #FFFFFF; }
.site-header:not(.scrolled) .nav-link:hover { color: rgba(255,255,255,0.75); }
.site-header:not(.scrolled) .nav-link::after { background: #FFFFFF; }
.site-header:not(.scrolled) .hamburger span { background: #FFFFFF; }

/* ── Scrolled state — white bg, dark text ── */
.site-header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--blush-mid);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: min(1180px, 92vw);
  margin-inline: auto;
}

.site-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 400;
  font-style: italic;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-top: -1px;
}

.main-nav { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  transition: color 0.3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width 0.3s var(--ease);
}
.nav-link:hover, .nav-link.active { color: var(--rose); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Book Now in nav — rose pill, clearly visible */
.nav-cta {
  margin-left: 8px;
  background: var(--rose) !important;
  color: #FFFFFF !important;
  border: 2px solid var(--rose) !important;
  padding: 10px 24px !important;
  border-radius: 2px;
  font-size: 0.72rem !important;
}
.nav-cta:hover {
  background: var(--rose-dark) !important;
  border-color: var(--rose-dark) !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
}
.nav-cta::after { display: none; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  cursor: pointer;
  z-index: 950;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav .nav-link { font-size: 1rem; letter-spacing: 0.18em; }

/* ─── PAGE HERO ───────────────────────────────── */

.page-hero {
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 60px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,36,0.65) 0%, rgba(28,28,36,0.2) 60%, transparent 100%);
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.page-hero-content .overline { color: #F2B8BD; }
.page-hero-content h1 { color: var(--white); }

/* ─── SECTION HEADERS ─────────────────────────── */

.section-header { margin-bottom: 60px; }
.section-header h2 { margin-top: 8px; }
.section-header p { max-width: 520px; margin-top: 16px; }
.section-header.center { text-align: center; }
.section-header.center p { margin-inline: auto; }

.deco-line {
  display: inline-block;
  width: 48px; height: 1px;
  background: var(--rose);
  vertical-align: middle;
  margin-right: 12px;
}

/* ─── SERVICE CARDS ───────────────────────────── */

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  box-shadow: var(--shadow);
  border: 1px solid var(--blush-mid);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.04); }
.service-card-img-wrap { overflow: hidden; }
.service-card-body { padding: 30px; }
.service-card-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.service-card-body p { font-size: 0.9rem; margin-bottom: 20px; }

/* ─── ICON CARDS ──────────────────────────────── */

.icon-card {
  padding: 40px 32px;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  box-shadow: var(--shadow);
  border: 1px solid var(--blush-mid);
}
.icon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.icon-card svg { width: 44px; height: 44px; margin-inline: auto; margin-bottom: 18px; color: var(--rose); }
.icon-card h4 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 10px; }
.icon-card p { font-size: 0.875rem; }

/* ─── SPLIT LAYOUT ────────────────────────────── */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-img { position: relative; }
.split-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.split-img .deco-frame {
  position: absolute;
  inset: -14px;
  border: 1px solid var(--blush-mid);
  border-radius: 16px;
  z-index: -1;
}
.split-text { display: flex; flex-direction: column; gap: 20px; }
.split-text h2 { margin-top: 8px; }

/* ─── STAT BAND ───────────────────────────────── */

.stat-band {
  background: var(--charcoal);
  padding: 60px 0;
}
.stat-band .grid-4 { gap: 20px; }
.stat-item { text-align: center; padding: 20px; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 3.2rem;
  font-weight: 300;
  font-style: italic;
  color: #F2B8BD;
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ─── TREATMENT LIST ──────────────────────────── */

.treatment-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--blush-mid);
}
.treatment-item:last-child { border-bottom: none; }
.treatment-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--blush-mid);
  line-height: 1;
}
.treatment-body h3 { font-size: 1.45rem; margin-bottom: 8px; }
.treatment-body p { font-size: 0.9rem; }
.treatment-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--rose-pale);
  color: var(--rose-dark);
}

/* ─── FAQ ─────────────────────────────────────── */

.faq-item { border-bottom: 1px solid var(--blush-mid); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text);
  text-align: left;
  gap: 20px;
}
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--blush-mid);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--rose);
}
.faq-item.open .faq-icon {
  background: var(--rose);
  color: var(--white);
  border-color: var(--rose);
  transform: rotate(45deg);
}
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a-inner { padding-bottom: 22px; color: var(--text-body); font-size: 0.95rem; line-height: 1.8; }
.faq-item.open .faq-a { max-height: 300px; }

/* ─── TESTIMONIALS ────────────────────────────── */

.testimonial-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--blush-mid);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--rose-pale);
  line-height: 1;
  position: absolute;
  top: 12px; left: 30px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-top: 30px;
  margin-bottom: 24px;
}
.testimonial-author { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.stars { color: var(--rose); font-size: 0.85rem; margin-bottom: 6px; letter-spacing: 2px; }

/* ─── CTA BANNER ──────────────────────────────── */

.cta-banner {
  background: var(--charcoal);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(181,64,79,0.2) 0%, transparent 70%);
}
.cta-banner * { position: relative; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner .overline { color: #F2B8BD; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 40px; }
.btn-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── CONTACT ─────────────────────────────────── */

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--blush-mid);
}
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--rose-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--rose);
}
.contact-detail h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 4px; color: var(--text-muted); font-family: var(--font-sans); }
.contact-detail p, .contact-detail a { font-size: 1rem; color: var(--text); transition: color 0.3s; }
.contact-detail a:hover { color: var(--rose); }

.contact-form { background: var(--blush); border-radius: var(--radius-lg); padding: 48px; border: 1px solid var(--blush-mid); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--blush-mid);
  border-radius: var(--radius);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ─── MAP ─────────────────────────────────────── */

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ─── ABOUT ───────────────────────────────────── */

.about-value { border-left: 3px solid var(--rose); padding-left: 24px; margin-bottom: 32px; }
.about-value h4 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 6px; }
.about-value p { font-size: 0.9rem; }

.credential-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rose-pale);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rose-dark);
  margin: 6px;
}

/* ─── FOOTER ──────────────────────────────────── */

.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { color: var(--white); font-size: 2rem; }
.footer-brand .logo-sub { color: #F2B8BD; margin-bottom: 20px; }
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.8; max-width: 260px; margin-top: 10px; }

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F2B8BD;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.3s; }
.footer-col ul a:hover { color: var(--white); }
.footer-col p { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.footer-col a { transition: color 0.3s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 0.775rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ─── HOME HERO ───────────────────────────────── */

.home-hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.06);
  animation: heroZoom 12s ease forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(28,28,36,0.65) 0%, rgba(28,28,36,0.1) 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
}
.hero-content .overline { color: #F2B8BD; animation: fadeUp 0.8s var(--ease) both; }
.hero-content h1 { color: var(--white); margin: 12px 0 24px; animation: fadeUp 0.8s 0.15s var(--ease) both; }
.hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 440px; margin-bottom: 40px; animation: fadeUp 0.8s 0.3s var(--ease) both; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp 0.8s 0.45s var(--ease) both; }

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

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s 1s var(--ease) both;
}
.hero-scroll span { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.4} 50%{opacity:1} }

/* ─── PROMO BAND ──────────────────────────────── */

.promo-band {
  background: var(--rose-pale);
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid var(--blush-mid);
  border-bottom: 1px solid var(--blush-mid);
}
.promo-band p { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-body); }
.promo-band strong { color: var(--rose); }

/* ─── HOURS ───────────────────────────────────── */

.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--blush-mid); font-size: 0.9rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 500; color: var(--text); }
.hours-row .time { color: var(--text-body); }

/* ─── FADE IN ─────────────────────────────────── */

.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

/* ─── BREADCRUMB ──────────────────────────────── */

.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.breadcrumb a { color: inherit; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: 0.5; }

/* ─── RESPONSIVE ──────────────────────────────── */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .grid-2, .split { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .hero-content h1 { font-size: 3rem; }
  .page-hero { height: 42vh; }
  .treatment-item { grid-template-columns: 50px 1fr; }
  .contact-form, .contact-info-card { padding: 32px 24px; }
  .stat-band .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.6rem; }
  .btn-row { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-actions { flex-direction: column; }
  .grid-4 { grid-template-columns: 1fr; }
}
