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

:root {
  --bg: #eeeeec;
  --bg-alt: #e4e4e1;
  --bg-dark: #1a1916;
  --bg-dark2: #111009;
  --text: #22211f;
  --muted: #6b6b65;
  --border: #c8c8c4;
  --border-light: #d8d8d4;
  --text-on-dark: #f0f0ed;
  --accent: #22211f;
  --foreground: #e8e8e5;
  --font: 'DM Sans', Arial, sans-serif;
  --transition: 0.3s ease;
  --radius: 0px;
}

body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--font); }
img { display: block; max-width: 100%; }
h1, h2, h3, h4 { font-weight: 300; letter-spacing: -0.02em; line-height: 1.15; }
h1 { font-size: clamp(3rem, 8vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.6rem; font-weight: 400; }
section { padding: 7rem 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2rem; font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5); color: #fff;
  cursor: pointer; transition: all 0.35s ease; background: transparent;
  font-family: var(--font);
}
.btn:hover { background: #fff; color: #000; border-color: #fff; }

.btn-white { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn-white:hover { background: #fff; color: #1a1916; border-color: #fff; }

.btn-ghost { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: #fff; }

.btn-fill {
  background: var(--text); color: var(--bg); border-color: var(--text);
  padding: 0.9rem 2.2rem;
}
.btn-fill:hover { background: transparent; color: var(--text); }

.btn-dark {
  background: #1a1916; color: #fff; border-color: #1a1916;
}
.btn-dark:hover { background: transparent; color: #1a1916; border-color: #1a1916; }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 4rem; }
.section-header.center { text-align: center; }
.tag { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 1.2rem; }
h2 { margin-bottom: 1.5rem; }
.divider { width: 40px; height: 1px; background: var(--border); margin-top: 1.5rem; }
.section-header.center .divider { margin: 1.5rem auto 0; }

/* ── MAINTENANCE MODAL ── */
.maintenance-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 9, 7, 0.75); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s ease;
  padding: 2rem;
}
.maintenance-overlay.open { opacity: 1; visibility: visible; }
.maintenance-box {
  background: #1c1a16; border: 1px solid rgba(255,255,255,0.1);
  padding: 4rem 3.5rem; max-width: 480px; width: 100%; text-align: center;
  position: relative;
  transform: translateY(20px); transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.maintenance-overlay.open .maintenance-box { transform: translateY(0); }
.maintenance-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.08); border: none; color: rgba(255,255,255,0.6);
  width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem;
  transition: all 0.3s;
}
.maintenance-close:hover { background: rgba(255,255,255,0.15); color: #fff; }
.maintenance-icon { font-size: 2.5rem; color: rgba(255,255,255,0.25); margin-bottom: 1.5rem; }
.maintenance-box h3 { font-size: 1.8rem; color: #fff; font-weight: 300; margin-bottom: 1rem; }
.maintenance-box p { font-size: 0.92rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 2rem; }
.maintenance-call-btn {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: #fff; color: #1a1916; padding: 1rem 2rem;
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.04em;
  border: none; cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.maintenance-call-btn:hover { background: #e8e8e5; }
.maintenance-hours { margin-top: 1.5rem !important; font-size: 0.78rem !important; color: rgba(255,255,255,0.35) !important; letter-spacing: 0.1em; }

/* ── STYLIST MODAL ── */
.stylist-modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(10, 9, 7, 0.8); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.4s ease;
  padding: 2rem;
}
.stylist-modal-overlay.open { opacity: 1; visibility: visible; }
.stylist-modal {
  background: #1c1a16; border: 1px solid rgba(255,255,255,0.1);
  width: 100%; max-width: 860px; max-height: 88vh;
  overflow-y: auto; position: relative;
  transform: scale(0.96) translateY(16px);
  transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.stylist-modal-overlay.open .stylist-modal { transform: scale(1) translateY(0); }
.stylist-modal-close {
  position: sticky; top: 1.5rem; left: calc(100% - 3.5rem); z-index: 10;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.1); border: none; color: rgba(255,255,255,0.7);
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.1rem;
  transition: all 0.3s; float: right; margin: 1.5rem 1.5rem -2.5rem 0;
}
.stylist-modal-close:hover { background: rgba(255,255,255,0.2); color: #fff; }
.stylist-modal-inner { display: grid; grid-template-columns: 320px 1fr; min-height: 500px; }
.stylist-modal-photo { position: relative; }
.stylist-modal-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; min-height: 420px; }
.stylist-modal-body { padding: 3.5rem 3rem; color: var(--text-on-dark); }
.stylist-modal-tag { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.8rem; display: block; }
.stylist-modal-name { font-size: 2.2rem; font-weight: 300; color: #fff; margin-bottom: 0.4rem; }
.stylist-modal-role { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 2rem; }
.stylist-modal-bio { font-size: 0.95rem; line-height: 1.75; color: rgba(255,255,255,0.75); margin-bottom: 2.5rem; }
.stylist-modal-services-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); padding-bottom: 0.8rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 0; }
.stylist-service-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.1rem 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  gap: 1rem;
}
.stylist-service-row:last-of-type { border-bottom: none; }
.stylist-service-name { font-size: 0.95rem; color: rgba(255,255,255,0.9); }
.stylist-service-right { display: flex; align-items: center; gap: 1.5rem; flex-shrink: 0; }
.stylist-service-duration { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.stylist-service-price { font-size: 1rem; color: #fff; font-weight: 500; min-width: 70px; text-align: right; }
.stylist-modal-cta { margin-top: 2.5rem; }
.stylist-modal-cta button { width: 100%; justify-content: center; padding: 1rem; font-size: 0.85rem; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.4s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 1.8rem 2.5rem;
  transition: padding 0.3s ease;
}
nav.scrolled .nav-inner { padding: 1rem 2.5rem; }
nav.scrolled {
  background: rgba(26,25,22,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-logo {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.nav-logo .logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
  object-fit: cover;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.65); transition: color var(--transition); }
.nav-links a:hover { color: #fff; }
.nav-book {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; border: 1px solid rgba(255,255,255,0.4); padding: 0.65rem 1.5rem;
  background: none; cursor: pointer; transition: all var(--transition); font-family: var(--font);
}
.nav-book:hover { background: #fff; color: #1a1916; border-color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 22px; height: 1px; background: #fff; transition: var(--transition); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed; inset: 0; background: #1a1916; z-index: 200;
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-book-link {
  font-size: 2rem; font-weight: 300; color: var(--text-on-dark);
  letter-spacing: 0.06em; text-transform: uppercase; transition: opacity var(--transition);
  background: none; border: none; cursor: pointer; font-family: var(--font);
}
.mobile-menu a:hover, .mobile-book-link:hover { opacity: 0.5; }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2.5rem; font-size: 1.2rem; color: var(--foreground);
  cursor: pointer; background: none; border: none; letter-spacing: 0.1em; font-family: var(--font);
}

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: flex-end;
  padding-bottom: 7rem; position: relative; overflow: hidden; background: var(--bg-dark2);
}
.hero-img-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(10,9,7,0.85) 0%, rgba(10,9,7,0.2) 60%, rgba(10,9,7,0.4) 100%);
}
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
  background: url('assets/images/jx-salon-hero.jpg') no-repeat center center;
  background-size: cover;
  will-change: transform;
}
.hero-bg-img::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 35%, rgba(95,90,75,0.18) 0%, transparent 70%);
}
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 40% 50% at 20% 80%, rgba(60,55,45,0.1) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; width: 100%;
  will-change: transform, opacity;
}
.hero-eyebrow {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 2rem; display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 40px; height: 1px; background: rgba(255,255,255,0.35); }
.hero h1 { color: #fff; max-width: 900px; margin-bottom: 2rem; }
.hero-sub { max-width: 420px; color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 3rem; line-height: 1.85; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 2.5rem; z-index: 2;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); writing-mode: vertical-rl;
}

