/* ============================================
   MOD Salon — Shared design system
   Extracted from 02-homepage-mockup.html
   Used by services.html, about.html, contact.html
   ============================================ */

/* =============================================
   MOD SALON - Design Tokens (from brief)
   ============================================= */
:root {
  /* Palette */
  --gold-mid:      #B39252;
  --gold-dark:     #766139;
  --gold-light:    #F2E4B7;
  --gold-rich:     #C9A15C;
  --gold-antique:  #8A6E3A;
  --shadow-brown:  #3A2F1C;
  --black:         #060503;
  --charcoal:      #2A2622;
  --cream:         #F6F1E7;
  --taupe:         #B8AFA3;
  --line:          rgba(42, 38, 34, 0.12);
  --line-light:    rgba(246, 241, 231, 0.18);

  /* Type */
  --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --accent: 'Cormorant Garamond', Georgia, serif;

  /* Spacing scale (micro tokens for component-level spacing) */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 1rem;
  --s-4: 1.5rem;
  --s-5: 2rem;
  --s-6: 3rem;
  --s-7: 4.5rem;
  --s-8: 6rem;
  --s-9: 9rem;

  /* Layout */
  --max-w: 1320px;

  /* Motion */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);

  /* =============================================
     Navigator fluid spacing system (do not edit values here without team sign-off)
     ============================================= */
  /* Side padding — all sections/containers */
  --fluid-side-padding-min: 1.25rem; /* 20px */
  --fluid-side-padding-max: 5rem;    /* 80px */

  /* Vertical padding tiers */
  --section-xxl-padding-min: 9.375rem; /* 150px */
  --section-xxl-padding-max: 10rem;    /* 160px */

  --section-xl-padding-min: 6.875rem;  /* 110px */
  --section-xl-padding-max: 7.5rem;    /* 120px */

  --section-l-padding-min: 5.625rem;   /* 90px  */
  --section-l-padding-max: 6.25rem;    /* 100px */

  --section-m-padding-min: 5rem;       /* 80px  */
  --section-m-padding-max: 5rem;

  --section-s-padding-min: 3.75rem;    /* 60px  */
  --section-s-padding-max: 3.75rem;

  --section-xs-padding-min: 2.5rem;    /* 40px  */
  --section-xs-padding-max: 2.5rem;

  --section-xxs-padding-min: 1.5rem;   /* 24px  */
  --section-xxs-padding-max: 1.5rem;

  --section-header-padding-min: 1.25rem;
  --section-header-padding-max: 1.25rem;

  /* Hero height */
  --section-hero-height: 100vh;

  /* Offset for overlay headers */
  --section-offset-header: 80px;

  /* Narrow content widths */
  --section-narrow: 62.5rem;     /* 1000px */
  --section-narrow-xs: 45rem;    /* 720px  */

  /* Shorthand: reuse the fluid side-padding clamp in non-section contexts
     (fixed header, hero positioning, etc.). Same curve as section utilities. */
  --fluid-side-padding: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max));
}

/* =============================================
   Reset
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth; /* native anchor smooth-scroll; no JS library needed */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; }

/* =============================================
   Typography helpers
   ============================================= */
.accent {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.eyebrow {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark); /* a11y: gold-dark passes AA on cream (5.27:1) */
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  letter-spacing: 0.02em;
  display: inline-block;
  margin-bottom: var(--s-3);
}
.section-label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--gold-dark);
  display: inline-block;
}
h1, h2, h3, h4 {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2.1rem); font-weight: 400; }
h4 { font-size: 1.1rem; font-weight: 500; letter-spacing: 0; }
p  { color: var(--charcoal); }
.lede { font-size: clamp(1.05rem, 1.4vw, 1.18rem); line-height: 1.65; font-weight: 300; color: rgba(42,38,34,0.82); }

/* =============================================
   Layout helpers
   Note: side + vertical padding is now applied at the SECTION level via
   .section-l / .section-xl etc. Inner wraps only constrain max-width.
   ============================================= */
.wrap       { max-width: var(--max-w); margin: 0 auto; }
.wrap-tight { max-width: 980px; margin: 0 auto; }
section     { position: relative; }

