:root {
  --ink: #0a0a0a;
  --paper: #ffffff;
  --muted: #6b6b6b;
  --rule: #e6e6e6;
  --gold: #c59d5f;
  --gold-deep: #9c7c4e;
  --gold-light: #c9ae82;
  --cream: #faf6ec;
  --shell: #FAF8F5;      /* warm off-white shared by the services + reviews bands */
  --header-h: 96px;
  --footer-logo-w: 190px;
  --max: 1180px;
}

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

/* visible only to screen readers and crawlers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 20px;
  font-size: 0.8rem;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Montserrat, Roboto, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(160%) blur(8px);
  border-bottom: 1px solid var(--rule);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}
/* source is 600x284, so 150px displays at ~4x density — no upscaling */
.brand img { width: 150px; height: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav a:not(.btn) {
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.nav a:not(.btn):hover, .nav a:not(.btn)[aria-current="page"] { border-color: var(--ink); }
.nav a.btn { color: var(--paper); border-bottom: 1px solid var(--ink); }
.nav a.btn:hover { color: var(--ink); }

.btn {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  padding: 14px 26px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-light { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.btn-light:hover { background: transparent; color: var(--paper); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.58));
}
.hero-inner {
  position: relative;
  z-index: 2;
  /* matches .feature-strip's item-row width; both blocks are centred and
     carry 24px side padding, so their text shares a left edge at any width */
  width: 100%;
  max-width: 801px;
  margin: 0 auto;
  text-align: left;
  color: var(--paper);
  padding: 96px 24px;
  text-shadow: 0 1px 24px rgba(0,0,0,0.55);
}
.hero-inner h1 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}
.hero-inner .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 0.72rem;
  margin: 0 0 22px;
  color: var(--gold-light);
  opacity: 1;
}
.hero-inner p.lede { max-width: 44ch; margin: 0 0 30px; opacity: 0.95; }
.hero-rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  color: var(--gold-light);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.hero-stars { letter-spacing: 0.16em; }

/* ---------- Feature strip ---------- */
.feature-strip {
  background: #9C7C4E;      /* light warm gold */
  padding: 22px 0;
  width: 100%;
}
.feature-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.fs-item {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FAF6EC;            /* warm cream */
  padding: 0 24px;
  white-space: nowrap;
}
.fs-dot {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
}

