/* ============================================================
   SHEAR Studio — Shared Stylesheet
   Light theme: warm cream + deep rose accent (#9B3D60)
   ============================================================ */

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

:root {
  --bg:        #FAFAF5;
  --bg-warm:   #F5F1EA;
  --white:     #FFFFFF;
  --text:      #1C1915;
  --muted:     #8A8480;
  --accent:    #9B3D60;
  --accent-lt: #F7ECF1;
  --border:    rgba(28,25,21,0.09);

  --shadow-sm: 0 1px 4px rgba(28,25,21,0.06);
  --shadow-md: 0 4px 18px rgba(28,25,21,0.08);
  --shadow-lg: 0 14px 44px rgba(28,25,21,0.12);

  /* Bubble effect design tokens */
  --b-bg:       linear-gradient(148deg, #FDF5F8 0%, #FAE8F0 60%, #F4DDE9 100%);
  --b-bg-cream: linear-gradient(148deg, #FDFAF5 0%, #FAF5E8 60%, #F3ECD8 100%);
  --b-bg-lav:   linear-gradient(148deg, #F8F5FD 0%, #F0EAF8 60%, #E6DCF2 100%);
  --b-border:   2.5px solid rgba(255,255,255,0.44);
  --b-r:        28px;
  --b-shadow:
    /* slab edge layers */
    0 1px 0 rgba(120,55,78,0.22),
    0 2px 0 rgba(120,55,78,0.17),
    0 3px 0 rgba(120,55,78,0.12),
    0 4px 0 rgba(120,55,78,0.08),
    0 5px 0 rgba(120,55,78,0.04),
    /* deep ambient drop */
    0 10px 28px rgba(155,61,96,0.18),
    0 28px 56px rgba(155,61,96,0.14),
    0 52px 80px rgba(155,61,96,0.07),
    /* top soft edge */
    inset 0 2px 0 rgba(255,255,255,0.62),
    /* bottom depth edge */
    inset 0 -2px 0 rgba(155,61,96,0.22),
    /* side rim */
    inset 2px 0 0 rgba(255,255,255,0.38),
    inset -1px 0 0 rgba(155,61,96,0.06);
  --b-shadow-up:
    /* slab edge layers — deeper when lifted */
    0 2px 0 rgba(120,55,78,0.26),
    0 4px 0 rgba(120,55,78,0.20),
    0 6px 0 rgba(120,55,78,0.15),
    0 8px 0 rgba(120,55,78,0.10),
    0 10px 0 rgba(120,55,78,0.05),
    /* lifted ambient drop */
    0 20px 44px rgba(155,61,96,0.28),
    0 40px 80px rgba(155,61,96,0.22),
    0 70px 110px rgba(155,61,96,0.12),
    /* top soft edge */
    inset 0 2px 0 rgba(255,255,255,0.62),
    /* bottom depth edge */
    inset 0 -2px 0 rgba(155,61,96,0.28),
    /* side rim */
    inset 2px 0 0 rgba(255,255,255,0.38),
    inset -1px 0 0 rgba(155,61,96,0.08);
  --b-shadow-field:
    0 1px 0 rgba(120,55,78,0.16),
    0 2px 0 rgba(120,55,78,0.10),
    0 3px 0 rgba(120,55,78,0.06),
    0 6px 20px rgba(155,61,96,0.12),
    0 16px 36px rgba(155,61,96,0.08),
    inset 0 2px 0 rgba(255,255,255,0.60),
    inset 0 -2px 0 rgba(185,120,150,0.16);
  --b-shadow-field-focus:
    0 0 0 3.5px rgba(155,61,96,0.14),
    0 1px 0 rgba(120,55,78,0.20),
    0 2px 0 rgba(120,55,78,0.14),
    0 3px 0 rgba(120,55,78,0.08),
    0 8px 28px rgba(155,61,96,0.16),
    0 20px 44px rgba(155,61,96,0.10),
    inset 0 2px 0 rgba(255,255,255,0.60),
    inset 0 -2px 0 rgba(155,61,96,0.18);

  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   24px;
  --r-pill: 999px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
}

img { display: block; max-width: 100%; }
a { color: inherit; }


/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 50;
  background: rgba(250,250,245,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled { box-shadow: 0 2px 24px rgba(28,25,21,0.09); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  letter-spacing: 0.09em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.22s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.26s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--text); }
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }

.nav-cta {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background 0.22s ease, transform 0.22s ease;
}
.nav-cta:hover { background: #7d3050; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: all 0.25s ease;
}
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 22px; }
.hamburger span:nth-child(3) { width: 14px; align-self: flex-end; }

/* Mobile dropdown */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(28,25,21,0.10);
}
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.mobile-menu ul a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu ul a:hover { color: var(--text); }
.mobile-menu.open { display: block; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 32px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.22s ease, transform 0.22s ease;
}
.btn-primary:hover { background: #7d3050; transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 13px 32px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: 1.5px solid rgba(28,25,21,0.18);
  cursor: pointer;
  transition: border-color 0.22s ease, transform 0.22s ease;
}
.btn-outline:hover { border-color: var(--text); transform: translateY(-1px); }