/* =============================================
   Navigator fluid spacing utility classes
   Copy-pastable into Elementor unchanged. The .wrap alias rules below
   let the same classes work in this static mockup.
   ============================================= */
.section-xxl {
  padding-top: clamp(var(--section-xxl-padding-min), 1.087vw + 9.13rem, var(--section-xxl-padding-max));
  padding-bottom: clamp(var(--section-xxl-padding-min), 1.087vw + 9.13rem, var(--section-xxl-padding-max));
  padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
  padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
}
.section-xl {
  padding-top: clamp(var(--section-xl-padding-min), 1.087vw + 6.63rem, var(--section-xl-padding-max));
  padding-bottom: clamp(var(--section-xl-padding-min), 1.087vw + 6.63rem, var(--section-xl-padding-max));
  padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
  padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
}
.section-l {
  padding-top: clamp(var(--section-l-padding-min), 1.087vw + 5.38rem, var(--section-l-padding-max));
  padding-bottom: clamp(var(--section-l-padding-min), 1.087vw + 5.38rem, var(--section-l-padding-max));
  padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
  padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
}
.section-m {
  padding-top: clamp(var(--section-m-padding-min), 0vw + 5rem, var(--section-m-padding-max));
  padding-bottom: clamp(var(--section-m-padding-min), 0vw + 5rem, var(--section-m-padding-max));
  padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
  padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
}
.section-s {
  padding-top: clamp(var(--section-s-padding-min), 0vw + 3.75rem, var(--section-s-padding-max));
  padding-bottom: clamp(var(--section-s-padding-min), 0vw + 3.75rem, var(--section-s-padding-max));
  padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
  padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
}
.section-xs {
  padding-top: clamp(var(--section-xs-padding-min), 0vw + 2.5rem, var(--section-xs-padding-max));
  padding-bottom: clamp(var(--section-xs-padding-min), 0vw + 2.5rem, var(--section-xs-padding-max));
  padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
  padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
}
.section-xxs {
  padding-top: clamp(var(--section-xxs-padding-min), 0vw + 1.5rem, var(--section-xxs-padding-max));
  padding-bottom: clamp(var(--section-xxs-padding-min), 0vw + 1.5rem, var(--section-xxs-padding-max));
  padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
  padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
}
.section-header {
  padding-top: clamp(var(--section-header-padding-min), 0vw + 1.25rem, var(--section-header-padding-max));
  padding-bottom: clamp(var(--section-header-padding-min), 0vw + 1.25rem, var(--section-header-padding-max));
  padding-left: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
  padding-right: clamp(var(--fluid-side-padding-min), 6.522vw + -0.217rem, var(--fluid-side-padding-max)) !important;
}

/* Hero */
.section-hero {
  min-height: var(--section-hero-height) !important;
}
.section-hero .e-con-inner,
.section-hero .wrap {
  justify-content: center !important;
}

/* Full Width Sections - No Side Padding */
.section-full div {
  max-width: 100% !important;
}

/* Narrow Sections — works with Elementor's .e-con-inner AND this mockup's .wrap */
.section-narrow .e-con-inner,
.section-narrow .wrap {
  max-width: var(--section-narrow) !important;
}
.section-narrow-xs .e-con-inner,
.section-narrow-xs .wrap,
.section-narrow-xs .wrap-tight {
  max-width: var(--section-narrow-xs) !important;
}

