/* ==============================================
   MANE STREET HAIR — Design System & Styles
   ============================================== */

/* --- Custom Properties --- */
:root {
  /* Colors */
  --c-black: #1a1a1a;
  --c-charcoal: #2c2c2c;
  --c-brown: #6b5b4e;
  --c-taupe: #a08c7b;
  --c-gold: #c4a265;
  --c-gold-light: #d4b87a;
  --c-cream: #f8f6f3;
  --c-cream-dark: #f0ece6;
  --c-cream-warm: #faf8f5;
  --c-white: #ffffff;
  --c-text: #3a3a3a;
  --c-text-light: #6e6e6e;
  --c-text-muted: #999;
  --c-border: #e8e4df;
  --c-border-light: #f0ece8;

  /* Typography */
  --f-heading: 'Cormorant Garamond', 'Georgia', serif;
  --f-body: 'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --s-section: clamp(4rem, 8vw, 7rem);
  --s-section-sm: clamp(3rem, 5vw, 4.5rem);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-base: 0.35s var(--ease);
  --t-slow: 0.6s var(--ease);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.05);
  --shadow-card-hover: 0 12px 32px rgba(0,0,0,0.1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--t-base); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--c-charcoal);
}
h1 { font-size: clamp(2.8rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Utility --- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.container--narrow { max-width: 800px; }
.container--wide { max-width: 1300px; }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-taupe);
  display: block;
}

.divider {
  width: 50px;
  height: 1px;
  background: var(--c-gold);
  margin: 1.2rem auto;
}

.section { padding: var(--s-section) 0; }
.section--cream { background: var(--c-cream); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--c-charcoal);
  color: var(--c-charcoal);
  background: transparent;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn:hover {
  background: var(--c-charcoal);
  color: var(--c-white);
}

.btn--primary {
  background: var(--c-brown);
  color: var(--c-white);
  border-color: var(--c-brown);
}
.btn--primary:hover {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
}

.btn--gold {
  border-color: var(--c-gold);
  color: var(--c-white);
  background: rgba(196,162,101,0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn--gold:hover {
  background: var(--c-gold);
  color: var(--c-white);
}

.btn--white {
  border-color: var(--c-white);
  color: var(--c-white);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn--white:hover {
  background: var(--c-white);
  color: var(--c-charcoal);
}

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

.btn--sm {
  padding: 0.65rem 1.6rem;
  font-size: 0.62rem;
}

.btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 1.4rem 0;
  transition: all var(--t-base);
}
.nav--scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--c-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo {
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-white);
  transition: color var(--t-base);
}
.nav--scrolled .nav__logo { color: var(--c-charcoal); }
.nav--dark .nav__logo { color: var(--c-charcoal); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--t-base);
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--t-base);
}
.nav__link:hover { color: var(--c-white); }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }
.nav__link--active { color: var(--c-white); }

.nav--scrolled .nav__link { color: var(--c-text-light); }
.nav--scrolled .nav__link:hover { color: var(--c-charcoal); }
.nav--scrolled .nav__link--active { color: var(--c-charcoal); }
.nav--dark .nav__link { color: var(--c-text-light); }
.nav--dark .nav__link:hover { color: var(--c-charcoal); }
.nav--dark .nav__link--active { color: var(--c-charcoal); }

.nav__book {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-white);
  padding: 0.55rem 1.4rem;
  background: var(--c-gold);
  border: 1px solid var(--c-gold);
  transition: all var(--t-base);
  border-radius: 1px;
}
.nav__book:hover {
  background: var(--c-gold-light);
  color: var(--c-white);
  border-color: var(--c-gold-light);
}
.nav--scrolled .nav__book {
  color: var(--c-white);
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.nav--scrolled .nav__book:hover {
  background: var(--c-gold-light);
  color: var(--c-white);
  border-color: var(--c-gold-light);
}
.nav--dark .nav__book {
  color: var(--c-white);
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.nav--dark .nav__book:hover {
  background: var(--c-gold-light);
  border-color: var(--c-gold-light);
  color: var(--c-white);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 110;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-white);
  transition: all var(--t-base);
}
.nav--scrolled .nav__hamburger span,
.nav--dark .nav__hamburger span { background: var(--c-charcoal); }
.nav__hamburger--open span:nth-child(1) { transform: rotate(45deg) translate(4px, 5px); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-cream-warm);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
}
.mobile-menu--open { opacity: 1; visibility: visible; }