/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.section       { padding: 100px 0; }
.section-warm  { padding: 100px 0; background: var(--bg-warm); }
.section-white { padding: 100px 0; background: var(--white); }

.section-header { margin-bottom: 56px; }
.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-header p { color: var(--muted); font-size: 1.05rem; max-width: 480px; }
.section-header p a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(.22,1,.36,1),
              transform 0.65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.09s; }
.reveal-d2 { transition-delay: 0.18s; }
.reveal-d3 { transition-delay: 0.28s; }
.reveal-d4 { transition-delay: 0.40s; }


/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}


/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--b-bg);
  border: var(--b-border);
  border-radius: var(--b-r);
  padding: 32px;
  box-shadow: var(--b-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  box-shadow: var(--b-shadow-up);
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.94);
}
.service-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.service-card p { color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; }
.service-card .price { color: var(--accent); font-weight: 500; font-size: 0.95rem; }

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-lt);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}


/* ============================================================
   GALLERY
   ============================================================ */
.gallery-item {
  overflow: hidden;
  border-radius: 22px;
  background: var(--bg-warm);
  border: 2px solid rgba(255,255,255,0.42);
  box-shadow:
    0 0 0 1px rgba(210,168,188,0.12),
    0 4px 14px rgba(155,61,96,0.08),
    0 12px 32px rgba(155,61,96,0.06),
    inset 0 1px 0 rgba(255,255,255,0.90);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover {
  box-shadow:
    0 0 0 1px rgba(210,168,188,0.20),
    0 8px 24px rgba(155,61,96,0.13),
    0 20px 48px rgba(155,61,96,0.09),
    inset 0 1px 0 rgba(255,255,255,0.95);
  transform: translateY(-3px);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.55s ease;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(0.92); }


/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.team-card .portrait-wrap {
  overflow: hidden;
  border-radius: var(--r-xl);
  aspect-ratio: 3 / 4;
  margin-bottom: 18px;
  background: var(--bg-warm);
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover img { transform: scale(1.04); }
.team-card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.team-card .role { color: var(--accent); font-size: 0.85rem; margin-bottom: 8px; }
.team-card p { color: var(--muted); font-size: 0.875rem; line-height: 1.55; }


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--b-bg-cream);
  border: var(--b-border);
  border-radius: var(--b-r);
  padding: 32px;
  box-shadow: var(--b-shadow);
}
.testimonial-stars { color: var(--accent); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card blockquote {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent-lt);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-author strong { font-size: 0.9rem; display: block; }
.testimonial-author span { font-size: 0.8rem; color: var(--muted); }


/* ============================================================
   FORM FIELDS
   ============================================================ */
.form-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.form-field {
  width: 100%;
  background: linear-gradient(150deg, #FDF5F8 0%, #F8EAF2 100%);
  border: 2px solid rgba(255,255,255,0.82);
  border-radius: 14px;
  padding: 14px 20px;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  box-shadow: var(--b-shadow-field);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.15s;
  -webkit-appearance: none;
}
.form-field::placeholder { color: var(--muted); }
.form-field:focus {
  border-color: rgba(155,61,96,0.36);
  box-shadow: var(--b-shadow-field-focus);
  transform: translateY(-1px);
}
select.form-field { cursor: pointer; }


/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--bg-warm);
  border-bottom: 1px solid var(--border);
  padding: 148px 28px 72px;
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 16px;
}
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 480px; }


/* ============================================================
   BOOKING CTA SECTION
   ============================================================ */
