:root {
  --bg: #f7f4ef;
  --surface: #ffffff;
  --surface-soft: #ece7df;
  --ink: #141414;
  --muted: #6f6b65;
  --line: #ded8cf;
  --graphite: #242424;
  --gold: #b69a70;
  --focus: #8a6b3f;
  --shadow: 0 22px 60px rgba(20, 20, 20, .10);
  --shadow-soft: 0 18px 44px rgba(20, 20, 20, .08);
  --header-offset: 104px;
  --radius: 8px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { scroll-padding-top: var(--header-offset); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(138, 107, 63, .45); outline-offset: 4px; }

.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.narrow { max-width: 860px; }
.section {
  padding: 76px 0;
  scroll-margin-top: var(--header-offset);
}
[id] { scroll-margin-top: var(--header-offset); }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-140%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(247, 244, 239, .84);
  border-color: rgba(20, 20, 20, .08);
  box-shadow: 0 10px 34px rgba(20, 20, 20, .07);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-weight: 700;
  letter-spacing: .04em;
}
.brand strong { display: block; font-size: 1.1rem; line-height: 1.1; }
.brand small { display: block; color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }
.brand-invert .brand-mark { border-color: rgba(255,255,255,.5); }
.brand-invert small { color: rgba(255,255,255,.62); }

.main-nav {
  position: fixed;
  inset: 76px 16px auto;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
}
.main-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.main-nav a {
  padding: 12px;
  color: var(--graphite);
  border-radius: 6px;
  font-size: .96rem;
}
.main-nav a:hover { background: rgba(236, 231, 223, .72); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  border-radius: 50%;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 650;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(20,20,20,.12); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-ghost { border-color: rgba(20,20,20,.22); background: rgba(255,255,255,.32); }
.btn-outline-light { color: #fff; border-color: rgba(255,255,255,.35); }
.btn-small { min-height: 42px; padding: 10px 16px; font-size: .9rem; }

.hero {
  padding-top: 40px;
  padding-bottom: 70px;
}
.hero-grid, .split-grid, .reviews-grid, .location-grid, .final-cta-inner {
  display: grid;
  gap: 38px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--focus);
  font-size: .78rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .14em;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 7vw, 5.05rem);
  line-height: 1.01;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 18px;
  font-size: clamp(1.95rem, 4.4vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}
h3 { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.25; }
p { color: var(--muted); }
.hero-copy > p {
  max-width: 610px;
  font-size: clamp(1.05rem, 1.65vw, 1.2rem);
  line-height: 1.68;
}
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-row span {
  padding: 10px 14px;
  background: rgba(255,255,255,.66);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  box-shadow: 0 8px 24px rgba(20,20,20,.04);
}
.trust-row strong { color: var(--ink); }

.visual-frame {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(20,20,20,.10);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(236,231,223,.58)),
    linear-gradient(160deg, rgba(182,154,112,.12), transparent 42%),
    repeating-linear-gradient(90deg, rgba(20,20,20,.035) 0 1px, transparent 1px 72px);
  box-shadow: 0 26px 72px rgba(20, 20, 20, .11);
}
.visual-frame::before, .visual-frame::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(20,20,20,.10);
  pointer-events: none;
}
.visual-salon::before {
  inset: 34px 34px auto;
  height: 52%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.16)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(20,20,20,.045) 34px 35px);
  border-color: rgba(255,255,255,.48);
  backdrop-filter: blur(8px);
}
.visual-salon::after {
  left: 32px;
  right: 32px;
  bottom: 34px;
  height: 86px;
  background:
    linear-gradient(90deg, rgba(31,31,31,.95), rgba(80,72,62,.9)),
    linear-gradient(135deg, transparent, rgba(255,255,255,.08));
  box-shadow: 0 18px 38px rgba(20,20,20,.16);
}
.visual-glasses {
  position: absolute;
  left: 50%;
  top: 47%;
  width: 208px;
  height: 70px;
  transform: translate(-50%, -50%);
  border-top: 3px solid rgba(20,20,20,.82);
  filter: drop-shadow(0 14px 20px rgba(20,20,20,.10));
}
.visual-glasses::before, .visual-glasses::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 56px;
  border: 3px solid rgba(20,20,20,.86);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,255,255,.30), rgba(255,255,255,.05));
}
.visual-glasses::before { left: 0; }
.visual-glasses::after { right: 0; }
.visual-label {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 16px 18px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.52);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}
.visual-label strong, .visual-label span { display: block; }
.visual-label span { color: var(--muted); font-size: .86rem; }
.visual-photo-ready {
  background-size: cover;
  background-position: center;
}
.visual-exam::before {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,.48), rgba(255,255,255,.08));
}
.visual-exam::after {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: rgba(182,154,112,.12);
  box-shadow: 0 0 0 46px rgba(255,255,255,.18), 0 0 0 92px rgba(20,20,20,.035);
}
.visual-frames {
  background:
    linear-gradient(150deg, rgba(255,255,255,.94), rgba(236,231,223,.58)),
    repeating-linear-gradient(0deg, rgba(20,20,20,.035) 0 1px, transparent 1px 64px);
}
.visual-frames::before {
  left: 38px;
  right: 38px;
  top: 44px;
  height: 238px;
  background:
    linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,.50) 18% 82%, transparent 82%),
    linear-gradient(0deg, rgba(20,20,20,.11) 0 1px, transparent 1px 33.33%, rgba(20,20,20,.10) 33.33% calc(33.33% + 1px), transparent calc(33.33% + 1px) 66.66%, rgba(20,20,20,.10) 66.66% calc(66.66% + 1px), transparent calc(66.66% + 1px));
  border-color: rgba(255,255,255,.44);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.22);
}
.visual-frames::after {
  inset: auto 44px 36px;
  height: 48px;
  background: linear-gradient(90deg, rgba(20,20,20,.95), rgba(72,64,55,.95));
  box-shadow: 0 14px 34px rgba(20,20,20,.16);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}