.mobile-menu__divider {
  width: 30px;
  height: 1px;
  background: var(--c-gold);
  margin: 0.2rem 0;
}

.mobile-menu__link {
  font-family: var(--f-heading);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--c-charcoal);
  transition: color var(--t-base);
  letter-spacing: 1px;
}
.mobile-menu__link:hover { color: var(--c-gold); }

.mobile-menu__sub {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-text-muted);
  transition: color var(--t-base);
}
.mobile-menu__sub:hover { color: var(--c-taupe); }

.mobile-menu__book {
  margin-top: 0.8rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  background: var(--c-brown);
  color: var(--c-white);
  border: 1px solid var(--c-brown);
  transition: all var(--t-base);
}
.mobile-menu__book:hover {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
}

/* Mobile booking bar */
.booking-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--c-brown);
  padding: 0.9rem 1.5rem;
  align-items: center;
  justify-content: center;
}
.booking-bar__link {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-white);
}

/* --- Hero --- */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #5a5048;
  will-change: transform;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(20,12,8,0.7) 50%,
    rgba(20,12,8,0.82) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--c-white);
  padding: 0 2rem;
}
.hero__eyebrow {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 1rem;
  display: block;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 0 4px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.1s;
}
.hero__title {
  font-family: var(--f-heading);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  color: var(--c-white);
  letter-spacing: 3px;
  margin-bottom: 0.8rem;
  text-shadow: 0 3px 20px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(25px);
  animation: fadeUp 0.9s ease forwards 0.3s;
}
.hero__sub {
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 0 4px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.9s ease forwards 0.6s;
}
.hero__cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.9s ease forwards 0.9s;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 1.2s;
  transition: opacity 0.4s ease;
}
.hero__scroll-text {
  font-size: 0.58rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__scroll-line {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--c-gold-light);
  animation: scrollLine 2.5s ease infinite;
}

/* --- Page Header (inner pages) --- */
.page-header {
  position: relative;
  height: 45vh;
  min-height: 300px;
  max-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #5a5048;
}
.team-header-bg {
  background-position: center 30%;
}
.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(20,12,8,0.7) 100%
  );
}
.page-header__content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-header__title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--c-white);
  letter-spacing: 1px;
  text-shadow: 0 3px 20px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.5);
}
.page-header__label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-bottom: 0.7rem;
  display: block;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 0 4px rgba(0,0,0,0.4);
}

/* Tall variant for team page */
.page-header--tall {
  height: 75vh;
  min-height: 480px;
  max-height: 750px;
}

/* --- Intro (Home) --- */
.intro { padding: var(--s-section) 0 var(--s-section-sm); }
.intro__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.intro__quote {
  font-family: var(--f-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--c-charcoal);
  margin: 1.5rem 0;
}
.intro__highlight {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--c-brown);
  padding: 0.55rem 1.6rem;
  border: 1px solid var(--c-gold);
  margin-top: 1rem;
  letter-spacing: 0.5px;
}
.intro__note {
  max-width: 620px;
  margin: 2.5rem auto 0;
  font-size: 0.83rem;
  color: var(--c-text-light);
  line-height: 1.85;
}
.intro__note strong { color: var(--c-brown); font-weight: 500; }

/* --- Brand Moments Strip --- */
.moments { padding: var(--s-section-sm) 0; }
.moments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 750px;
  margin: 0 auto;
}
.moments__item {
  text-align: center;
  cursor: default;
}
.moments__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 2px;
  background: var(--c-cream-dark);
  max-width: 266px;
  margin: 0 auto;
}
.moments__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  will-change: transform;
}
.moments__item:hover .moments__img { transform: scale(1.06); }
.moments__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all var(--t-slow);
  pointer-events: none;
}
.moments__item:hover .moments__img-wrap::after {
  border-color: var(--c-gold);
  inset: 6px;
}
.moments__caption {
  display: block;
  margin-top: 0.8rem;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-taupe);
  transition: color var(--t-base);
}
.moments__item:hover .moments__caption { color: var(--c-gold); }