.cta-band {
  background: var(--bg-warm);
  text-align: center;
  padding: 96px 28px;
  border-top: 1px solid var(--border);
}
.cta-band h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}
.cta-band h2 em { font-style: italic; color: var(--accent); }
.cta-band p { color: var(--muted); font-size: 1.05rem; max-width: 400px; margin: 0 auto 36px; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }


/* ============================================================
   TRUST / FEATURE BARS
   ============================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 28px;
  justify-content: center;
}
.trust-bar-inner span { font-size: 0.8rem; color: var(--muted); letter-spacing: 0.04em; }
.trust-dot {
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}


/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 52px;
}
.stat-item {
  padding-right: 36px;
  margin-right: 36px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.stat-item strong {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
.stat-item span { font-size: 0.85rem; color: var(--muted); margin-top: 4px; display: block; }


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  padding: 52px 28px 36px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { font-size: 1.25rem; display: inline-block; margin-bottom: 10px; }
.footer-brand p { font-size: 0.85rem; color: var(--muted); max-width: 220px; line-height: 1.6; }
.footer-col h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.875rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--text); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }


/* ============================================================
   HOME HERO (index.html only) — full-viewport background image
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Background image layer */
.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Overlay for text contrast while keeping the salon scenery visible */
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(12,7,5,0.56) 0%,
    rgba(12,7,5,0.46) 50%,
    rgba(12,7,5,0.52) 100%
  );
}