.card-grid, .mini-grid {
  display: grid;
  gap: 18px;
}
.service-card, .mini-card {
  position: relative;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.82), rgba(255,255,255,.54)),
    linear-gradient(180deg, transparent, rgba(182,154,112,.04));
  border: 1px solid rgba(20,20,20,.09);
  border-radius: var(--radius);
  box-shadow: 0 1px 0 rgba(255,255,255,.75) inset;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}
.service-card::before {
  content: counter(service-card, decimal-leading-zero);
  counter-increment: service-card;
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(20,20,20,.22);
  font-size: .78rem;
  font-weight: 750;
  letter-spacing: .12em;
}
.service-card::after, .mini-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(182,154,112,.18);
  border-radius: 50%;
  opacity: .7;
  pointer-events: none;
}
.card-grid { counter-reset: service-card; }
.mini-card::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 34px;
  height: 14px;
  border: 1px solid rgba(20,20,20,.16);
  border-radius: 50%;
}
.service-card:hover, .mini-card:hover {
  transform: translateY(-5px);
  border-color: rgba(138,107,63,.28);
  box-shadow: 0 22px 46px rgba(20,20,20,.09);
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.64)),
    linear-gradient(180deg, transparent, rgba(182,154,112,.07));
}
.card-icon {
  display: block;
  width: 40px;
  height: 20px;
  margin-bottom: 38px;
  border: 2px solid rgba(20,20,20,.78);
  border-radius: 50%;
  opacity: .82;
  box-shadow: 18px 0 0 -13px rgba(20,20,20,.78);
}
.split-section {
  background:
    linear-gradient(180deg, rgba(255,255,255,.50), rgba(255,255,255,.30));
}
.split-reverse { background: transparent; }
.mini-card { min-height: 160px; }
.mini-card h3, .service-card h3 { padding-right: 40px; }

.carousel-shell {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
  padding-top: 4px;
}
.brand-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.brand-track::-webkit-scrollbar { display: none; }
.brand-track span {
  flex: 0 0 auto;
  min-width: 174px;
  min-height: 70px;
  display: grid;
  place-items: center;
  scroll-snap-align: start;
  padding: 20px 22px;
  text-align: center;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(20,20,20,.08);
  border-radius: var(--radius);
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(20,20,20,.05);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.brand-track span:hover {
  transform: translateY(-2px);
  border-color: rgba(138,107,63,.24);
  background: rgba(255,255,255,.92);
}
.carousel-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(138,107,63,.28);
  box-shadow: var(--shadow-soft);
}

