/* ============================================================
   HALOS HAIR & NAIL STUDIO
   Brand: Warm Ivory · Brass · Espresso Editorial
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
address { font-style: normal; }
cite { font-style: normal; }

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

/* === DESIGN TOKENS === */
:root {
  --canvas:   #F7F4EE;
  --linen:    #EDE9E1;
  --espresso: #2C2825;
  --bark:     #3D3835;
  --stone:    #8C8580;
  --brass:    #B89B6A;
  --chalk:    #FDFCFA;

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;

  --max-w:    1360px;
  --pad-x:    clamp(1.25rem, 5vw, 4rem);
  --sec-py:   clamp(5rem, 8vw, 8rem);

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --dur-fast: 280ms;
  --dur-base: 700ms;
  --dur-slow: 1200ms;
}

/* === BASE === */
body {
  font-family: var(--font-body);
  background: var(--canvas);
  color: var(--bark);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  color: var(--espresso);
}
p { line-height: 1.8; }
em { font-style: italic; }
strong { font-weight: 600; }

/* === LAYOUT HELPERS === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.container-narrow {
  max-width: 680px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* === EYEBROW LABEL === */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
}
.eyebrow--chalk { color: rgba(253,252,250,0.55); }

/* === BRASS DIVIDER === */
.brass-divider {
  position: relative;
  height: 1px;
  background: var(--linen);
  margin: 0;
  overflow: hidden;
}
.brass-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-slow) var(--ease);
}
.brass-divider.is-drawn::after { transform: scaleX(1); }

.brass-divider--inner {
  margin: 0 var(--pad-x);
}

/* === SCROLL REVEAL === */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* === CTA BUTTONS === */
.btn-primary,
.btn-ghost,
.btn-stylist,
.btn-match,
.btn-directions {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
  color: var(--bark);
}
.btn-primary::after,
.btn-ghost::after,
.btn-stylist::after,
.btn-match::after,
.btn-directions::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width var(--dur-fast) var(--ease);
}
.btn-primary:hover::after,
.btn-ghost:hover::after,
.btn-stylist:hover::after,
.btn-match:hover::after,
.btn-directions:hover::after { width: 100%; }
.btn-ghost { color: var(--stone); }
.btn-bridal {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chalk);
  position: relative;
  padding-bottom: 3px;
}
.btn-bridal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width var(--dur-fast) var(--ease);
}
.btn-bridal:hover::after { width: 100%; }


/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247,244,238,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--linen);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-ring { width: 26px; height: 26px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: 0.02em;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--dur-fast) var(--ease);
}
.nav-link:hover { color: var(--bark); }
.header-reserve {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  margin-left: 1.5rem;
  padding-bottom: 2px;
  position: relative;
  flex-shrink: 0;
}
.header-reserve::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width var(--dur-fast) var(--ease);
}
.header-reserve:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--bark);
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--espresso);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-fast) var(--ease);
}
.mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-close {
  position: absolute;
  top: 1.25rem;
  right: var(--pad-x);
  color: var(--stone);
  padding: 8px;
  transition: color var(--dur-fast);
}
.mobile-nav-close:hover { color: var(--chalk); }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--chalk);
  opacity: 0.75;
  transition: opacity var(--dur-fast);
}
.mobile-nav-link:hover { opacity: 1; }
.mobile-nav-cta {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-top: 1rem;
}


/* ═══════════════════════════════════════════
   §1 HERO
═══════════════════════════════════════════ */
.s-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(170deg, rgba(44,40,37,0.65) 0%, rgba(44,40,37,0.25) 50%, rgba(44,40,37,0.72) 100%),
    url('../img/hero.jpg') no-repeat center top / cover;
}
.hero-halo-ring {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 38vw, 520px);
  opacity: 0.28;
}
.hero-halo-ring svg { width: 100%; height: 100%; }

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: var(--chalk);
  margin-bottom: 2.5rem;
}
.hero-line {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  animation: lineEntry var(--dur-base) var(--ease) forwards;
}
.hero-line:nth-child(1) { animation-delay: 300ms; }
.hero-line:nth-child(2) { animation-delay: 460ms; }
.hero-line:nth-child(3) { animation-delay: 620ms; }

@keyframes lineEntry {
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.7s var(--ease) 900ms forwards;
}
@keyframes fadeIn { to { opacity: 1; } }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.7s var(--ease) 1200ms forwards;
}
.scroll-ring { width: 22px; height: 22px; }
.scroll-label {
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253,252,250,0.4);
}