/* ---------- Sections ---------- */
section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 12px;
}
h2 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
h3 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}
.rule { width: 44px; height: 1px; background: var(--ink); margin: 0 0 26px; }
.center { text-align: center; }
.center .rule { margin-left: auto; margin-right: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Service cards ---------- */
.services-feature { background: var(--shell); padding: 92px 0; }
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid #E7E2DA;
  padding: 28px 24px 26px;
}
.service-card.is-dark { background: #141414; border-color: #141414; }
.sc-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #9C7C4E;
  margin: 0 0 12px;
}
.service-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
  margin: 0 0 14px;
}
/* flex:1 pushes price + link to a shared baseline across uneven copy */
.sc-copy { font-size: 14px; line-height: 1.65; color: #6B6864; margin: 0 0 22px; flex: 1; }
.sc-price {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #9C7C4E;
  margin: 0 0 12px;
}
.sc-link {
  align-self: flex-start;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity .2s ease;
}
.sc-link::after { content: " \2192"; }
.sc-link:hover { opacity: .6; }
.service-card.is-dark h3 { color: #FAF6EC; }
.service-card.is-dark .sc-copy { color: rgba(250, 246, 236, .75); }
.service-card.is-dark .sc-link { color: #FAF6EC; }
.book-row { text-align: center; margin-top: 44px; }

/* ---------- Services menu ---------- */
.menu-nav { background: var(--paper); border-bottom: 1px solid #E7E2DA; padding: 18px 0; }
.menu-nav .wrap { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; }
.menu-nav a {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
  border: 1px solid #E7E2DA; padding: 9px 16px;
  transition: border-color .2s ease, color .2s ease;
}
.menu-nav a:hover { border-color: #9C7C4E; color: #9C7C4E; }

.menu { background: var(--paper); padding: 80px 0; }
.menu-group { margin-bottom: 72px; scroll-margin-top: 120px; }
.menu-group:last-of-type { margin-bottom: 40px; }
.menu-head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid #9C7C4E; padding-bottom: 12px; margin-bottom: 8px;
}
.menu-head h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500; font-size: clamp(1.5rem, 3vw, 1.9rem); margin: 0;
}
.menu-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px; letter-spacing: .2em; color: var(--muted);
}
.menu-row {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid #EFEBE4;
}
.menu-row:last-child { border-bottom: 0; }
.menu-main h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 19px; font-weight: 500; letter-spacing: 0;
  margin: 0 0 6px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.menu-badge {
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #9C7C4E; border: 1px solid #9C7C4E; border-radius: 999px;
  padding: 3px 9px;
}
.menu-desc { color: #6B6864; font-size: 14px; line-height: 1.6; margin: 0; max-width: 60ch; }
.menu-cost { text-align: right; display: grid; gap: 3px; justify-items: end; }
.menu-price {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 700; color: var(--ink); white-space: nowrap;
}
.menu-price.is-pill {
  background: #141414; color: var(--cream);
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  border-radius: 999px; padding: 6px 14px;
}
.menu-sub { font-size: 11px; color: var(--muted); white-space: nowrap; }
.pricing-note {
  border-top: 1px solid #E7E2DA;
  padding-top: 24px;
  font-size: 13px; line-height: 1.7; color: #6B6864;
}
.pricing-note strong { color: var(--ink); }

/* ---------- Policies ---------- */
.policies { background: var(--paper); padding: 80px 0; }
.policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 44px;
}
.policy-card {
  border: 1px solid #E7E2DA;
  padding: 26px 24px;
  position: relative;
}
.policy-num {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  color: #9C7C4E;
  display: block;
  margin-bottom: 10px;
}
.policy-card h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 10px;
}
.policy-card p {
  color: #6B6864;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ---------- Quotes ---------- */
.quotes { background: var(--shell); }
/* Reviews wall — a continuously scrolling row of cards. Native overflow
   scroll so touch swipe works; JS nudges scrollLeft and clones the cards
   for a seamless loop. Clones are JS-only so the source stays unduplicated. */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--muted);
  margin: -6px 0 0;
}
.rating-summary a { color: var(--ink); }
.stars { color: var(--gold); letter-spacing: 0.18em; margin: 0; }

.reviews {
  margin-top: 46px;
  /* fade the cards out at both edges so the loop has no hard seam */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.review-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 6px 24px;
}
.review-track::-webkit-scrollbar { display: none; }
.review-track:focus-visible { outline: 2px solid var(--gold); outline-offset: -4px; }