/* Centered content */
.home-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 148px 28px 96px;
  max-width: 860px;
  width: 100%;
  color: #fff;
}
.home-hero-content .eyebrow { color: #f0b8cb; letter-spacing: 0.24em; }
.home-hero-content h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.home-hero-content h1 em { font-style: italic; color: #f0b8cb; }
.home-hero-content > p {
  color: rgba(255,255,255,0.76);
  font-size: 1.05rem;
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.75;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.home-hero-content .btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.home-hero-content .btn-outline:hover { border-color: #fff; }

/* Stats inherit white palette in hero */
.home-hero-content .stats-row { justify-content: center; }
.home-hero-content .stat-item { border-right-color: rgba(255,255,255,0.18); }
.home-hero-content .stat-item strong { color: #fff; }
.home-hero-content .stat-item span { color: rgba(255,255,255,0.62); }


/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
details.faq-item {
  background: linear-gradient(150deg, #FDF5F8 0%, #F7EBF3 100%);
  border: 2px solid rgba(255,255,255,0.42);
  border-radius: 20px;
  padding: 0 22px;
  box-shadow:
    0 0 0 1px rgba(210,168,188,0.10),
    0 2px 8px rgba(155,61,96,0.05),
    0 6px 18px rgba(155,61,96,0.04),
    inset 0 1.5px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(185,120,150,0.07);
  transition: box-shadow 0.25s ease;
}
details.faq-item:first-child { border-top: none; }
details[open].faq-item {
  box-shadow:
    0 0 0 1px rgba(210,168,188,0.18),
    0 4px 14px rgba(155,61,96,0.08),
    0 10px 28px rgba(155,61,96,0.06),
    inset 0 1.5px 0 rgba(255,255,255,0.95),
    inset 0 -1px 0 rgba(185,120,150,0.10);
}
summary.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  gap: 24px;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q .faq-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-lt);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
details[open] summary.faq-q .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}
.faq-a { padding: 0 0 20px; color: var(--muted); font-size: 0.95rem; line-height: 1.7; max-width: 640px; }


/* ============================================================
   PRICING STRIP
   ============================================================ */
.pricing-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  background: var(--b-bg-cream);
  border: var(--b-border);
  border-radius: var(--b-r);
  overflow: hidden;
  margin-top: 48px;
  box-shadow: var(--b-shadow);
}
.pricing-cell {
  padding: 28px 24px;
  border-right: 1px solid rgba(185,120,150,0.10);
}
.pricing-cell:last-child { border-right: none; }
.pricing-cell .label { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.pricing-cell .amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--text);
}
.pricing-cell .amount sup { font-size: 1rem; vertical-align: super; font-family: 'DM Sans', sans-serif; color: var(--muted); }


/* ============================================================
   BUBBLE UTILITY CARDS — values grid, quick info, contact panel
   ============================================================ */
.values-card {
  background: var(--b-bg);
  border: var(--b-border);
  border-radius: var(--b-r);
  padding: 32px;
  box-shadow: var(--b-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.values-card:hover {
  box-shadow: var(--b-shadow-up);
  transform: translateY(-4px);
}

.quick-info-card {
  background: var(--b-bg-lav);
  border: var(--b-border);
  border-radius: var(--b-r);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--b-shadow);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.quick-info-card:hover {
  box-shadow: var(--b-shadow-up);
  transform: translateY(-4px);
}

.contact-form {
  background: var(--b-bg);
  border: var(--b-border);
  border-radius: var(--b-r);
  padding: 40px;
  box-shadow: var(--b-shadow);
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 44px;
}
.info-block { margin-bottom: 32px; }
.info-block .label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.info-block p { color: var(--muted); font-size: 0.95rem; line-height: 1.7; }
.info-block a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.info-block a:hover { color: var(--text); }
.social-links { display: flex; gap: 20px; }
.social-links a { font-size: 0.9rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.social-links a:hover { color: var(--text); }

.contact-form h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }

.form-success {
  display: none;
  color: var(--accent);
  font-size: 0.9rem;
  text-align: center;
  padding-top: 12px;
}


/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #d8d3cb; border-radius: 3px; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .home-hero-content { padding: 120px 24px 80px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .section, .section-warm, .section-white { padding: 72px 0; }
  .page-hero { padding: 112px 20px 56px; }
  .cta-band { padding: 72px 20px; }
  .container { padding: 0 20px; }

  .stats-row { gap: 24px; }
  .stat-item { border-right: none; padding-right: 0; margin-right: 0; }

  .pricing-strip { grid-template-columns: 1fr 1fr; }
  .pricing-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-cell:last-child { border-bottom: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 32px; }
}


/* ============================================================
   ANIMATION LAYER — companion to animations.js
   ============================================================ */

/* Film grain overlay */
#grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.036;
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: grainShift 0.2s steps(1) infinite;
}
@keyframes grainShift {
  0%   { background-position:   0px   0px; }
  13%  { background-position:  -4px  -6px; }
  25%  { background-position:   6px   2px; }
  38%  { background-position:  -2px   8px; }
  50%  { background-position:   4px  -4px; }
  63%  { background-position:  -6px   6px; }
  75%  { background-position:   2px  -8px; }
  88%  { background-position:  -4px   4px; }
}

/* Animated gradient headings */
.gradient-heading {
  background: linear-gradient(120deg, var(--text) 0%, var(--accent) 42%, #C4849E 68%, var(--text) 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradShift 7s linear infinite;
}
@keyframes gradShift {
  0%   { background-position: 0%   center; }
  100% { background-position: 220% center; }
}

/* Tubelight nav indicator */
.nav-links { position: relative; }
.nav-indicator {
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--accent);
  border-radius: 2px;
  box-shadow: 0 0 8px rgba(155,61,96,0.6), 0 0 20px rgba(155,61,96,0.22);
  transition: left 0.3s cubic-bezier(0.34,1.56,0.64,1),
              width 0.3s ease,
              opacity 0.22s ease;
  opacity: 0;
  pointer-events: none;
}

/* Card radial mouse glow layered on top of bubble gradient (set via --mx --my in JS) */
.service-card {
  background-image:
    radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(155,61,96,0.09) 0%, transparent 58%),
    linear-gradient(148deg, #FFFFFF 0%, #FEF2F7 60%, #F8E8F2 100%);
}

/* Liquid glass "Book" links inside service cards */
.book-link {
  display: inline-block;
  font-size: 0.8rem;
  text-decoration: none;
  background: rgba(155,61,96,0.06);
  border: 1px solid rgba(155,61,96,0.14);
  border-radius: 6px;
  padding: 4px 14px;
  color: var(--muted);
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.18s;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55);
}
.book-link:hover {
  background: rgba(155,61,96,0.12);
  border-color: rgba(155,61,96,0.36);
  color: var(--accent);
  transform: translateY(-1px);
}

/* Vapour text — per-character blur dissolve on hero h1 */
.vc {
  display: inline-block;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(8px);
  animation: vapourIn 0.55s ease-out forwards;
}
@keyframes vapourIn {
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

/* Typewriter blinking cursor on hero tagline */
#hero-tagline::after {
  content: '|';
  color: rgba(255,255,255,0.5);
  animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
