/* =============================================
   Inspire Salon by Mia — Global Stylesheet
   ============================================= */

/* Avenir is a premium Apple/Adobe font. On Windows/Android we use Nunito Sans as the closest web-safe match. */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,400;1,6..12,700&display=swap');


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

:root {
  --white: #FFFFFF;
  --off-white: #F9F7FC;
  --lavender-pale: #EDE8F7;
  --lavender-light: #D4C9EF;
  --lavender: #A98FD8;
  --lavender-mid: #8B6EC4;
  --lavender-deep: #5C3FA3;
  --black: #0E0A18;
  --charcoal: #1C1728;
  --gray-dark: #4A4458;
  --gray-mid: #7A7090;
  --gray-light: #C5BDD8;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Avenir Next", "Avenir", "Nunito Sans", sans-serif;
  background: var(--white);
  color: var(--black);
  font-weight: 600;
  font-size: 20px;
  overflow-x: hidden;
  padding-top: 245px; /* nav (~196px) + info bar (~42px) + gap */
}

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

/* ---- NAV ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 3rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lavender-light);
}

.nav-logo {
  font-family: "Avenir Next", "Avenir", "Nunito Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.03em;
}

.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: "Avenir Next", "Avenir", "Nunito Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lavender-mid);
  margin-top: -1px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-dark);
  transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--lavender-deep); }

.nav-book {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--charcoal);
  padding: 0.75rem 1.8rem;
  border-radius: 2px;
  transition: background 0.25s;
  white-space: nowrap;
}

.nav-book:hover { background: var(--lavender-deep); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 300;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 2rem;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gray-dark);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--lavender-pale);
}

.nav-drawer a:hover { color: var(--lavender-deep); }

/* ---- TOP INFO BAR ---- */
.top-bar {
  position: fixed;
  top: 196px;
  left: 0; right: 0;
  background: var(--charcoal);
  z-index: 99;
  padding: 0.75rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  justify-content: flex-end;
}

.top-bar-phone {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.top-bar-phone:hover { color: var(--lavender); }

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

.top-bar-hours {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.top-bar-hours span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  white-space: nowrap;
}

.top-bar-sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.6rem;
}

/* ---- NAV LOGO IMAGE ---- */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 180px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: none !important;
  opacity: 1 !important;
}

.nav-drawer-close {
  display: none;
}


/* ---- PAGE HEADER (inner pages) ---- */
.page-header {
  padding: 4rem 5rem 4rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--lavender-light);
}

.page-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lavender-mid);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--lavender-mid);
}

.page-title {
  font-family: "Avenir Next", "Avenir", "Nunito Sans", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.05;
}

.page-title em { font-style: italic; color: var(--lavender-deep); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--charcoal);
  padding: 1.1rem 2.6rem;
  border-radius: 2px;
  transition: background 0.25s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover { background: var(--lavender-deep); }

.btn-lavender {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  background: var(--lavender-deep);
  padding: 1.1rem 2.6rem;
  border-radius: 2px;
  transition: background 0.25s;
  border: none;
  cursor: pointer;
}

.btn-lavender:hover { background: var(--lavender-mid); }

.btn-outline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  padding: 1rem 2.2rem;
  border-radius: 2px;
  transition: all 0.25s;
}

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

/* ---- SECTION UTILITIES ---- */
.section-eyebrow {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lavender-mid);
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Avenir Next", "Avenir", "Nunito Sans", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.15;
}

.section-title em { font-style: italic; color: var(--lavender-deep); }

.section-header { text-align: center; margin-bottom: 4rem; }

/* ---- CTA BAND ---- */
.cta-band {
  background: var(--lavender-deep);
  padding: 4rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h3 {
  font-family: "Avenir Next", "Avenir", "Nunito Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.btn-white {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--lavender-deep);
  background: var(--white);
  padding: 1.1rem 2.6rem;
  border-radius: 2px;
  white-space: nowrap;
  transition: opacity 0.25s;
}

.btn-white:hover { opacity: 0.9; }

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  padding: 4rem 5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: "Avenir Next", "Avenir", "Nunito Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  text-decoration: none;
  display: block;
}

.footer-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-weight: 500;
  max-width: 240px;
  margin-bottom: 1.5rem;
}

.footer-phone {
  font-family: "Avenir Next", "Avenir", "Nunito Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--lavender);
  text-decoration: none;
}

.footer-col h4 {
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col ul li a {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--lavender); }

.footer-col address {
  font-style: normal;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.95);
  line-height: 1.85;
  font-weight: 500;
}

