:root {
  --black: #070707;
  --ink: #151515;
  --soft-ink: #4f4943;
  --ivory: #f5f0e8;
  --warm: #e8dccd;
  --champagne: #c7aa7a;
  --line: rgba(255,255,255,.42);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-sans);
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 34px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.24);
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.12));
  backdrop-filter: blur(10px);
}
.brand { display: grid; gap: 3px; letter-spacing: .44em; }
.brand-main { font-size: clamp(23px, 2.6vw, 40px); line-height: .8; font-weight: 300; }
.brand-sub { font-size: 9px; letter-spacing: .42em; opacity: .88; }
.nav-links { display: flex; align-items: center; gap: 28px; font-family: var(--font-serif); text-transform: uppercase; font-size: 14px; letter-spacing: .04em; }
.nav-links a { opacity: .92; transition: opacity .2s ease; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.68);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .12em;
}

.hero {
  position: relative;
  min-height: 100vh;
  color: white;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.38) 48%, rgba(0,0,0,.58)),
    linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,.08) 36%, rgba(0,0,0,.46)),
    url('assets/salon-wall.jpg') center/cover no-repeat;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('assets/monaco-girl.jpg') right 12% bottom / auto 82% no-repeat;
  opacity: .22;
  mix-blend-mode: screen;
  filter: grayscale(100%) contrast(108%);
}
.hero-frame {
  position: absolute;
  inset: 104px 24px 28px 24px;
  border: 1px solid var(--line);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, 92vw);
  padding: 0 0 10vh 6vw;
}
.eyebrow {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 600;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  background: currentColor;
  margin-top: 12px;
  opacity: .65;
}
.eyebrow.dark { color: var(--champagne); }
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(68px, 10vw, 148px);
  line-height: .78;
  letter-spacing: -.045em;
  font-weight: 500;
  margin: 0 0 28px;
}
.hero h1 span {
  display: block;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.055em;
  font-size: .78em;
}
.hero-kicker {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.1vw, 50px);
  line-height: 1;
}
.hero-copy {
  width: min(620px, 92vw);
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions, .booking-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid currentColor;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
}
.button.primary { background: white; color: #090909; border-color: white; }
.button.ghost { color: white; background: rgba(255,255,255,.05); }

.page-hero {
  position: relative;
  min-height: 58vh;
  padding: 170px 7vw 92px;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(120deg, rgba(5,5,5,.92), rgba(5,5,5,.56)),
    url('/assets/salon-wall.jpg') center/cover no-repeat;
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 7vw;
  right: 7vw;
  bottom: 54px;
  height: 1px;
  background: linear-gradient(90deg, rgba(199,170,122,.8), transparent);
}
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(58px, 9vw, 128px);
  line-height: .86;
  font-weight: 500;
  letter-spacing: -.045em;
}
.page-hero p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 18px;
  line-height: 1.75;
}
.page-hero .hero-actions { position: relative; z-index: 1; margin-top: 34px; }
.staff-page { padding-top: 95px; }
.button.light.primary { background: var(--ivory); color: var(--black); border-color: var(--ivory); }
.button.light.ghost { color: white; }
.hero-card {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 58px;
  width: 250px;
  padding: 22px;
  background: rgba(0,0,0,.34);
  border: 1px solid rgba(255,255,255,.32);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.hero-card strong { color: white; font-family: var(--font-serif); font-size: 26px; font-weight: 500; }
.scroll-mark {
  position: absolute;
  right: 44px;
  bottom: 34%;
  width: 1px;
  height: 96px;
  background: rgba(255,255,255,.74);
}

.section-pad { padding: clamp(74px, 8vw, 132px) 6vw; }
.section-label {
  color: var(--champagne);
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 12px;
  margin-bottom: 28px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
}
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: .95;
  margin: 0;
  letter-spacing: -.035em;
}
.intro-copy p, .section-heading p, .feature-copy p, .booking-panel p {
  color: var(--soft-ink);
  font-size: 17px;
  line-height: 1.8;
}
.section-heading { max-width: 860px; margin-bottom: 48px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading.center .eyebrow::after { margin-left: auto; margin-right: auto; }

.services { background: #f9f5ee; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.12);
}
.service-grid article {
  background: var(--ivory);
  min-height: 320px;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.service-grid span { color: var(--champagne); font-family: var(--font-serif); font-size: 28px; }
.service-grid h3 {
  font-family: var(--font-serif);
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  margin: 58px 0 12px;
}
.service-grid p { color: var(--soft-ink); line-height: 1.7; }
.service-grid a { margin-top: auto; color: #8b6b3c; text-transform: uppercase; letter-spacing: .12em; font-size: 11px; font-weight: 700; }

.feature-split {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(320px, 1fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  background: var(--black);
  color: white;
}
.feature-image {
  min-height: 620px;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 35px 80px rgba(0,0,0,.35);
}
.feature-image.interior { background: url('assets/salon-wall.jpg') center/cover no-repeat; }
.feature-copy h2 { color: white; }
.feature-copy p { color: rgba(255,255,255,.72); }
.feature-copy ul { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 14px; }
.feature-copy li { border-top: 1px solid rgba(255,255,255,.18); padding-top: 14px; color: rgba(255,255,255,.88); }

.staff {
  background:
    radial-gradient(circle at top left, rgba(199,170,122,.22), transparent 34%),
    linear-gradient(180deg, #f6efe6 0%, #eee4d8 100%);
}
.staff-heading { max-width: 980px; }
.staff-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.staff-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 28px 70px rgba(43,33,24,.08);
  overflow: hidden;
}
.staff-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 18%;
  filter: grayscale(16%) contrast(1.02) saturate(.92);
}
.staff-card img.james-headshot { object-position: 72% 26%; }
.staff-card img.omar-headshot { object-position: center 18%; }
.staff-card.large {
  display: grid;
  grid-template-columns: minmax(230px, .82fr) minmax(0, 1fr);
  background: #fbf7f0;
}
.staff-card.large img { height: 100%; min-height: 430px; aspect-ratio: auto; }
.staff-card.large .staff-copy { justify-content: center; }
.staff-card.dark-card {
  background: #100f0d;
  color: white;
  border-color: rgba(255,255,255,.18);
}
.staff-card.dark-card .staff-copy p { color: rgba(255,255,255,.72); }
.staff-card.dark-card h3 { color: white; }
.staff-copy {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.staff-role {
  margin: 0;
  color: #8b6b3c;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.5;
}
.staff-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3vw, 44px);
  line-height: .95;
  font-weight: 500;
  letter-spacing: -.02em;
}
.staff-grid .staff-card h3 { font-size: 31px; }
.staff-copy p:not(.staff-role) {
  margin: 0;
  color: var(--soft-ink);
  line-height: 1.72;
  font-size: 15px;
}
.staff-copy a {
  margin-top: auto;
  color: #8b6b3c;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 11px;
  font-weight: 700;
}

.testimonials { background: #eee4d8; }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
blockquote {
  margin: 0;
  padding: 40px;
  background: rgba(255,255,255,.48);
  border: 1px solid rgba(0,0,0,.08);
}
blockquote p { font-family: var(--font-serif); font-size: clamp(28px, 3vw, 44px); line-height: 1.08; margin: 0 0 24px; }
blockquote cite { color: #8b6b3c; font-style: normal; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; }

.gallery { background: var(--ivory); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; min-height: 560px; }
.gallery-tile { min-height: 270px; background: #ddd; }
.gallery-tile.tall { grid-row: span 2; }
.gallery-tile.model { background: url('assets/monaco-girl.jpg') center 20%/cover no-repeat; }
.gallery-tile.wall { background: url('assets/salon-wall.jpg') center/cover no-repeat; }
.logo-tile { display: grid; place-content: center; text-align: center; border: 1px solid rgba(0,0,0,.12); background: #fbf8f2; }
.logo-tile span { font-size: clamp(38px, 6vw, 84px); letter-spacing: .38em; font-weight: 300; }
.logo-tile small { margin-top: 18px; letter-spacing: .42em; text-transform: uppercase; color: var(--soft-ink); }

.booking {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  background:
    linear-gradient(90deg, rgba(0,0,0,.84), rgba(0,0,0,.54)),
    url('assets/salon-wall.jpg') center/cover fixed no-repeat;
  color: white;
}
.booking-panel { padding: 42px 0; max-width: 760px; }
.booking-panel p { color: rgba(255,255,255,.76); }
.lead-form {
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: 30px;
  display: grid;
  gap: 16px;
}
.lead-form h3 { margin: 0 0 6px; font-family: var(--font-serif); font-size: 34px; font-weight: 500; }
.lead-form label { display: grid; gap: 8px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: #776d62; }
.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid rgba(0,0,0,.16);
  background: #fff;
  padding: 13px 12px;
  font: inherit;
  text-transform: none;
  letter-spacing: 0;
}
.lead-form textarea { min-height: 92px; resize: vertical; }
.lead-form button {
  height: 50px;
  border: 0;
  background: var(--black);
  color: white;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
}
.visit-card {
  background: rgba(255,255,255,.95);
  color: var(--ink);
  padding: 34px;
  border: 1px solid rgba(255,255,255,.34);
  box-shadow: 0 30px 80px rgba(0,0,0,.24);
}
.visit-card h3 { margin: 0 0 12px; font-family: var(--font-serif); font-size: 38px; font-weight: 500; line-height: 1; }
.visit-card p { margin: 0 0 22px; color: var(--soft-ink); line-height: 1.65; }
.visit-card dl { margin: 0 0 28px; display: grid; gap: 0; }
.visit-card div { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 12px 0; border-top: 1px solid rgba(0,0,0,.1); }
.visit-card dt { color: #8b6b3c; text-transform: uppercase; letter-spacing: .14em; font-size: 11px; font-weight: 700; }
.visit-card dd { margin: 0; color: var(--soft-ink); }
.visit-card a {
  display: grid;
  place-items: center;
  min-height: 50px;
  background: var(--black);
  color: white;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 700;
}

.footer {
  padding: 40px 6vw 92px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--black);
  color: white;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer strong { display: block; font-size: 36px; letter-spacing: .38em; font-weight: 300; }
.footer span { letter-spacing: .32em; font-size: 11px; color: rgba(255,255,255,.65); }
.footer address { color: rgba(255,255,255,.72); line-height: 1.65; font-style: normal; }
.footer-book { color: var(--champagne); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; }
.mobile-sticky { display: none; }

@media (max-width: 980px) {
  .site-header { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hero { min-height: 94vh; }
  .hero::before { opacity: .16; background-position: right -50px bottom; }
  .hero-frame { inset: 84px 14px 18px; }
  .hero-content { padding: 0 22px 116px; }
  .hero-card, .scroll-mark { display: none; }
  .intro-grid, .feature-split, .booking, .quote-grid { grid-template-columns: 1fr; }
  .staff-feature { grid-template-columns: 1fr; }
  .staff-card.large { grid-template-columns: 1fr; }
  .staff-card.large img {
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 16 / 12;
    object-fit: cover;
  }
  .staff-card.large img.james-headshot { object-position: 70% 28%; }
  .staff-card.large img.omar-headshot { object-position: center 16%; }
  .staff-card.large .staff-copy {
    display: block;
    padding: 26px 24px 30px;
  }
  .staff-card.large .staff-copy p:not(.staff-role) { margin-top: 12px; }
  .staff-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .feature-image { min-height: 430px; }
  .footer { display: grid; }
  .mobile-sticky {
    position: fixed;
    z-index: 30;
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 8px;
  }
  .mobile-sticky a {
    display: grid;
    place-items: center;
    min-height: 50px;
    background: #111;
    color: white;
    border: 1px solid rgba(255,255,255,.28);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 12px;
    box-shadow: 0 10px 34px rgba(0,0,0,.32);
  }
  .mobile-sticky a:last-child { background: var(--ivory); color: #111; }
}

@media (max-width: 640px) {
  .brand-main { font-size: 25px; letter-spacing: .34em; }
  .brand-sub { font-size: 8px; letter-spacing: .3em; }
  .hero { min-height: 88vh; }
  .hero h1 { font-size: clamp(58px, 17vw, 86px); }
  .hero-kicker { font-size: 30px; }
  .page-hero {
    min-height: auto;
    padding: 132px 22px 68px;
  }
  .page-hero h1 { font-size: clamp(48px, 14vw, 72px); }
  .page-hero p:not(.eyebrow) { font-size: 16px; line-height: 1.65; }
  .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .staff-heading h2 { font-size: clamp(42px, 12vw, 62px); }
  .staff-heading p { font-size: 16px; }
  .staff-feature { gap: 18px; }
  .staff-card.large img { aspect-ratio: 1 / 1; }
  .staff-card.large .staff-copy { padding: 24px 20px 28px; }
  .staff-card.large h3 { font-size: 40px; }
  .staff-card.large .staff-copy p:not(.staff-role) {
    display: block;
    color: inherit;
    opacity: .92;
    font-size: 15px;
    line-height: 1.68;
  }
  .staff-card.dark-card .staff-copy p:not(.staff-role) { color: rgba(255,255,255,.78); }
  .staff-grid { grid-template-columns: 1fr; }
  .staff-copy { padding: 24px 20px 26px; }
  .section-pad { padding: 70px 22px; }
  .booking-panel, .visit-card { padding: 32px 22px; }
  .footer { padding-bottom: 96px; }
  .logo-tile span { letter-spacing: .22em; }
}