/* --- Home Cards --- */
.home-cards { padding: 3.5rem 0 var(--s-section); }
.home-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 820px;
  margin: 0 auto;
}
.home-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(20,13,10,0.13);
}
.home-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.home-card:hover .home-card__img { transform: scale(1.05); }
.home-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,20,15,0.65) 0%, rgba(30,20,15,0.05) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  transition: background var(--t-base);
}
.home-card:hover .home-card__overlay {
  background: linear-gradient(to top, rgba(107,91,78,0.75) 0%, rgba(107,91,78,0.15) 55%);
}
.home-card__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-white);
}
.home-card__arrow {
  width: 20px;
  height: 20px;
  stroke: var(--c-gold-light);
  fill: none;
  stroke-width: 2;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(-5px);
  transition: all var(--t-base);
}
.home-card:hover .home-card__arrow {
  opacity: 1;
  transform: translateY(0);
}

/* --- Studio Banner --- */
.studio-banner {
  display: flex;
  position: relative;
  height: 50vh;
  min-height: 300px;
  max-height: 450px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.studio-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #6b5b4e;
}
.studio-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  transition: background 0.3s ease;
}
.studio-banner:hover .studio-banner__overlay {
  background: rgba(0,0,0,0.35);
}
.studio-banner__title {
  position: relative;
  z-index: 1;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--c-white);
  text-shadow: 0 3px 20px rgba(0,0,0,0.7), 0 1px 6px rgba(0,0,0,0.5);
  letter-spacing: 3px;
}

.studio-info {
  padding: var(--s-section-sm) 0 var(--s-section);
  text-align: center;
  background: var(--c-cream-warm);
}
.studio-info__text {
  max-width: 580px;
  margin: 0 auto;
  font-family: var(--f-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--c-charcoal);
}
.studio-info__cta { margin-top: 2rem; }

/* --- Services Page --- */
.services-intro {
  padding: var(--s-section-sm) 0 2rem;
  text-align: center;
}
.services-intro__text {
  font-family: var(--f-heading);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--c-brown);
}

.services-list { padding: 0 0 var(--s-section); }

.services-list .container--narrow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: stretch;
  max-width: 820px;
}

.service-group {
  background: var(--c-cream-warm);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 2rem 1.8rem 2.2rem;
  text-align: center;
}

.service-group__heading {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--c-brown);
  margin-bottom: 0.6rem;
}
.service-group__line {
  width: 28px;
  height: 1px;
  background: var(--c-gold);
  margin: 0 auto 1.6rem;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--c-border-light);
  text-align: left;
}
.service-row:last-child { border-bottom: none; }
.service-row__name {
  font-size: 0.84rem;
  font-weight: 300;
  padding-right: 0.5rem;
}
.service-row__dots {
  flex: 1;
  border-bottom: 1px dotted var(--c-border);
  margin: 0 0.6rem;
  min-width: 1.5rem;
  align-self: center;
  transform: translateY(-3px);
}
.service-row__price {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--c-brown);
  white-space: nowrap;
}

.services-cta {
  text-align: center;
  padding: 0 0 var(--s-section);
}

/* --- Team Page --- */
.team-intro {
  padding: var(--s-section-sm) 0 1rem;
  text-align: center;
}
.team-intro__text {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--c-brown);
  max-width: 500px;
  margin: 0 auto;
}

.team-section { padding: 2rem 0 var(--s-section); }
.team-section__label {
  text-align: center;
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--c-taupe);
  margin-bottom: 2.5rem;
  position: relative;
}
.team-section__label::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--c-gold);
  margin: 0.7rem auto 0;
}

.team-section + .team-section { padding-top: 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.team-grid--single {
  grid-template-columns: 220px;
  justify-content: center;
}

.team-card {
  text-align: center;
  text-decoration: none;
  display: block;
  perspective: 600px;
}
.team-card__photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--c-cream);
  margin-bottom: 1rem;
  border-radius: 3px;
  display: block;
  transition: transform var(--t-slow), box-shadow var(--t-slow);
  transform-style: preserve-3d;
  will-change: transform;
}
.team-card:hover .team-card__photo {
  box-shadow: 0 14px 40px rgba(107,91,78,0.18), 0 4px 12px rgba(0,0,0,0.08);
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--c-cream);
  transition: transform var(--t-slow), filter var(--t-slow);
  filter: saturate(0.92);
}
.team-card:hover .team-card__photo img {
  transform: scale(1.06);
  filter: saturate(1.05) brightness(1.02);
}

