:root {
  color-scheme: dark;
  --ink: #151210;
  --ink-2: #211c18;
  --panel: #29231f;
  --line: rgba(232, 190, 111, .28);
  --gold: #e8be6f;
  --gold-light: #ffe6a5;
  --copper: #a46c38;
  --ivory: #fff7e5;
  --muted: #c9b99c;
  --mist: #f8f1e4;
  --green: #69715b;
  --shadow: 0 20px 60px rgba(0, 0, 0, .34);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(232, 190, 111, .14), transparent 32rem),
    linear-gradient(135deg, #0c0b0a, #191512 58%, #0c0b0a);
  transition: opacity .55s ease, visibility .55s ease;
}

.loader img {
  width: min(68vw, 430px);
  filter: drop-shadow(0 28px 36px rgba(0, 0, 0, .7));
  animation: logo-rise 1.4s cubic-bezier(.2, .8, .2, 1) both;
}

.loader span {
  position: absolute;
  top: 50%;
  width: min(62vw, 540px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  transform: translateY(112px) scaleX(0);
  transform-origin: center;
  animation: line-draw 1.2s .25s ease both;
}

body:not(.is-loading) .loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes logo-rise {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes line-draw {
  to {
    transform: translateY(112px) scaleX(1);
  }
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 8px 10px 8px 16px;
  background: rgba(17, 14, 12, .72);
  border-bottom: 1px solid rgba(232, 190, 111, .18);
  border: 1px solid rgba(232, 190, 111, .2);
  border-radius: 999px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .26);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(14, 12, 10, .88);
}

.brand {
  width: 138px;
}

.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  justify-self: center;
  padding: 4px;
  border: 1px solid rgba(232, 190, 111, .2);
  border-radius: 999px;
  background: rgba(0, 0, 0, .26);
  color: var(--ivory);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .02em;
}

.main-nav a {
  position: relative;
  padding: 9px 14px;
  border-radius: 999px;
  color: rgba(255, 247, 229, .88);
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-nav a::after {
  display: none;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--gold-light);
  background: rgba(232, 190, 111, .18);
  transform: translateY(-1px);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: .02em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.header-cta {
  padding: 0 18px;
  color: #1a130b;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, #b78542);
}

.button {
  padding: 0 22px;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold-light);
}

.button-primary {
  color: #17100a;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 56%, #b98645);
  box-shadow: 0 16px 32px rgba(232, 190, 111, .18);
}

.button-ghost {
  color: var(--ivory);
  background: rgba(255, 255, 255, .06);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: var(--ivory);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(340px, 520px);
  justify-content: center;
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  overflow: hidden;
  padding: 136px clamp(20px, 6vw, 78px) 96px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 230, 165, .18), transparent 18rem),
    radial-gradient(circle at 16% 70%, rgba(105, 113, 91, .18), transparent 24rem),
    linear-gradient(135deg, #0d0c0b 0%, #211a15 48%, #0f0d0c 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 230, 165, .08) 18% 18.15%, transparent 18.15% 100%),
    linear-gradient(138deg, transparent 0 56%, rgba(255, 255, 255, .055) 56% 56.12%, transparent 56.12% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .026) 0 1px, transparent 1px 88px);
  opacity: .85;
  pointer-events: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 54% 50%, rgba(232, 190, 111, .08), transparent 30rem),
    linear-gradient(0deg, var(--ink), transparent 34%, rgba(12, 10, 9, .32));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.hero-trust {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid rgba(232, 190, 111, .28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 230, 165, .14), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .022)),
    rgba(20, 17, 15, .78);
  box-shadow: var(--shadow);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.hero-trust::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 230, 165, .24);
  border-radius: 6px;
  pointer-events: none;
}

.trust-score span {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  letter-spacing: .12em;
}