/* ═══════════════════════════════════════════
   §2 MIRROR MOMENT
═══════════════════════════════════════════ */
.s-mirror {
  background: var(--linen);
  padding-top: var(--sec-py);
  padding-bottom: var(--sec-py);
}
.mirror-manifesto {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.35;
  color: var(--espresso);
  margin-bottom: 3rem;
}
.mirror-manifesto p { display: block; }
.mirror-rule {
  width: 48px;
  height: 1px;
  background: var(--brass);
  margin-bottom: 3rem;
}
.mirror-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.mq-text {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--bark);
  margin-bottom: 0.875rem;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
}
.mq-attr {
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.mq-attr span { margin: 0 0.35em; }


/* ═══════════════════════════════════════════
   §3 SITUATIONS FINDER
═══════════════════════════════════════════ */
.s-situations {
  padding-top: var(--sec-py);
  padding-bottom: var(--sec-py);
}
.situations-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  text-align: center;
}
.situations-inner > .eyebrow {
  display: block;
  margin-bottom: 3rem;
}
.situations-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.situation-btn {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.75rem);
  font-style: italic;
  font-weight: 400;
  color: var(--bark);
  padding: 0.5rem 0;
  position: relative;
  transition: opacity 400ms var(--ease), color 280ms var(--ease);
  cursor: pointer;
}
.situation-btn::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brass);
  transition: width var(--dur-fast) var(--ease);
}
.situation-btn:hover::after { width: 100%; }
.situation-btn:hover { color: var(--espresso); }
.situation-btn.is-active { color: var(--espresso); }
.situation-btn.is-active::after { width: 100%; }
.situation-btn.is-dimmed { opacity: 0.2; pointer-events: none; }


/* ═══════════════════════════════════════════
   §4 MATCH RESULTS
═══════════════════════════════════════════ */
.s-match {
  background: var(--linen);
  max-height: 0;
  overflow: hidden;
  transition: max-height 700ms var(--ease), padding 700ms var(--ease);
}
.s-match.is-open {
  max-height: 900px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.match-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.match-intro {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--stone);
  margin-bottom: 2.5rem;
  text-align: center;
}
.match-group {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.match-group.is-active { display: grid; }

.match-card {
  background: var(--canvas);
  display: flex;
  gap: 0;
  overflow: hidden;
  border-radius: 2px;
}
.match-card-img {
  width: 140px;
  flex-shrink: 0;
  min-height: 200px;
}
.match-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.match-card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 400;
  color: var(--espresso);
}
.match-card-stmt {
  font-size: 0.875rem;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--bark);
  line-height: 1.6;
  flex: 1;
}
.match-card-fit {
  font-size: 0.8125rem;
  color: var(--stone);
  line-height: 1.65;
}
.match-card-fit strong { color: var(--bark); font-weight: 600; }
.btn-match { margin-top: 0.25rem; }


/* ═══════════════════════════════════════════
   §5 STYLIST PROFILES
═══════════════════════════════════════════ */
.s-stylists { background: var(--canvas); }
.stylists-heading {
  text-align: center;
  padding: var(--sec-py) var(--pad-x) 0;
}

.stylist-spread {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: clamp(520px, 70vh, 800px);
}
.stylist-spread--flip {
  grid-template-columns: 45% 55%;
  direction: rtl;
}
.stylist-spread--flip > * { direction: ltr; }

.stylist-photo {
  min-height: clamp(380px, 60vh, 700px);
}

.stylist-content {
  display: flex;
  align-items: center;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(2rem, 4vw, 4.5rem);
}
.stylist-content-inner {
  max-width: 480px;
}
.stylist-name {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-style: italic;
  color: var(--espresso);
  margin-bottom: 0.375rem;
}
.stylist-title {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.75rem;
}
.stylist-signature {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--bark);
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--brass);
}
.stylist-philosophy {
  font-size: 0.9375rem;
  color: var(--bark);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.stylist-client-quote {
  background: var(--linen);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}
.scq-text {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--bark);
  margin-bottom: 0.625rem;
}
.scq-attr {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.stylist-fit {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.65;
  margin-bottom: 1.75rem;
}
.stylist-fit strong { color: var(--bark); }


/* ═══════════════════════════════════════════
   §6 TRUST TRANSFER
═══════════════════════════════════════════ */
.s-trust {
  background: var(--canvas);
  padding-top: var(--sec-py);
  padding-bottom: var(--sec-py);
}
.trust-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.trust-lead {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.3;
  margin-bottom: 2.5rem;
}
.trust-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.trust-body p {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--bark);
  line-height: 1.85;
}
.trust-voices { margin-bottom: 3rem; }
.trust-voices-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1.5rem;
}
.trust-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.trust-quote {
  border-left: 1px solid var(--linen);
  padding-left: 1.25rem;
}
.trust-quote p {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--bark);
  margin-bottom: 0.625rem;
}
.trust-quote cite {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}
.trust-close {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--espresso);
  padding-top: 2.5rem;
  border-top: 1px solid var(--linen);
}