.team-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all var(--t-slow);
  pointer-events: none;
  z-index: 2;
}
.team-card:hover .team-card__photo::after {
  border-color: var(--c-gold);
  inset: 7px;
}

/* Hover overlay */
.team-card__hover {
  position: absolute;
  inset: 0;
  background: rgba(107, 91, 78, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
  z-index: 1;
}
.team-card:hover .team-card__hover { opacity: 1; }
.team-card__view {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,0.55);
  padding: 0.6rem 1.3rem;
}

/* Placeholder for missing photos */
.team-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-cream-dark);
}
.team-card__placeholder svg {
  width: 48px;
  height: 48px;
  stroke: var(--c-taupe);
  fill: none;
  stroke-width: 1;
  opacity: 0.4;
}

.team-card__name {
  font-family: var(--f-body);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--c-charcoal);
  margin-bottom: 0.2rem;
  transition: color var(--t-base);
}
.team-card:hover .team-card__name { color: var(--c-brown); }
.team-card__role {
  font-size: 0.72rem;
  font-weight: 300;
  color: var(--c-taupe);
  font-style: italic;
}

.team-card__book {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--c-white);
  background: var(--c-gold);
  padding: 0.4rem 1.2rem;
  border-radius: 1px;
  transition: all var(--t-base);
}
.team-card__book:hover {
  background: var(--c-brown);
  color: var(--c-white);
}

/* --- Stylist Detail --- */
.stylist-detail {
  padding: 8rem 0 var(--s-section);
}
.stylist-detail__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4.5rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}

.stylist-detail__photo-wrap {
  position: relative;
  perspective: 800px;
}
.stylist-detail__photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 3px;
  transition: transform var(--t-slow), filter var(--t-slow), box-shadow var(--t-slow);
  transform-style: preserve-3d;
  will-change: transform;
  filter: saturate(0.92);
}
.stylist-detail__photo-wrap:hover img {
  filter: saturate(1.05) brightness(1.02);
  box-shadow: 0 18px 50px rgba(107,91,78,0.2);
}
.stylist-detail__photo-wrap::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  border: 1px solid var(--c-gold);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.5;
}

.stylist-detail__name {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 0.3rem;
}
.stylist-detail__role {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 2rem;
}

.stylist-detail__bio p {
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--c-text-light);
  margin-bottom: 1rem;
}

.stylist-detail__quote {
  font-family: var(--f-heading);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--c-brown);
  border-left: 2px solid var(--c-gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.stylist-detail__meta {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--c-cream-warm);
  border-radius: 2px;
  border-left: 2px solid var(--c-gold);
}
.stylist-detail__meta-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-brown);
  margin-bottom: 0.7rem;
}
.stylist-detail__meta p {
  font-size: 0.85rem;
  color: var(--c-text-light);
  margin-bottom: 0.3rem;
}
.stylist-detail__meta a {
  color: var(--c-brown);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base);
}
.stylist-detail__meta a:hover { border-color: var(--c-gold); }

.stylist-detail__notice {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: var(--c-cream-dark);
  border-radius: 2px;
  font-size: 0.82rem;
  color: var(--c-text-light);
  line-height: 1.7;
}

.stylist-detail__actions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stylist-detail__back {
  margin-top: 3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--c-taupe);
  transition: color var(--t-base);
}
.stylist-detail__back:hover { color: var(--c-brown); }
.stylist-detail__back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* --- Contact Page --- */
.contact-content { padding: var(--s-section) 0; }
.contact-content__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-info__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 2.5rem;
}