.reviews {
  background:
    radial-gradient(circle at 82% 18%, rgba(182,154,112,.16), transparent 28%),
    linear-gradient(135deg, #242424, #171717);
  color: #fff;
}
.reviews p, .reviews .eyebrow { color: rgba(255,255,255,.7); }
.review-cards { display: grid; gap: 14px; }
.review-cards article {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055)),
    linear-gradient(90deg, rgba(182,154,112,.12), transparent);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(0,0,0,.16);
}
.review-cards article::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}
.review-cards strong { display: block; font-size: 2.4rem; line-height: 1; }
.review-cards span { color: rgba(255,255,255,.68); }
.reviews .btn-dark {
  background: #fff;
  color: var(--ink);
}
.reviews .btn-dark:hover {
  box-shadow: 0 14px 32px rgba(0,0,0,.22);
}

.accordion {
  border-top: 1px solid var(--line);
}
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion button {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-weight: 750;
  transition: color .2s ease, padding-left .2s ease;
}
.accordion button:hover {
  color: var(--focus);
  padding-left: 8px;
}
.accordion button span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20,20,20,.14);
  border-radius: 50%;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.accordion button:hover span {
  border-color: rgba(138,107,63,.26);
  background: rgba(255,255,255,.56);
}
.accordion button[aria-expanded="true"] span { transform: rotate(45deg); }
.accordion-item div {
  display: grid;
  grid-template-rows: 0fr;
  opacity: .55;
  transition: grid-template-rows .26s ease, opacity .26s ease, padding-bottom .26s ease;
}
.accordion-item div > p { overflow: hidden; margin-bottom: 0; }
.accordion-item.is-open div {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
  opacity: 1;
}

.map-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, transparent 49%, rgba(20,20,20,.08) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(20,20,20,.08) 50%, transparent 51%),
    #fff;
  background-size: 70px 70px;
  box-shadow: var(--shadow);
}
.map-placeholder span {
  padding: 14px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  font-weight: 750;
}

.final-cta {
  padding: 64px 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(182,154,112,.18), transparent 30%),
    var(--ink);
  color: #fff;
}
.final-cta p, .final-cta .eyebrow { color: rgba(255,255,255,.72); }
.site-footer {
  padding: 52px 0 92px;
  background: #111;
  color: #fff;
}
.footer-grid {
  display: grid;
  gap: 28px;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.68); }
.site-footer a { display: block; margin: 8px 0; }
.site-footer h2 { font-size: 1rem; margin-bottom: 14px; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.52);
  font-size: .9rem;
}
.mobile-sticky-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 45;
  display: grid;
  place-items: center;
  min-height: 50px;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(20,20,20,.2);
  font-weight: 750;
}

.placeholder-main {
  min-height: 58vh;
  display: grid;
  align-items: center;
  padding: 80px 0;
}
.placeholder-main p { max-width: 720px; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .section { padding: 100px 0; }
  .hero-grid, .split-grid, .reviews-grid, .location-grid, .final-cta-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    gap: 46px;
  }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mini-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .review-cards {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 980px) {
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .main-nav a { padding: 10px 9px; font-size: .9rem; }
  .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero {
    min-height: calc(100vh - 76px);
    display: grid;
    align-items: center;
    padding-top: 54px;
    padding-bottom: 92px;
  }
  .hero-copy { align-self: center; }
  .hero-visual { align-self: stretch; display: grid; align-items: center; }
  .hero .visual-frame { min-height: 520px; }
  .split-grid { gap: 58px; }
  .reviews-grid { gap: 60px; }
  .mobile-sticky-cta { display: none; }
  .site-footer { padding-bottom: 52px; }
}

@media (max-width: 979px) {
  body { padding-bottom: 74px; }
  .main-nav {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .header-actions .btn { display: none; }
  .btn { width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .section { padding: 64px 0; }
  .hero {
    padding-top: 30px;
    padding-bottom: 56px;
  }
  h1 { font-size: 2.28rem; line-height: 1.04; }
  h2 { font-size: 1.9rem; }
  .hero-copy > p { font-size: 1.02rem; line-height: 1.62; }
  .visual-frame { min-height: 280px; }
  .visual-glasses {
    width: 164px;
    height: 56px;
  }
  .visual-glasses::before,
  .visual-glasses::after {
    width: 60px;
    height: 44px;
  }
  .visual-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .carousel-shell { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .service-card, .mini-card { min-height: auto; padding: 22px; }
  .mobile-sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