/* Offset Padding for Overlay Headers */
.section-offset {
  padding-top: calc(var(--section-offset-header) + var(--section-xxl-padding-min));
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 1.05rem 2rem;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.45s var(--ease);
  cursor: pointer;
  will-change: transform;
}
.btn--primary {
  background: var(--charcoal);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--gold-mid);
  color: var(--charcoal);
}
.btn--gold {
  background: var(--gold-mid);
  color: var(--charcoal);
}
.btn--gold:hover {
  background: var(--gold-dark);
  color: var(--cream);
}
.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--ghost:hover {
  background: var(--cream);
  color: var(--charcoal);
}
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--cream);
}
.btn .arrow {
  width: 16px;
  height: 16px;
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* =============================================
   Header / Nav
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-4) var(--fluid-side-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.45s var(--ease), padding 0.45s var(--ease), border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(246, 241, 231, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding-block: var(--s-3);
  border-bottom-color: var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  /* Use gold-rich on dark hero, gold-dark when scrolled-cream header */
  color: var(--gold-rich);
  transition: color 0.45s var(--ease);
}
.site-header.is-scrolled .brand { color: var(--gold-dark); }
.brand__logo {
  display: block;
  height: 42px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
  color: var(--cream);
  transition: color 0.45s var(--ease);
}
.site-header.is-scrolled .nav { color: var(--charcoal); }
.nav a {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  padding-block: var(--s-2);
}
.nav a::after {
  content:'';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold-rich);
  transition: width 0.4s var(--ease);
}
.nav a:hover::after { width: 100%; }
.nav .btn { padding: 0.85rem 1.5rem; font-size: 0.72rem; }
.nav-toggle { display: none; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--cream);
  display: flex;
  align-items: flex-end;
  padding: 0 var(--fluid-side-padding) clamp(4rem, 8vh, 7rem);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  /* Permanent slight scale so the scroll parallax has room to translate without
     exposing the container edges. Static - no animation here to avoid flicker. */
  transform: scale(1.04);
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,5,3,0.55) 0%, rgba(6,5,3,0.15) 35%, rgba(6,5,3,0.85) 100%),
    linear-gradient(90deg, rgba(6,5,3,0.55) 0%, transparent 60%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero__eyebrow {
  font-family: var(--accent);
  font-style: italic;
  color: var(--gold-light);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  margin-bottom: var(--s-3);
  display: block;
}
.js-anim .hero__eyebrow { opacity: 0; }
.hero__title {
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 200;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: var(--s-5);
}
.hero__title em,
.hero__title .italic {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.hero__title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.12em; /* breathing room for descenders during reveal */
}
.hero__title .word > span {
  display: inline-block;
  will-change: transform, opacity;
}
.js-anim .hero__title .word > span {
  transform: translateY(110%);
  opacity: 0;
}
.hero__lede {
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  font-weight: 300;
  max-width: 540px;
  color: rgba(246,241,231,0.85);
  margin-bottom: var(--s-6);
}
.js-anim .hero__lede {
  opacity: 0;
  transform: translateY(20px);
}
.hero__ctas {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.js-anim .hero__ctas {
  opacity: 0;
  transform: translateY(20px);
}
.hero__location-tag {
  position: absolute;
  bottom: clamp(2rem, 5vh, 4rem);
  right: var(--fluid-side-padding);
  z-index: 2;
  color: var(--cream);
  text-align: right;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--s-1);
}
.hero__location-tag .small {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.hero__location-tag .line {
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.05rem;
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream);
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  opacity: 0.75;
}
.scroll-cue::after {
  content:'';
  width: 1px; height: 36px;
  background: var(--gold-light);
  animation: scrollPulse 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); }
  40%  { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================
   Recognition — narrow horizontal band, editorial signature
   ============================================= */
.recognition {
  background: var(--cream);
  /* vertical padding now provided by .section-xs (40px top/bottom) */
}
.recognition__band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding-block: var(--s-4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 880px;
  margin: 0 auto;
}
.recognition__badge {
  width: clamp(72px, 8vw, 96px);
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 6px 12px rgba(58, 47, 28, 0.18));
  transition: transform 0.5s var(--ease);
}
.recognition__badge:hover {
  transform: translateY(-2px) rotate(-2deg);
}
.recognition__text {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  max-width: 520px;
}
.recognition__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-dark);
}
.recognition__line {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.55;
  color: rgba(42, 38, 34, 0.78);
  font-weight: 300;
}
@media (max-width: 560px) {
  .recognition__band {
    flex-direction: column;
    text-align: center;
    gap: var(--s-3);
    padding-block: var(--s-5);
  }
  .recognition__text { align-items: center; }
}

/* =============================================
   Welcoming Luxury - editorial split
   ============================================= */