.contact-block { margin-bottom: 2rem; }
.contact-block__label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.6rem;
}
.contact-block__value {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--c-text-light);
}
.contact-block__value a {
  color: var(--c-brown);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base);
  font-weight: 400;
}
.contact-block__value a:hover { border-color: var(--c-gold); }

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.contact-exterior {
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 1rem;
  max-width: 225px;
}
.contact-exterior__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
  transition: transform var(--t-slow);
}
.contact-exterior:hover .contact-exterior__img { transform: scale(1.03); }

.contact-map {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 2px;
  margin-top: 0;
}

/* --- Footer --- */
.footer {
  background: var(--c-charcoal);
  color: rgba(255,255,255,0.5);
  padding: 4rem 0 2rem;
}
.footer__inner { text-align: center; }

.footer__logo {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 0.4rem;
}

.footer__tagline {
  font-family: var(--f-heading);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(255,255,255,0.3);
  margin-bottom: 2.5rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer__link {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--t-base);
}
.footer__link:hover { color: var(--c-gold-light); }

.footer__line {
  width: 30px;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 auto 2rem;
}

.footer__meta {
  font-size: 0.62rem;
  letter-spacing: 0.8px;
  line-height: 2;
  color: rgba(255,255,255,0.3);
}
.footer__meta span {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* --- Animations --- */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 100%; }
  100% { top: 100%; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-list .container--narrow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .stylist-detail__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stylist-detail__photo-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  .stylist-detail__photo-wrap::after { display: none; }

  .contact-content__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .contact-map { min-height: 280px; }
}