.review-card {
  flex: 0 0 330px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 26px 24px 22px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 6px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 26px rgba(10, 10, 10, 0.07);
}
.review-card .stars { font-size: 0.92rem; }
.review-body {
  color: var(--ink);
  font-size: 0.93rem;
  line-height: 1.72;
  margin: 12px 0 20px;
  /* keep every card the same height; full text stays in the DOM */
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.review-card footer {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
}
.review-card cite {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
}
.verified {
  border: 1px solid var(--gold);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.58rem;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.verified::before { content: "\2713\00a0"; }

/* ---------- Stylist intro ---------- */
.stylist {
  background: #FFFFFF;
  border-top: 1px solid #E7E2DA;
  border-bottom: 1px solid #E7E2DA;
  padding: 96px 0;
}
.stylist-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}
.stylist-grid {
  display: grid;
  grid-template-columns: 420px 1fr;   /* fixed photo width, flexible copy */
  gap: 64px;
  align-items: center;
}
.stylist-photo {
  height: 460px;
  background: linear-gradient(160deg, #2c2c2c, #050505); /* shows while the photo loads */
}
.stylist-photo img { width: 100%; height: 100%; object-fit: cover; }

/* --- copy column --- */
/* scoped, not global: the hero and CTA-band eyebrows carry their own colours */
.stylist-copy .eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #9C7C4E;              /* same light warm gold as the strip above */
  font-weight: 600;
  margin-bottom: 14px;
}
.stylist-copy h2 {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 20px;
}
.gold-rule {
  width: 48px;
  height: 1px;
  background: #9C7C4E;
  margin: 0 0 20px 0;           /* left-aligned, not centered, since this column is left-aligned */
}
.stylist-bio {
  font-size: 16px;
  line-height: 1.7;
  color: #6B6864;
  max-width: 440px;
  margin-bottom: 30px;
}
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-outline {
  display: inline-block;
  border: 1px solid #141414;
  color: #141414;
  padding: 15px 32px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: .2s;
}
.btn-outline:hover { background: #141414; color: #fff; }

.btn-outline.gold {
  border-color: #9C7C4E;
  color: #9C7C4E;
}
.btn-outline.gold:hover { background: #9C7C4E; color: #fff; }

/* ---------- About page ---------- */
.page-head { background: var(--shell); padding: 88px 0 76px; text-align: center; }
.ph-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: .22em;
  text-transform: uppercase; color: #9C7C4E; margin: 0 0 14px;
}
.page-head h1 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  margin: 0 0 18px;
}
.ph-lede { max-width: 56ch; margin: 0 auto; color: #6B6864; }
.gold-rule.centered { margin-left: auto; margin-right: auto; }

.stat-bar { background: #9C7C4E; color: var(--cream); }
.stat-bar ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0; padding: 0; list-style: none;
}
.stat-bar li {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 30px 12px;
  border-left: 1px solid rgba(255,255,255,.28);
  text-align: center;
}
.stat-bar li:first-child { border-left: 0; }
.stat-num { font-family: Fraunces, Georgia, serif; font-size: 30px; font-weight: 500; line-height: 1; }
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
}

.about-story { background: var(--paper); padding: 92px 0; }
.story-grid { display: grid; grid-template-columns: 420px 1fr; gap: 64px; align-items: start; }
.story-photo { background: #141414; }
.story-photo img { width: 100%; height: 520px; object-fit: cover; }
.story-copy h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500; font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  margin: 0 0 18px;
}
.story-copy p { color: #6B6864; margin: 0 0 20px; }
.pull-quote {
  margin: 28px 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid #9C7C4E;
  font-family: Fraunces, Georgia, serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink);
}
.story-copy .btn-row { margin-top: 26px; }

.why { background: var(--paper); padding: 0 0 92px; text-align: center; }
.why .center { margin-bottom: 44px; }
.why h2 { font-family: Fraunces, Georgia, serif; font-weight: 500; }
.why-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left; }
.why-card { border: 1px solid #E7E2DA; padding: 26px 24px; }
.why-card h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 20px; font-weight: 500; letter-spacing: 0;
  margin: 0 0 12px;
}
.why-card p { color: #6B6864; font-size: 14px; line-height: 1.65; margin: 0; }

/* ---------- Contact page ---------- */
.contact { background: var(--paper); padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-block { margin-bottom: 28px; }
.contact-block p { margin: 0; color: #6B6864; line-height: 1.75; }
.contact-block a { color: var(--ink); text-decoration: none; border-bottom: 1px solid #E7E2DA; }
.contact-block a:hover { border-color: #9C7C4E; color: #9C7C4E; }
.contact-note { font-size: 13px; font-style: italic; margin-top: 8px !important; }
.contact-map { border: 1px solid #E7E2DA; line-height: 0; }
.contact-map iframe { display: block; width: 100%; height: 520px; border: 0; filter: grayscale(1); }
.contact-details .btn-row { margin-top: 30px; }

/* ---------- Brand row ---------- */
.brands { background: var(--shell); padding: 72px 0 64px; text-align: center; }
.brands-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #9C7C4E;
  margin: 0 0 10px;
}
.brands-lede { color: #6B6864; margin: 0 0 34px; }
.brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px 56px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.brand-row img { height: 34px; width: auto; opacity: .75; }

/* ---------- CTA band ---------- */
.cta-band {
  background: #141414;
  color: var(--paper);
  text-align: center;
  padding: 96px 0;
}
.cta-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #9C7C4E;
  margin: 0 0 18px;
}
.cta-band h2 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  margin: 0 0 18px;
}
.cta-rule { width: 48px; height: 1px; background: rgba(255,255,255,.4); margin: 0 auto 22px; }
.cta-lede { max-width: 52ch; margin: 0 auto 30px; color: rgba(255,255,255,.82); }
.cta-btn {
  display: inline-block;
  background: var(--paper);
  color: #141414;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid var(--paper);
  transition: background .2s ease, color .2s ease;
}
.cta-btn:hover { background: transparent; color: var(--paper); }
.cta-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 0;
  color: #C9AE82;
  font-size: .84rem;
}
.cta-stars { letter-spacing: .16em; }

/* Legacy CTA band + partner row — still used by about/services/policy */
.band {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}
.band .eyebrow { color: rgba(255,255,255,0.72); }
.band .rule { background: var(--paper); margin-left: auto; margin-right: auto; }
.band p { max-width: 46ch; margin: 0 auto 30px; opacity: 0.9; }
.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 46px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.partners img { height: 34px; width: auto; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: 64px 0 40px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
/* larger than the mockup's small mark, per request.
   nsalon-logo.png carries 82/600 of transparent padding on its left, so the
   negative margin pulls the visible glyph onto the column's text edge. */
.footer-logo {
  display: inline-block;
  margin-bottom: 18px;
  margin-left: calc(var(--footer-logo-w) * -82 / 600);
}
.footer-logo img { width: var(--footer-logo-w); height: auto; }
.footer-brand p { margin: 0 0 20px; color: var(--muted); max-width: 34ch; }
.footer-map {
  border: 1px solid var(--rule);
  line-height: 0;
  max-width: 300px;
}
.footer-map iframe { display: block; width: 100%; height: 180px; border: 0; filter: grayscale(1); }
.site-footer a { text-decoration: none; color: var(--muted); }
.site-footer a:hover { color: var(--ink); }
.footer-links { display: grid; gap: 9px; }
.footer-address { font-style: normal; display: grid; gap: 12px; color: var(--muted); margin-bottom: 22px; }
/* smaller sibling of .footer-head, so Hours reads as a labelled block */
.footer-subhead {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 10px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}
.footer-hours { display: grid; gap: 4px; color: var(--muted); }
.footer-hours em { font-size: 0.82rem; opacity: 0.85; margin-top: 4px; }

.social-icons { display: flex; gap: 12px; }
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--muted);
  transition: color .2s ease, border-color .2s ease;
}
.social-icons a:hover { color: #9C7C4E; border-color: #9C7C4E; }
.social-icons svg { width: 18px; height: 18px; display: block; }
.footer-head {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 600;
  color: #9C7C4E;
  margin: 0 0 14px;
}
.legal {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .split, .cards, .footer-grid { grid-template-columns: 1fr; }
  .review-card { flex-basis: 82vw; max-width: 330px; }
  .review-track { padding: 6px 16px; }
  .split { gap: 32px; }
  section { padding: 64px 0; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    /* +1px clears the header's bottom border so the panel sits flush */
    inset: calc(var(--header-h) + 1px) 0 auto;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 22px;
    border-bottom: 1px solid var(--rule);
    /* must clear its own height AND the header it sits below, or the bottom
       of the panel hangs in the header and eats taps meant for the toggle */
    transform: translateY(calc(-100% - var(--header-h) - 2px));
    visibility: hidden;
    transition: transform 0.32s ease, visibility 0s linear 0.32s;
  }
  .nav a { padding: 16px 24px; width: 100%; text-align: center; border-bottom: 0; }
  .nav .btn { margin: 12px 24px 0; width: calc(100% - 48px); text-align: center; }
  .nav-open .nav {
    transform: translateY(0);
    visibility: visible;
    transition: transform 0.32s ease, visibility 0s;
  }
  .hero { min-height: 72vh; }
}

/* mobile: let items wrap onto their own lines instead of squeezing */
@media (max-width: 700px) {
  .fs-item { padding: 6px 14px; }
  /* strip items wrap here, so there is no row edge for the hero to track */
  .hero-inner { max-width: var(--max); }
}

/* mobile: stack photo above copy */
@media (max-width: 880px) {
  .stylist-grid { grid-template-columns: 1fr; }
  .stylist-photo { height: 300px; }
}

@media (max-width: 1040px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .service-cards { grid-template-columns: 1fr; }
}

@media (max-width: 940px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-map { max-width: 100%; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand-row { gap: 14px 32px; }
  .brand-row li { font-size: 19px; }
}

@media (max-width: 940px) {
  .story-grid { grid-template-columns: 1fr; gap: 36px; }
  .story-photo img { height: 380px; }
  .why-cards { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .stat-bar ul { grid-template-columns: repeat(2, 1fr); }
  .stat-bar li:nth-child(3) { border-left: 0; }
  .stat-bar li:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.28); }
}

@media (max-width: 620px) {
  .menu-row { grid-template-columns: 1fr; gap: 10px; }
  .menu-cost { text-align: left; justify-items: start; }
}

@media (max-width: 760px) {
  .policy-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-map iframe { height: 340px; }
}