/* ── INTRO BAND ── */
.intro-band {
  background: var(--bg-dark); padding: 2.2rem 2.5rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.intro-band p { max-width: 700px; margin: 0 auto; font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.8; font-weight: 300; }

/* ── TEAM ── */
#team { background: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5px; }
.team-card {
  position: relative; overflow: hidden; cursor: pointer; background: var(--bg-alt);
  transition: transform 0.35s ease;
  will-change: transform;
  contain: layout style;
}
.team-card:hover { transform: translateY(-4px); z-index: 1; }
.team-card:hover .team-photo { transform: scale(1.05); filter: grayscale(0%); }
.team-card:hover .team-info { transform: translateY(0); }
.team-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top center;
  display: block; transition: transform 0.55s ease, filter 0.45s ease;
  filter: grayscale(20%);
}
.team-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,14,11,0.92) 0%, rgba(15,14,11,0.3) 45%, transparent 70%);
  pointer-events: none;
}
.team-info {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.8rem 1.6rem 1.6rem;
  transform: translateY(60px); transition: transform 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}
.team-name { font-size: 0.95rem; font-weight: 500; color: #fff; margin-bottom: 0.2rem; letter-spacing: 0.04em; text-transform: uppercase; }
.team-role { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.2rem; }
.team-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.team-book-btn {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  background: #fff; color: #1a1916; border: none; padding: 0.6rem 1.2rem;
  cursor: pointer; font-family: var(--font); font-weight: 500;
  transition: all 0.3s; white-space: nowrap;
}
.team-book-btn:hover { background: var(--bg-alt); }
.team-know-more {
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); background: none; border: none; border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px; cursor: pointer; font-family: var(--font); transition: all 0.3s; white-space: nowrap;
}
.team-know-more:hover { color: #fff; border-color: #fff; }

/* ── PRICING ── */
#pricing { background: var(--bg-alt); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.pricing-card { background: var(--bg-alt); padding: 2.5rem 2rem; transition: background var(--transition); }
.pricing-card:hover { background: var(--bg); }
.pricing-card--wide { grid-column: 1/-1; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 2rem; }
.pricing-name { font-size: 1rem; font-weight: 500; color: var(--text); margin-bottom: 0.6rem; }
.pricing-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.5rem; }
.pricing-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border-light); padding-top: 1rem; }
.pricing-duration { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.pricing-price { font-size: 1.1rem; font-weight: 400; color: var(--text); }

/* ── REVIEWS ── */
#reviews { background: var(--bg-alt); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.review-card { background: var(--bg); padding: 2.5rem 2rem; transition: background var(--transition); }
.review-card:hover { background: var(--bg-alt); }
.review-stars { font-size: 0.8rem; color: var(--text); margin-bottom: 1.2rem; letter-spacing: 0.2em; }
.review-text { font-size: 0.92rem; line-height: 1.75; color: var(--muted); margin-bottom: 1.5rem; font-style: italic; }
.review-author { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); font-weight: 500; }