/* ═══════════════════════════════════════════
   §7 TRANSFORMATIONS
═══════════════════════════════════════════ */
.s-transformations {
  background: var(--linen);
  padding-top: var(--sec-py);
  padding-bottom: var(--sec-py);
}
.transformations-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.transformations-inner > .eyebrow { margin-bottom: 3rem; }
.transformations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tx-item {}
.tx-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 1rem;
}
.tx-img {
  aspect-ratio: 3 / 4;
}
.tx-caption {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--bark);
  margin-bottom: 0.5rem;
}
.tx-name {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}


/* ═══════════════════════════════════════════
   §8 REVIEWS
═══════════════════════════════════════════ */
.s-reviews {
  background: var(--canvas);
  padding-top: var(--sec-py);
  padding-bottom: var(--sec-py);
}
.reviews-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.reviews-inner > .eyebrow { margin-bottom: 3rem; }
.reviews-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
  align-items: start;
}
.review-featured {
  padding-right: 3rem;
  border-right: 1px solid var(--linen);
}
.review-text {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.75vw, 1.25rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: var(--bark);
  margin-bottom: 1.5rem;
}
.review-attr {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.review-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--espresso);
  letter-spacing: 0.05em;
}
.review-meta {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.reviews-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.review-block .review-text {
  font-size: 0.9375rem;
}


/* ═══════════════════════════════════════════
   §9 BRIDAL
═══════════════════════════════════════════ */
.s-bridal {
  position: relative;
  background: var(--espresso);
  overflow: hidden;
}
.bridal-bg {
  position: absolute;
  inset: 0;
}
.photo-bridal {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(155deg, rgba(44,40,37,0.82) 0%, rgba(44,40,37,0.60) 50%, rgba(44,40,37,0.80) 100%),
    url('../img/bridal.jpg') no-repeat center top / cover;
}
.bridal-overlay {
  position: relative;
  z-index: 2;
  padding-top: var(--sec-py);
  padding-bottom: var(--sec-py);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.bridal-content { max-width: 640px; }
.bridal-content > .eyebrow { margin-bottom: 1.5rem; }
.bridal-headline {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--chalk);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}
.bridal-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.bridal-body p {
  font-size: 0.9375rem;
  color: rgba(253,252,250,0.65);
  line-height: 1.85;
}
.bridal-quote {
  padding: 1.25rem 1.5rem;
  border-left: 1px solid rgba(184,155,106,0.35);
  margin-bottom: 2.5rem;
}
.bridal-quote p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(253,252,250,0.75);
  margin-bottom: 0.625rem;
}
.bridal-quote cite {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
}


/* ═══════════════════════════════════════════
   §10 VISIT
═══════════════════════════════════════════ */
.s-visit {
  background: var(--canvas);
  padding-top: var(--sec-py);
  padding-bottom: var(--sec-py);
}
.visit-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.visit-photo {
  aspect-ratio: 4 / 3;
  border-radius: 2px;
}
.visit-details > .eyebrow { margin-bottom: 1rem; }
.visit-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-style: italic;
  color: var(--espresso);
  margin-bottom: 2.5rem;
}
.visit-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.vi-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.5rem;
}
.vi-val {
  font-size: 0.9375rem;
  color: var(--bark);
  line-height: 1.75;
}
.vi-hours {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.vi-hours-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--bark);
}
.vi-hours-row dt { width: 80px; flex-shrink: 0; }
.vi-hours-row dd { color: var(--stone); }
.vi-link {
  display: block;
  font-size: 0.9375rem;
  color: var(--bark);
  margin-bottom: 0.25rem;
  transition: color var(--dur-fast);
}
.vi-link:hover { color: var(--brass); }
.visit-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.visit-social {
  display: flex;
  gap: 1rem;
}
.social-link {
  color: var(--stone);
  transition: color var(--dur-fast);
  display: flex;
  align-items: center;
}
.social-link:hover { color: var(--bark); }
.visit-close {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--stone);
  padding-top: 1.5rem;
  border-top: 1px solid var(--linen);
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.site-footer {
  background: var(--espresso);
  padding: 3rem var(--pad-x);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.footer-ring { width: 22px; height: 22px; }
.footer-brand span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--chalk);
  opacity: 0.75;
}
.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color var(--dur-fast);
}
.footer-nav a:hover { color: var(--chalk); }
.footer-copy {
  margin-left: auto;
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--stone);
}