.footer-bottom {
  background: rgba(0,0,0,0.35);
  padding: 1rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* ---- RESPONSIVE ---- */
/* ================================================
   MOBILE — ONE CLEAN BLOCK, NO CONFLICTS
   ================================================ */
@media (max-width: 900px) {

  /* --- BODY --- */
  body {
    padding-top: 180px;
    font-size: 16px;
    overflow-x: hidden;
    color: #1C1728 !important;
  }

  /* --- DARK TEXT EVERYWHERE ON MOBILE --- */
  p, li, td, label, address,
  .hero-subtitle, .hero-eyebrow,
  .service-desc, .team-bio, .founder-bio,
  .review-text, .gallery-intro p,
  .services-intro p, .about-story-text p,
  .value-desc, .price-note,
  .booking-note, .team-intro p,
  .referral p {
    color: #1C1728 !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    line-height: 1.8 !important;
  }

  h1, h2, h3, h4, h5 {
    color: #1C1728 !important;
    font-weight: 700 !important;
  }

  .section-eyebrow, .page-eyebrow {
    color: #5C3FA3 !important;
    font-weight: 700 !important;
  }

  .stat-label { color: #4A4458 !important; font-weight: 600 !important; }
  .stat-num { color: #1C1728 !important; font-weight: 700 !important; }

  /* Keep white text on dark backgrounds */
  .about-dark p,
  .about-dark h2,
  .about-dark h3,
  .cta-band p,
  .cta-band h3,
  .top-bar-phone,
  .top-bar-hours span,
  .team-group-title,
  .team-group-eyebrow {
    color: rgba(255,255,255,0.92) !important;
  }

  /* Footer — bright readable text on dark background */
  footer, footer * {
    color: rgba(255,255,255,0.85) !important;
  }

  footer h4,
  .footer-col h4 {
    color: rgba(255,255,255,0.95) !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.25em !important;
  }

  .footer-tagline {
    color: rgba(255,255,255,0.9) !important;
    font-weight: 400 !important;
  }

  .footer-col ul li a,
  .footer-col address {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 400 !important;
  }

  .footer-phone {
    color: var(--lavender) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
  }

  .footer-instagram {
    color: var(--lavender) !important;
    border-color: rgba(169,143,216,0.5) !important;
  }

  .footer-bottom p {
    color: rgba(255,255,255,0.3) !important;
    font-size: 0.72rem !important;
    font-weight: 400 !important;
  }

  /* --- NAV BAR --- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #EDE8F7;
    padding: 0.6rem 1.2rem;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.8rem;
    height: auto;
  }

  .nav-logo-wrap { grid-column: 1; }
  .nav-logo-img { height: 100px !important; width: auto; }
  .nav-links { display: none !important; }

  .nav-book {
    grid-column: 2;
    font-size: 0.6rem;
    padding: 0.55rem 0.8rem;
    white-space: nowrap;
  }

  .nav-toggle {
    grid-column: 3;
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #1C1728;
    border-radius: 2px;
  }

  /* --- INFO BAR --- */
  .top-bar {
    position: fixed;
    top: 118px;
    left: 0; right: 0;
    z-index: 99;
    padding: 0.65rem 1.2rem;
    background: #1C1728;
  }

  .top-bar-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }

  .top-bar-phone {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
  }

  .top-bar-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.3);
    flex-shrink: 0;
  }

  .top-bar-hours {
    display: flex;
    gap: 0.3rem;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .top-bar-hours span {
    font-size: 0.58rem;
    color: rgba(255,255,255,0.8);
    white-space: nowrap;
  }

  .top-bar-sep { opacity: 0.4; }

  /* --- MOBILE MENU DRAWER --- */
  .nav-drawer {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 9999;
    display: none;
    flex-direction: column;
    padding: 5rem 2.5rem 3rem;
    gap: 0;
    overflow-y: auto;
  }

  .nav-drawer.open { display: flex; }

  .nav-drawer a {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: #1C1728;
    padding: 1rem 0;
    border-bottom: 1px solid #EDE8F7;
  }

  .nav-drawer a:last-child {
    color: #5C3FA3;
    border-bottom: none;
    margin-top: 0.5rem;
  }

  .nav-drawer-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1C1728;
    cursor: pointer;
    line-height: 1;
    z-index: 10000;
    padding: 0.5rem;
    -webkit-tap-highlight-color: transparent;
  }

  /* --- PAGE SECTIONS --- */
  .page-header { padding: 4rem 1.5rem 2.5rem; }
  .hero-left { padding: 2rem 1.5rem; }
  .hero-right { display: none; }
  .hero-title { font-size: 2.4rem; }
  .hero-actions { flex-direction: column; gap: 1rem; }
  .btn-primary { width: 100%; text-align: center; }

  .services-preview,
  .values,
  .promise,
  .about-dark,
  .reviews-section { padding: 3rem 1.5rem; }

  .service-section { padding: 2.5rem 1.5rem; }
  .service-section-inner { grid-template-columns: 1fr; }

  .team-grid { grid-template-columns: 1fr; padding: 0 1.5rem 3rem; }
  .founder-row { padding: 0 1.5rem 3rem; flex-direction: column; }
  .team-section-label { padding: 0 1.5rem 1rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; padding: 0 1.5rem 3rem; }
  .gallery-intro { padding: 2rem 1.5rem; }

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header { flex-direction: column; }

  .about-story { grid-template-columns: 1fr; }
  .about-story-text { padding: 2.5rem 1.5rem; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .team-group-wrap { padding: 0 1.5rem 3rem; }

  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { padding: 3rem 1.5rem; }
  .contact-info *, .info-block *, .hours-item, .hours-item * { color: rgba(255,255,255,0.9) !important; }
  .info-block h4 { color: rgba(255,255,255,0.45) !important; }
  .contact-form-wrap { padding: 2.5rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .cta-band { flex-direction: column; text-align: center; padding: 3rem 1.5rem; }
  .btn-white { width: 100%; text-align: center; }

  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1rem 1.5rem; }

  .instagram-strip { flex-direction: column; padding: 3rem 1.5rem; }

  .products-bar { flex-direction: column; }
  .products-bar-dark { flex-direction: column; }

  .team-group-inner img { max-height: 320px; }
  .team-group-overlay { padding: 1.5rem; }
}

/* ---- FOOTER EXTRAS ---- */
.footer-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  padding: 0.7rem 1.4rem;
  border: 1px solid rgba(169,143,216,0.4);
  border-radius: 2px;
  text-decoration: none;
  color: var(--lavender);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
}