/* ── FAQ ── */
#faq { background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 6rem; align-items: start; }
.faq-intro h2 { margin-bottom: 1rem; }
.faq-intro p { color: var(--muted); font-size: 0.92rem; margin-bottom: 2.5rem; line-height: 1.75; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.5rem 0; cursor: pointer;
  font-size: 0.95rem; font-weight: 400; color: var(--text); letter-spacing: 0.01em;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--muted); }
.faq-icon {
  width: 24px; height: 24px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 0.9rem; color: var(--muted); transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--text); color: var(--bg); border-color: var(--text); }
.faq-answer { font-size: 0.9rem; color: var(--muted); line-height: 1.85; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.5rem; }

/* ── CONTACT ── */
#contact { background: var(--bg-alt); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2.5rem; font-size: 0.92rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { color: var(--muted); font-size: 0.9rem; margin-top: 0.15rem; flex-shrink: 0; }
.contact-item-text { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.contact-item-text strong { display: block; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text); margin-bottom: 0.3rem; font-weight: 500; }
.contact-social { display: flex; gap: 0.8rem; }
.social-link {
  display: flex; align-items: center; gap: 0.6rem;
  border: 1px solid var(--border-light); padding: 0.6rem 1rem;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); transition: all var(--transition);
}
.social-link:hover { border-color: var(--text); color: var(--text); }
.map-container { width: 100%; aspect-ratio: 4/3; background: var(--bg-alt); border: 1px solid var(--border); overflow: hidden; }
.map-container iframe { width: 100%; height: 100%; border: none; filter: grayscale(100%) contrast(88%) brightness(1.05); }