.trust-score strong {
  display: block;
  color: var(--ivory);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(76px, 7vw, 112px);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.trust-score p {
  margin: 6px 0 28px;
  color: var(--muted);
  font-weight: 850;
}

.hero-trust blockquote {
  margin: 0;
  padding: 24px 0;
  border-top: 1px solid rgba(232, 190, 111, .18);
  border-bottom: 1px solid rgba(232, 190, 111, .18);
}

.hero-trust blockquote p {
  margin-bottom: 12px;
  color: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 38px);
  line-height: 1.08;
}

.hero-trust cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 850;
}

.trust-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(232, 190, 111, .16);
  border-radius: 8px;
}

.trust-contact div {
  padding: 16px;
  background: rgba(255, 255, 255, .04);
}

.trust-contact span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trust-contact a {
  color: var(--gold-light);
  font-weight: 850;
}

.trust-contact small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.hero-content,
.hero-trust {
  animation: hero-in .75s cubic-bezier(.2, .8, .2, 1) both;
}

.hero-trust {
  animation-delay: .12s;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 9px 13px;
  border: 1px solid rgba(232, 190, 111, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

.rating-badge span,
.rating-panel span {
  color: var(--gold-light);
  letter-spacing: .06em;
}

.rating-badge strong {
  color: var(--ivory);
}

.rating-badge small {
  color: var(--muted);
  font-size: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(62px, 10vw, 128px);
  line-height: .86;
  text-shadow: 0 18px 30px rgba(0, 0, 0, .45);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 19px;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--mist);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-facts {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 6vw, 78px);
  right: auto;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  border: 1px solid rgba(232, 190, 111, .22);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(14, 12, 10, .7);
  backdrop-filter: blur(14px);
}

.hero-facts span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 10px 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.hero-facts span + span {
  border-left: 1px solid rgba(232, 190, 111, .18);
}

.section-pad {
  padding: clamp(74px, 11vw, 132px) clamp(20px, 6vw, 78px);
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 38px;
}

.intro {
  display: none;
}

.brand-ribbon {
  display: flex;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 16px clamp(20px, 6vw, 78px);
  border-top: 1px solid rgba(232, 190, 111, .2);
  border-bottom: 1px solid rgba(232, 190, 111, .2);
  background:
    linear-gradient(90deg, rgba(232, 190, 111, .12), transparent 32%, rgba(105, 113, 91, .16) 74%, rgba(232, 190, 111, .1)),
    #181412;
}

.brand-ribbon span {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid rgba(232, 190, 111, .2);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.price-copy p,
.salon-notes p,
.visit p,
.faq p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.dark-band {
  position: relative;
  background:
    linear-gradient(135deg, rgba(105, 113, 91, .13), transparent 30%),
    linear-gradient(180deg, #0f0d0c, #1b1714 78%, #0f0d0c);
}

.price-section {
  max-width: calc(var(--max) + 40px);
  margin: 0 auto;
  display: block;
  background:
    linear-gradient(180deg, #211a16, #16120f);
}

.price-copy {
  max-width: 980px;
  margin: 0 auto;
  min-width: 0;
}

.price-table {
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .035);
}

.price-table div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  padding: 18px 20px;
  transition: background .2s ease, transform .2s ease;
}

.price-table div + div {
  border-top: 1px solid rgba(232, 190, 111, .14);
}

.price-table div:hover {
  background: rgba(232, 190, 111, .07);
  transform: translateX(4px);
}

.price-table span {
  color: var(--mist);
}

.price-table strong {
  color: var(--gold-light);
  white-space: nowrap;
}

.salon-image img {
  width: 100%;
  border: 1px solid rgba(232, 190, 111, .28);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.salon-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 382px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
}

.salon-image {
  margin: 0;
  width: min(100%, 382px);
  justify-self: start;
}

.salon-image img {
  height: auto;
}

.salon-notes {
  padding: 28px 0;
}

.salon-notes dl {
  margin: 30px 0 0;
}

.salon-notes div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.salon-notes dt {
  margin-bottom: 6px;
  color: var(--gold);
  font-weight: 800;
}

.salon-notes dd {
  margin: 0;
  color: var(--mist);
}

.visit {
  background:
    linear-gradient(90deg, rgba(164, 108, 56, .16), transparent 45%),
    #211a16;
}

.visit-panel {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hours-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
}

.hours-box div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(232, 190, 111, .16);
}

.hours-box span {
  color: var(--muted);
}

.hours-box strong {
  color: var(--gold-light);
  white-space: nowrap;
}

.reviews-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: clamp(24px, 5vw, 60px);
  align-items: center;
}