@media (max-width: 768px) {
  /* Tighten spacing globally */
  :root {
    --s-section: clamp(2.5rem, 5vw, 3.5rem);
    --s-section-sm: clamp(1.8rem, 4vw, 2.5rem);
  }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav { padding: 1rem 0; }
  .nav--scrolled { padding: 0.7rem 0; }

  /* Sticky booking bar — more prominent */
  .booking-bar {
    display: flex;
    padding: 0.75rem 1.5rem;
  }
  body { padding-bottom: 50px; }

  /* Hero — much shorter, no wasted space */
  .hero {
    height: 70vh;
    height: 70svh;
    min-height: 420px;
  }
  .hero__content { padding: 0 1.5rem; }
  .hero__title { font-size: clamp(2.5rem, 9vw, 3.5rem); margin-bottom: 0.4rem; }
  .hero__eyebrow { font-size: 0.55rem; letter-spacing: 3px; margin-bottom: 0.6rem; }
  .hero__sub { font-size: 0.62rem; letter-spacing: 3px; }
  .hero__cta { margin-top: 1.5rem; gap: 0.7rem; }
  .hero__cta .btn { padding: 0.7rem 1.6rem; font-size: 0.6rem; }
  .hero__scroll { display: none; }

  /* Page headers — compact */
  .page-header {
    height: 28vh;
    min-height: 180px;
    max-height: 260px;
  }
  .page-header__title { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .page-header__label { font-size: 0.55rem; letter-spacing: 3px; margin-bottom: 0.4rem; }
  .team-header-bg { background-position: center 20%; }
  .page-header--tall { height: 45vh; min-height: 280px; max-height: 400px; }

  /* Intro — tighter */
  .intro { padding: 2rem 0 1.5rem; }
  .intro__inner { padding: 0 0.5rem; }
  .intro__quote { font-size: 1.1rem; margin: 1rem 0; line-height: 1.55; }
  .intro__highlight { font-size: 0.7rem; padding: 0.45rem 1.2rem; margin-top: 0.6rem; }
  .intro__note { margin-top: 1.5rem; font-size: 0.78rem; line-height: 1.7; }

  .divider { margin: 0.8rem auto; }

  /* Home cards — side by side, compact */
  .home-cards { padding: 2rem 0 2rem; }
  .home-cards__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 100%;
  }
  .home-card { aspect-ratio: 3/4; border-radius: 10px; }
  .home-card__overlay { padding: 1rem; }
  .home-card__label { font-size: 0.58rem; letter-spacing: 2px; }

  /* Studio banner — shorter */
  .studio-banner {
    height: 30vh;
    min-height: 180px;
    max-height: 260px;
  }
  .studio-banner__title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .studio-info { padding: 1.5rem 0 2rem; }
  .studio-info__text { font-size: 1rem; line-height: 1.6; }
  .studio-info__cta { margin-top: 1.2rem; }
  .studio-info__cta .btn { padding: 0.7rem 1.6rem; font-size: 0.6rem; }

  /* Services — compact */
  .services-intro { padding: 1.5rem 0 1rem; }
  .services-intro__text { font-size: 1.1rem; }
  .services-list .container--narrow {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .service-group { padding: 1.4rem 1.2rem 1.6rem; }
  .service-row { padding: 0.45rem 0; }
  .service-row__name { font-size: 0.78rem; }
  .service-row__price { font-size: 0.78rem; }
  .services-cta { padding: 0 0 2.5rem; }

  /* Team — compact grid */
  .team-intro { padding: 1.5rem 0 0.5rem; }
  .team-intro__text { font-size: 1.05rem; }
  .team-section { padding: 1.2rem 0 2rem; }
  .team-section__label { margin-bottom: 1.5rem; }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .team-card__photo { margin-bottom: 0.6rem; }
  .team-card__name { font-size: 0.58rem; letter-spacing: 2px; }
  .team-card__role { font-size: 0.65rem; }

  /* Contact — tighter */
  .contact-content { padding: 2rem 0; }
  .contact-info__title { font-size: 1.6rem; margin-bottom: 1.5rem; }
  .contact-block { margin-bottom: 1.2rem; }
  .contact-block__value { font-size: 0.84rem; }
  .contact-map { height: 260px; }
  .contact-exterior { max-width: 200px; }

  /* Stylist detail — compact */
  .stylist-detail { padding-top: 5rem; padding-bottom: 2rem; }
  .stylist-detail__inner { gap: 1.5rem; }
  .stylist-detail__photo-wrap { max-width: 260px; }
  .stylist-detail__name { font-size: 1.6rem; }
  .stylist-detail__role { font-size: 0.58rem; margin-bottom: 1.2rem; }
  .stylist-detail__bio p { font-size: 0.82rem; line-height: 1.75; }
  .stylist-detail__quote { font-size: 0.95rem; padding-left: 1rem; margin: 1.2rem 0; }
  .stylist-detail__meta { margin: 1.2rem 0; padding: 1rem; }
  .stylist-detail__notice { padding: 0.8rem 1rem; font-size: 0.78rem; }
  .stylist-detail__back { margin-top: 1.5rem; }

  /* Footer — compact */
  .footer { padding: 2rem 0 1.2rem; }
  .footer__tagline { margin-bottom: 1.5rem; }
  .footer__links { gap: 1.2rem; margin-bottom: 1.5rem; }
  .footer__line { margin: 0 auto 1rem; }
  .footer__meta { font-size: 0.58rem; }

  /* Mobile menu — slightly smaller links */
  .mobile-menu { gap: 1.2rem; }
  .mobile-menu__link { font-size: 1.8rem; }
  .mobile-menu__divider { margin: 0.1rem 0; }
  .mobile-menu__book { margin-top: 0.5rem; padding: 0.75rem 2rem; font-size: 0.62rem; }

  /* Subtler reveal on mobile */
  .reveal { transform: translateY(16px); }

  /* Buttons — slightly smaller */
  .btn { padding: 0.7rem 1.6rem; font-size: 0.62rem; letter-spacing: 2px; }
  .btn--sm { padding: 0.55rem 1.2rem; font-size: 0.58rem; }
}

@media (max-width: 480px) {
  .hero {
    height: 60vh;
    height: 60svh;
    min-height: 360px;
  }
  .hero__title { font-size: 2.2rem; }
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: 70%; }

  .page-header { min-height: 150px; }
  .page-header--tall { height: 40vh; min-height: 220px; max-height: 320px; }

  .home-cards__grid { gap: 0.5rem; }
  .home-card__label { font-size: 0.52rem; }

  .team-grid { gap: 0.8rem; }
  .team-card__name { font-size: 0.52rem; letter-spacing: 1.5px; }
  .team-card__role { font-size: 0.6rem; }

  .stylist-detail__actions { flex-direction: column; }
  .stylist-detail__actions .btn { width: 100%; text-align: center; }

  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; text-align: center; }

  .contact-exterior { max-width: 180px; }

  .footer__links { gap: 1rem; }
}