/* ── ACADEMY ── */
#academy { background: var(--bg); }
.academy-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3.5rem; }
.academy-text { max-width: 680px; }
.academy-text h2 { margin-bottom: 1rem; }
.academy-text .divider { margin: 1.5rem auto; }
.academy-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 2rem; }
.academy-video-wrapper { position: relative; overflow: hidden; border-radius: var(--radius); background: #000; aspect-ratio: 16/9; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid var(--border); width: 100%; max-width: 1140px; }
.academy-video-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay-btn {
  position: absolute;
  bottom: 4.5rem;
  right: 2rem;
  z-index: 10;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.85rem 1.5rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 3px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transition: all var(--transition);
}
.video-overlay-btn:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

@media (max-width: 680px) {
  .video-overlay-btn {
    bottom: 3.5rem;
    right: 1rem;
    padding: 0.7rem 1.2rem;
    font-size: 0.65rem;
  }
}

/* ── JOIN ── */
#join { background: var(--bg-dark); padding: 6rem 0; }
.join-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.join-text h2 { color: var(--text-on-dark); margin-bottom: 1rem; }
.join-text p { color: rgba(255,255,255,0.6); max-width: 400px; margin-bottom: 2rem; font-size: 0.92rem; }
.join-text .tag { color: rgba(255,255,255,0.4); }
.join-text .divider { background: rgba(255,255,255,0.2); }
.join-features { display: flex; flex-direction: column; gap: 1px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
.join-feature { padding: 1.6rem 2rem; background: rgba(255,255,255,0.02); border-bottom: 1px solid rgba(255,255,255,0.06); transition: background var(--transition); }
.join-feature:last-child { border-bottom: none; }
.join-feature:hover { background: rgba(255,255,255,0.05); }
.join-feature-title { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-on-dark); margin-bottom: 0.4rem; }
.join-feature-desc { font-size: 0.85rem; color: rgba(255,255,255,0.45); }

/* ── FOOTER ── */
footer { background: var(--bg-dark2); padding: 3rem 0; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.footer-logo .logo-img {
  height: 32px;
  width: auto;
  border-radius: 4px;
  object-fit: cover;
}
.footer-nav { display: flex; gap: 2.5rem; list-style: none; flex-wrap: wrap; }
.footer-nav a { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-nav a:hover { color: var(--text-on-dark); }
.footer-copy { font-size: 0.68rem; color: rgba(255,255,255,0.2); letter-spacing: 0.06em; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── BELOW-FOLD PERF: Skip rendering off-screen content ── */
#team, #pricing, #academy, #reviews, #faq, #contact, #join {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

/* ── FLOATING BOOK NOW ── */
.floating-book-btn {
  position: fixed; bottom: 2.5rem; right: 2.5rem; z-index: 90;
  display: flex; align-items: center; justify-content: center; gap: 0.8rem;
  background: var(--text); color: var(--bg); border: none; padding: 1rem 1.5rem;
  border-radius: 50px; font-family: var(--font); font-weight: 500; font-size: 0.85rem;
  letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15); transition: transform var(--transition), box-shadow var(--transition);
}
.floating-book-btn:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 15px 35px rgba(0,0,0,0.2); color: var(--bg); }

/* ── RESPONSIVE & MOBILE UX ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.btn, .team-book-btn, .team-know-more, .faq-question, .mobile-menu a, .mobile-book-link {
  touch-action: manipulation;
}

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

@media (max-width: 960px) {
  .nav-links, .nav-book { display: none; }
  .hamburger { display: flex; }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .join-inner, .contact-inner, .academy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 5rem 0; }
  .stylist-modal-inner { grid-template-columns: 1fr; }
  .stylist-modal-photo img { min-height: 300px; max-height: 350px; }
  .academy-video-wrapper { order: -1; }
  
  /* Make team info always visible on touch/mobile devices */
  .team-info { transform: translateY(0); }
  .team-card:hover .team-photo { transform: none; filter: grayscale(20%); }
  .team-card.active .team-photo { transform: scale(1.02); filter: grayscale(0%); }
}

@media (max-width: 680px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav { justify-content: center; }
  h1 { font-size: 3rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.2rem; }
  section { padding: 3.5rem 0; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  
  /* Place text BELOW the image for mobile so faces are 100% visible */
  .team-grid { gap: 0.8rem; }
  .team-card { display: flex; flex-direction: column; background: #1c1a16; border-radius: 4px; }
  .team-photo { aspect-ratio: 1/1; object-position: top center; filter: grayscale(10%); }
  .team-overlay { display: none; }
  .team-info { position: relative; padding: 1.2rem 1rem; transform: none !important; }
  .team-name { font-size: 0.95rem; margin-bottom: 0.2rem; color: #fff; }
  .team-role { font-size: 0.65rem; margin-bottom: 1.2rem; line-height: 1.4; color: rgba(255,255,255,0.6); }
  .team-actions { gap: 0.5rem; flex-direction: column; }
  .maintenance-box { padding: 3rem 1.5rem; }
  .stylist-modal-body { padding: 1.5rem 1.2rem; }
  .stylist-modal-close { margin: 1rem 1rem -2rem 0; background: rgba(0,0,0,0.5); }
  .stylist-service-row { flex-direction: column; align-items: flex-start; gap: 0.4rem; padding: 0.8rem 0; }
  
  /* Fix Hero safe area */
  .hero { padding-bottom: calc(7rem + env(safe-area-inset-bottom, 0px)); }
  
  /* Floating book btn un-collapse */
  .floating-book-btn { 
    bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px)); 
    right: 1.5rem; 
    padding: 0.8rem 1.2rem; 
    border-radius: 50px; 
    width: auto; 
    height: auto; 
  }
  .floating-book-text { display: inline-block; font-size: 0.75rem; }
  
  /* Better tap targets */
  .team-book-btn, .team-know-more { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .team-book-btn { padding: 0.75rem 1.2rem; }
  .team-know-more { padding-bottom: 0; padding: 0.75rem 1.2rem; border: 1px solid rgba(255,255,255,0.4); border-radius: 3px; }
  
  .mobile-close { min-height: 44px; min-width: 44px; top: 1rem; right: 1rem; }
}