.reviews-shell p {
  color: var(--muted);
}

.rating-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 12%, rgba(255, 230, 165, .12), transparent 10rem),
    rgba(255, 255, 255, .045);
  box-shadow: var(--shadow);
}

.rating-panel strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--ivory);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(56px, 7vw, 88px);
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.rating-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.review-grid {
  max-width: var(--max);
  margin: clamp(26px, 5vw, 46px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.review-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  transition: transform .24s ease, background .24s ease, border-color .24s ease;
}

.review-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 230, 165, .52);
  background: rgba(255, 255, 255, .065);
}

.review-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-light);
  letter-spacing: .08em;
}

.review-grid p {
  color: var(--mist);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.15;
}

.review-grid strong {
  color: var(--gold);
}

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .8, .2, 1);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-list {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--mist);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 34px clamp(20px, 6vw, 78px);
  border-top: 1px solid var(--line);
  background: #0e0c0b;
}

.site-footer img {
  width: 150px;
  margin-bottom: 10px;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.legal-page {
  min-height: 100vh;
  padding: 120px clamp(20px, 6vw, 78px) 70px;
  background:
    linear-gradient(135deg, rgba(232, 190, 111, .1), transparent 40%),
    var(--ink);
}

.legal-shell {
  max-width: 880px;
  margin: 0 auto;
}

.legal-shell h1 {
  font-size: clamp(44px, 8vw, 82px);
}

.legal-card {
  margin-top: 26px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
}

.legal-card h2 {
  margin-top: 30px;
  font-size: clamp(26px, 4vw, 38px);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.notice {
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  background: rgba(232, 190, 111, .08);
  color: var(--mist);
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 720px);
  }

  .hero-trust {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand {
    width: 146px;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.is-open {
    position: absolute;
    top: 100%;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(17, 14, 12, .96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open a {
    padding: 14px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    overflow: visible;
    padding-top: 118px;
    padding-bottom: 28px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 10, 9, .92), rgba(14, 11, 9, .64)),
      linear-gradient(0deg, var(--ink), transparent 44%);
  }

  .hero-facts {
    position: static;
    width: 100%;
    margin-top: 18px;
    flex-direction: column;
    flex-wrap: nowrap;
    border-radius: 18px;
  }

  .hero-facts span + span {
    border-left: 0;
    border-top: 1px solid rgba(232, 190, 111, .18);
  }

  .price-section,
  .salon-grid,
  .visit-panel,
  .reviews-shell,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .brand-ribbon {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .brand-ribbon::-webkit-scrollbar {
    display: none;
  }

  .price-section {
    padding-left: clamp(20px, 6vw, 78px);
    padding-right: clamp(20px, 6vw, 78px);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 7px 9px 7px 14px;
  }

  .brand {
    width: 112px;
  }

  .brand img {
    height: 52px;
  }

  .hero {
    padding: 104px 22px 26px;
  }

  .hero-content,
  .hero-actions,
  .hero-facts {
    width: 100%;
    max-width: 21rem;
  }

  .hero-copy {
    width: 100%;
    max-width: 20rem;
  }

  .rating-badge {
    max-width: 21rem;
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(50px, 17vw, 72px);
    max-width: 21rem;
  }

  .hero-copy {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1.45;
    overflow-wrap: normal;
  }

  .hero-actions,
  .button,
  .visit-actions {
    width: 100%;
  }

  .hero-actions .button-ghost {
    display: none;
  }

  .price-table div {
    grid-template-columns: 1fr;
  }

  .hours-box div {
    align-items: flex-start;
    flex-direction: column;
  }
}

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