.footer-instagram:hover {
  background: var(--lavender-deep);
  color: var(--white);
  border-color: var(--lavender-deep);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,255,255,0.5);
  transition: all 0.25s;
  text-decoration: none;
}

.footer-social-link:hover {
  border-color: var(--lavender);
  color: var(--lavender);
}

/* ---- NAV LOGO IMAGE ---- */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 180px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ---- GOOGLE REVIEW LINK ---- */
.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--lavender-light);
  padding: 0.75rem 1.4rem;
  border-radius: 2px;
  transition: all 0.25s;
}

.google-review-link:hover {
  border-color: var(--lavender-deep);
  color: var(--lavender-deep);
}

/* ---- STAT LINK (clickable rating box) ---- */
.stat-link {
  text-decoration: none;
  display: block;
  padding: 3.5rem 2.5rem;
  border-right: 1px solid var(--lavender-light);
  border-bottom: 1px solid var(--lavender-light);
  cursor: pointer;
  transition: background 0.25s;
}

.stat-link:hover { background: var(--lavender-deep) !important; }
.stat-link:hover .stat-num,
.stat-link:hover .stat-label { color: var(--white) !important; }

/* ---- PRODUCTS BAR ---- */
.products-bar {
  margin-top: 2rem;
  padding: 1.5rem 2rem;
  background: var(--lavender-pale);
  border-left: 3px solid var(--lavender-deep);
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.products-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender-deep);
  white-space: nowrap;
  flex-shrink: 0;
}

.products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.product-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--lavender-light);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
}

.products-bar-dark {
  margin: 1.5rem 0;
  padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.07);
  border-left: 3px solid var(--lavender);
  border-radius: 0 4px 4px 0;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.products-label-dark {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender-light);
  white-space: nowrap;
}

.product-badge-dark {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(169,143,216,0.35);
  padding: 0.3rem 0.85rem;
  border-radius: 20px;
}

/* ---- TEAM GROUP PHOTO ---- */
.team-group-wrap { padding: 0 5rem 5rem; }

.team-group-inner {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.team-group-inner img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: brightness(0.75);
  transition: filter 0.4s, transform 0.4s;
}

.team-group-inner:hover img {
  filter: brightness(0.65);
  transform: scale(1.02);
}

.team-group-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 3rem 3.5rem;
  background: linear-gradient(to top, rgba(28,23,40,0.75) 0%, transparent 60%);
}

.team-group-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lavender-light);
  margin-bottom: 0.6rem;
}

.team-group-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.team-group-title em {
  font-style: italic;
  color: var(--lavender-light);
  font-weight: 400;
}

.team-group-btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  padding: 0.75rem 1.8rem;
  border-radius: 2px;
  transition: all 0.25s;
}

.team-group-btn:hover {
  background: var(--lavender-deep);
  border-color: var(--lavender-deep);
}


/* ---- BODY TEXT VISIBILITY UPGRADE ---- */
p, li, td, address, .subtitle,
.hero-subtitle, .service-desc,
.team-bio, .founder-bio,
.review-text, .about-story-text p,
.gallery-intro p, .services-intro p {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #1C1728 !important;
  line-height: 1.85 !important;
}