.welcoming {
  background: var(--cream);
  overflow: hidden;
}
.welcoming__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.welcoming__media {
  position: relative;
  aspect-ratio: 4 / 5;
  /* allow offset image to extend outside */
  overflow: visible;
}
.welcoming__media-main {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  will-change: transform;
}
.welcoming__media-offset {
  position: absolute;
  width: 52%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  right: -7%;
  bottom: -10%;
  border: 8px solid var(--cream);
  box-shadow: 0 28px 56px rgba(58, 47, 28, 0.22);
  z-index: 2;
  transition: transform 0.6s var(--ease);
}
.welcoming__media-offset:hover {
  transform: translateY(-4px);
}
.welcoming__media .badge {
  position: absolute;
  bottom: var(--s-5);
  left: var(--s-5);
  background: var(--cream);
  padding: var(--s-3) var(--s-5);
  font-family: var(--accent);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 1.1rem;
  z-index: 3;
}
@media (max-width: 900px) {
  .welcoming__media-offset {
    right: 4%;
    bottom: -8%;
    width: 42%;
  }
}
.welcoming__copy h2 {
  margin-bottom: var(--s-5);
}
.welcoming__copy h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}
.welcoming__copy p {
  margin-bottom: var(--s-4);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.7;
}
.welcoming__divider {
  width: 60px;
  height: 1px;
  background: var(--gold-mid);
  margin: var(--s-5) 0;
}
.welcoming__stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
}
.welcoming__stat .num {
  font-family: var(--accent);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 2.4rem;
  display: block;
  line-height: 1;
}
.welcoming__stat .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--shadow-brown);
  margin-top: var(--s-2);
  display: block;
}

/* =============================================
   Pillars
   ============================================= */
.pillars {
  background: var(--charcoal);
  color: var(--cream);
}
.pillars .section-label {
  color: var(--gold-rich);
}
.pillars h2 {
  color: var(--cream);
  max-width: 760px;
  margin-bottom: var(--s-7);
}
.pillars h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.pillar {
  border-top: 1px solid var(--line-light);
  padding-top: var(--s-5);
  position: relative;
}
.pillar__num {
  font-family: var(--accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-rich);
  display: block;
  margin-bottom: var(--s-3);
}
.pillar h3 {
  color: var(--cream);
  margin-bottom: var(--s-3);
  font-size: 1.6rem;
  font-weight: 400;
}
.pillar p {
  color: rgba(246,241,231,0.7);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* =============================================
   Services preview
   ============================================= */
.services {
  background: var(--cream);
}
.services__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-6);
  align-items: end;
  margin-bottom: var(--s-7);
}
.services__head h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}
.services__head .lede {
  padding-bottom: var(--s-2);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.service {
  background: white;
  padding: var(--s-6) var(--s-5) var(--s-5);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
.service::before {
  content:'';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold-mid);
  transition: width 0.6s var(--ease);
}
.service:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: 0 30px 60px -30px rgba(58,47,28,0.25);
}
.service:hover::before { width: 100%; }
.service__icon {
  color: var(--gold-dark); /* a11y: gold-dark for non-text UI on white card bg */
  margin-bottom: var(--s-4);
  display: inline-block;
  line-height: 0;
}
.service__icon svg {
  width: 28px;
  height: 28px;
  display: block;
}
.service h3 {
  font-size: 1.25rem;
  margin-bottom: var(--s-2);
  font-weight: 500;
}
.service p {
  font-size: 0.92rem;
  color: rgba(42,38,34,0.7);
  line-height: 1.6;
  margin-bottom: var(--s-4);
}
.service__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.service__price span {
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--charcoal);
}
.services__cta {
  margin-top: var(--s-6);
  text-align: center;
}

/* =============================================
   Guest Experience - numbered editorial
   ============================================= */