/* ═══════════════════════════════════════════
   PHOTOGRAPHY
   All images sourced from Unsplash (unsplash.com/license — free for commercial use).
   Each class below has an HTML comment in index.html marking where to swap in
   the client's own photography. File names match the HTML comment labels.
═══════════════════════════════════════════ */

/* Match-card portraits — displayed at 140 × 200 px (desktop) */
.photo-portrait-warm {
  background: url('../img/portrait-warm.jpg') no-repeat center top / cover;
}
.photo-portrait-cool {
  background: url('../img/portrait-cool.jpg') no-repeat center top / cover;
}
.photo-portrait-soft {
  background: url('../img/portrait-soft.jpg') no-repeat center top / cover;
}

/* Stylist full-panel photos — displayed at ~55 / 45 % viewport width × up to 700 px tall */
.photo-stylist-emma {
  background: url('../img/stylist-emma.jpg') no-repeat center top / cover;
}
.photo-stylist-rachel {
  background: url('../img/stylist-rachel.jpg') no-repeat center top / cover;
}
.photo-stylist-sarah {
  background: url('../img/stylist-sarah.jpg') no-repeat center top / cover;
}

/* Transformation gallery — displayed at 3∶4 portrait aspect ratio */
.photo-tx-before-1 {
  background: url('../img/tx-before-1.jpg') no-repeat center top / cover;
}
.photo-tx-after-1 {
  background: url('../img/tx-after-1.jpg') no-repeat center top / cover;
}
.photo-tx-before-2 {
  background: url('../img/tx-before-2.jpg') no-repeat center top / cover;
}
.photo-tx-after-2 {
  background: url('../img/tx-after-2.jpg') no-repeat center top / cover;
}
.photo-tx-before-3 {
  background: url('../img/tx-before-3.jpg') no-repeat center top / cover;
}
.photo-tx-after-3 {
  background: url('../img/tx-after-3.jpg') no-repeat center top / cover;
}

/* Studio / visit section — displayed at 4∶3 landscape aspect ratio */
.photo-studio {
  background: url('../img/studio.jpg') no-repeat center center / cover;
}


/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stylist-spread,
  .stylist-spread--flip {
    grid-template-columns: 1fr;
    direction: ltr;
    min-height: unset;
  }
  .stylist-spread--flip { direction: ltr; }
  .stylist-photo { min-height: 360px; }
  .stylist-content { padding: 2.5rem var(--pad-x); }
  .stylist-content-inner { max-width: 100%; }

  .mirror-quotes { grid-template-columns: 1fr 1fr; }
  .reviews-layout { grid-template-columns: 1fr; }
  .review-featured { padding-right: 0; border-right: none; padding-bottom: 2rem; border-bottom: 1px solid var(--linen); }

  .visit-inner { grid-template-columns: 1fr; }
  .visit-photo { aspect-ratio: 16 / 9; }
}

@media (max-width: 768px) {
  .site-nav,
  .header-reserve { display: none; }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }

  .mirror-quotes { grid-template-columns: 1fr; }

  .match-group.is-active { grid-template-columns: 1fr; }
  .match-card { flex-direction: column; }
  .match-card-img { width: 100%; min-height: 160px; }
  .s-match.is-open { max-height: 1400px; }

  .transformations-grid { grid-template-columns: 1fr; }

  .trust-quotes { grid-template-columns: 1fr; }

  .reviews-stack { gap: 1.5rem; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-copy { margin-left: 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .visit-actions { flex-wrap: wrap; }
}

/* Focus visible styles */
:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
  border-radius: 1px;
}