.experience {
  background: var(--shadow-brown);
  color: var(--cream);
  overflow: hidden;
}
.experience .section-label { color: var(--gold-light); }
.experience h2 {
  color: var(--cream);
  max-width: 800px;
  margin-bottom: var(--s-7);
}
.experience h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.exp__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-light);
}
.exp__step {
  padding: var(--s-5) var(--s-3);
  border-right: 1px solid var(--line-light);
  position: relative;
  cursor: default;
  transition: background 0.5s var(--ease);
}
.exp__step:last-child { border-right: 0; }
.exp__step:hover { background: rgba(246,241,231,0.04); }
.exp__num {
  font-family: var(--accent);
  font-style: italic;
  color: var(--gold-rich);
  font-size: 4rem;
  font-weight: 300;
  display: block;
  line-height: 1;
  margin-bottom: var(--s-4);
}
.exp__step h4 {
  color: var(--cream);
  font-size: 1.05rem;
  margin-bottom: var(--s-3);
  font-weight: 500;
}
.exp__step p {
  color: rgba(246,241,231,0.65);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* =============================================
   Gallery — "Inside MOD" editorial mosaic
   ============================================= */
.gallery { background: var(--cream); }
.gallery__head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--s-7);
}
.gallery__head h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}
.gallery__head .lede {
  margin-top: var(--s-4);
}
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 320px 320px;
  gap: var(--s-3);
}
.gallery__tile {
  position: relative;
  overflow: hidden;
  background: var(--shadow-brown);
  display: block;
}
.gallery__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease), opacity 0.6s var(--ease);
}
.gallery__tile:hover img { transform: scale(1.05); }
.gallery__tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 5, 3, 0.55) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
}
.gallery__tile:hover::after { opacity: 1; }
.gallery__caption {
  position: absolute;
  left: var(--s-4);
  bottom: var(--s-4);
  color: var(--cream);
  font-family: var(--accent);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  z-index: 2;
}
.gallery__tile:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}
/* Asymmetric layout:
   A (tall, 1 col x 2 rows) | B (wide, 2 cols x 1 row)
                            | C (1x1) | D (1x1)             */
.gallery__tile--tall { grid-column: 1; grid-row: 1 / span 2; }
.gallery__tile--wide { grid-column: 2 / span 2; grid-row: 1; }

@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }
  .gallery__tile--tall { grid-column: 1 / span 2; grid-row: 1; }
  .gallery__tile--wide { grid-column: 1 / span 2; grid-row: 2; }
  .gallery__tile:nth-child(3) { grid-column: 1; grid-row: 3; }
  .gallery__tile:nth-child(4) { grid-column: 2; grid-row: 3; }
}
@media (max-width: 560px) {
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 260px);
  }
  .gallery__tile,
  .gallery__tile--tall,
  .gallery__tile--wide {
    grid-column: 1;
    grid-row: auto;
  }
}

/* =============================================
   Team preview
   ============================================= */
.team {
  background: var(--cream);
}
.team__head {
  text-align: center;
  margin-bottom: var(--s-7);
}
.team__head h2 {
  margin-top: var(--s-3);
  margin-bottom: var(--s-4);
}
.team__head h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}
.team__head .lede {
  max-width: 640px;
  margin: 0 auto;
}
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.member {
  text-align: left;
}
.member__portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, var(--taupe) 0%, var(--shadow-brown) 100%);
  position: relative;
  overflow: hidden;
  margin-bottom: var(--s-4);
}
.member__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.member:hover .member__portrait img { transform: scale(1.04); }
/* Placeholder "Stylist photo" label — only when no <img> is present */
.member__portrait:not(:has(img))::before {
  content: 'Stylist photo';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--accent);
  font-style: italic;
  color: rgba(246,241,231,0.6);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.member__portrait:not(:has(img))::after {
  content: '';
  position: absolute;
  top: var(--s-3); right: var(--s-3);
  width: 12px; height: 12px;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
}
.member__name {
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: var(--s-1);
}
.member__tier {
  font-family: var(--accent);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 0.95rem;
  margin-bottom: var(--s-3);
  display: block;
}
.member__bio {
  font-size: 0.92rem;
  color: rgba(42,38,34,0.72);
  line-height: 1.65;
}
.team__cta { margin-top: var(--s-7); text-align: center; }

/* =============================================
   Products / Brands
   ============================================= */
.products {
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.products__bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/product-shelf.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: blur(2px) saturate(110%);
  z-index: 0;
}
.products .wrap { position: relative; z-index: 1; }
.products .section-label { color: var(--gold-light); }
.products__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

/* LEFT — overlapping product image stack */
.products__stack {
  position: relative;
  aspect-ratio: 5 / 6;
  /* Make sure offset shots can sit outside the box bounds */
  overflow: visible;
}
.products__watermark {
  position: absolute;
  top: -6%;
  left: 8%;
  width: 56%;
  color: var(--gold-rich);
  opacity: 0.18;
  z-index: 0;
  pointer-events: none;
}
.products__shot {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45);
  border: 6px solid var(--charcoal);
  transition: transform 0.6s var(--ease);
}
.products__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.4s var(--ease);
}
.products__shot:hover { transform: translateY(-4px); }
.products__shot:hover img { transform: scale(1.05); }

/* Layered positioning — 3 vertical product shots, offset from each other */
.products__shot--1 {
  top: 0;
  left: 0;
  width: 58%;
  aspect-ratio: 3 / 4;
  z-index: 1;
}
.products__shot--2 {
  top: 22%;
  right: 0;
  width: 50%;
  aspect-ratio: 3 / 4;
  z-index: 3;
}
.products__shot--3 {
  bottom: 0;
  left: 16%;
  width: 44%;
  aspect-ratio: 3 / 4;
  z-index: 2;
}

/* RIGHT — copy column */
.products__copy {
  position: relative;
  z-index: 4;
}
.products__copy h2 {
  color: var(--cream);
  max-width: 480px;
}
.products__copy h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.products__copy .lede {
  color: rgba(246,241,231,0.74);
  max-width: 480px;
  margin-top: var(--s-4);
}

/* Brand list — typographic, no tiles */
.products__brand-list {
  list-style: none;
  margin: var(--s-6) 0 var(--s-5);
  padding: 0;
  border-top: 1px solid var(--line-light);
}
.products__brand-list li {
  display: grid;
  grid-template-columns: minmax(160px, 0.6fr) 1fr;
  gap: var(--s-4);
  align-items: baseline;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line-light);
}
.products__brand-name {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.3rem, 1.6vw, 1.55rem);
  color: var(--gold-light);
  letter-spacing: 0.01em;
}
.products__brand-desc {
  color: rgba(246,241,231,0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA row */
.products__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-4);
  margin-top: var(--s-5);
}
.products__note-inline {
  font-family: var(--accent);
  font-style: italic;
  color: rgba(246,241,231,0.62);
  font-size: 1rem;
}

/* Responsive — stack on tablet & mobile */
@media (max-width: 900px) {
  .products__grid { grid-template-columns: 1fr; gap: var(--s-7); }
  .products__stack {
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 5 / 6;
  }
}
@media (max-width: 560px) {
  .products__brand-list li {
    grid-template-columns: 1fr;
    gap: var(--s-2);
  }
}

/* =============================================
   Reviews
   ============================================= */
.reviews {
  background: var(--cream);
}
.reviews__head {
  text-align: center;
  margin-bottom: var(--s-7);
}
.reviews__head h2 {
  margin-top: var(--s-3);
}
.reviews__head h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}
/* Reviews — editorial rail, no cards, generous air */
.reviews__rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.review {
  display: flex;
  flex-direction: column;
  padding: 0 clamp(0.5rem, 1.5vw, 1.5rem);
  position: relative;
}
/* Hairline gold divider between columns */
.review + .review::before {
  content: '';
  position: absolute;
  left: calc(clamp(2rem, 5vw, 4.5rem) / -2);
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: var(--gold-mid);
  opacity: 0.35;
}
.review__mark {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
  font-size: clamp(3.5rem, 6vw, 5rem);
  line-height: 0.8;
  margin-bottom: var(--s-3);
  display: block;
  user-select: none;
}
.review__body {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.6;
  color: var(--charcoal);
  font-weight: 300;
  margin-bottom: var(--s-5);
}
.review__name {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-dark);
  margin-top: auto;
}
.reviews__cta { text-align: center; margin-top: var(--s-7); }

@media (max-width: 900px) {
  .reviews__rail { grid-template-columns: 1fr; gap: var(--s-6); }
  .review + .review::before {
    left: 8%; right: 8%;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .review + .review { padding-top: var(--s-6); }
}

/* =============================================
   Visit Us
   ============================================= */
.visit {
  background: var(--cream);
  /* vertical padding now provided by .section-l */
}
.visit__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.visit__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}
.visit__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform;
}
.visit__copy h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-dark);
}
.visit__address {
  margin: var(--s-5) 0;
  font-size: 1.1rem;
  line-height: 1.6;
}
.visit__address strong { font-weight: 500; }
.visit__address a { color: var(--gold-dark); border-bottom: 1px solid currentColor; }
.hours {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--s-5) 0;
  margin-bottom: var(--s-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2) var(--s-4);
}
.hours .day { font-weight: 500; font-size: 0.92rem; color: var(--charcoal); }
.hours .time { font-size: 0.92rem; color: rgba(42,38,34,0.7); text-align: right; }
.visit__ctas { display: flex; gap: var(--s-3); flex-wrap: wrap; }

/* =============================================
   Final CTA band
   ============================================= */
.cta-band {
  background: var(--charcoal);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band__watermark {
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(380px, 50vw, 620px);
  height: auto;
  color: var(--gold-mid);
  opacity: 0.06;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
}
.cta-band__eyebrow {
  font-family: var(--accent);
  font-style: italic;
  color: var(--gold-light);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  margin-bottom: var(--s-4);
  display: inline-block;
}
.cta-band h2 {
  color: var(--cream);
  margin-bottom: var(--s-4);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 200;
}
.cta-band h2 em {
  font-family: var(--accent);
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}
.cta-band p {
  margin-bottom: var(--s-6);
  color: rgba(246, 241, 231, 0.7);
  font-size: 1.05rem;
}
.cta-band p a {
  color: var(--gold-light);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.3s var(--ease);
}
.cta-band p a:hover { color: var(--cream); }

/* =============================================
   Footer
   ============================================= */
.site-footer {
  background: var(--black);
  color: rgba(246,241,231,0.7);
  padding: var(--s-8) 0 var(--s-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}
.site-footer .brand { color: var(--gold-rich); margin-bottom: var(--s-3); }
.site-footer .brand .brand__logo { height: 48px; }
.site-footer .footer-blurb {
  font-family: var(--accent);
  font-style: italic;
  color: rgba(246,241,231,0.6);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 380px;
}
.footer-col h5 {
  color: var(--gold-light);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: var(--s-4);
}
.footer-col ul li {
  margin-bottom: var(--s-2);
  font-size: 0.9rem;
}
.footer-col ul li a {
  transition: color 0.3s var(--ease);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: var(--s-5);
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(246,241,231,0.5);
  flex-wrap: wrap;
  gap: var(--s-3);
}
.socials {
  display: flex;
  gap: var(--s-3);
}
.socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.socials a svg { width: 15px; height: 15px; display: block; }
.socials a:hover { border-color: var(--gold-light); color: var(--gold-light); }

/* =============================================
   Reveal animation base classes (GSAP targets)
   Only hidden if .js-anim is set on <html> - meaning GSAP confirmed loaded.
   If JS fails, content remains visible.
   ============================================= */
.reveal { will-change: opacity, transform; }
.js-anim .reveal { opacity: 0; transform: translateY(40px); }
.js-anim .reveal-stagger > * { opacity: 0; transform: translateY(40px); }
/* Products shots — start off-position; GSAP will fly them in */
.js-anim .products__shot--1 { opacity: 0; transform: translateX(-60px) rotate(-3deg); }
.js-anim .products__shot--2 { opacity: 0; transform: translateX(60px) rotate(4deg); }
.js-anim .products__shot--3 { opacity: 0; transform: translateY(60px) rotate(-2deg); }
/* Recognition badge — gentle scale-in */
.js-anim .recognition__badge { opacity: 0; transform: scale(0.85) rotate(-4deg); }

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 900px) {
  .nav-toggle {
    display: block;
    color: inherit;
    font-size: 1.3rem;
    padding: var(--s-2);
  }
  .nav {
    display: none;
  }
  .welcoming__grid,
  .services__head,
  .products__grid,
  .visit__grid {
    grid-template-columns: 1fr;
    gap: var(--s-6);
  }
  .pillars__grid,
  .services__grid,
  .team__grid,
  .reviews__grid {
    grid-template-columns: 1fr 1fr;
  }
  .exp__grid {
    grid-template-columns: 1fr 1fr;
  }
  .exp__step {
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }
  .exp__step:nth-child(2n) { border-right: 0; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .hero { min-height: 600px; padding-bottom: 5rem; }
  .hero__location-tag { display: none; }
  .pillars__grid,
  .services__grid,
  .team__grid,
  .reviews__grid,
  .exp__grid {
    grid-template-columns: 1fr;
  }
  .welcoming__stats { grid-template-columns: 1fr 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
}
