:root {
  --ink: #211f22;
  --muted: #746c72;
  --paper: #fff9f5;
  --line: rgba(33, 31, 34, 0.12);
  --brand: #a76b7c;
  --brand-dark: #563947;
  --brand-deep: #30232a;
  --cta: #8d6070;
  --cta-dark: #503340;
  --cta-soft: #ead9df;
  --accent: #39776f;
  --accent-soft: #e7f1ee;
  --soft: #f5e9e5;
  --white: #fff;
  --shadow: rgba(63, 37, 44, 0.08);
  --shadow-strong: rgba(63, 37, 44, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fffdfb 0, var(--paper) 34rem, #fff 100%);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  background-image:
    linear-gradient(rgba(86, 57, 71, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(86, 57, 71, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.effects-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms ease, transform 720ms ease, border-color 180ms ease, box-shadow 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.effects-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-progress {
  background: linear-gradient(90deg, var(--cta-soft), var(--cta));
  height: 3px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 30;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-content,
  .hero-card,
  .trust-grid div,
  .booking-panel-inner,
  .action-card,
  .service,
  .price-card,
  .image-feature,
  .gallery-card,
  .quote,
  .faq-layout,
  .map-frame,
  .info-panel,
  .final-cta-inner {
    animation: rise-in 700ms ease both;
  }

  .hero-card {
    animation-delay: 120ms;
  }

  .trust-grid div:nth-child(2),
  .action-card:nth-child(2),
  .service:nth-child(2),
  .gallery-card:nth-child(2) {
    animation-delay: 80ms;
  }

  .trust-grid div:nth-child(3),
  .action-card:nth-child(3),
  .service:nth-child(3),
  .gallery-card:nth-child(3) {
    animation-delay: 150ms;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

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

a {
  color: inherit;
}

.notice {
  background: #1f2024;
  color: #fff;
  font-size: 0.82rem;
  padding: 0.55rem 1rem;
  text-align: center;
}

.site-header {
  align-items: center;
  background: rgba(255, 252, 249, 0.9);
  border-bottom: 1px solid rgba(31, 32, 36, 0.08);
  box-shadow: 0 10px 28px rgba(63, 37, 44, 0.055);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.7rem clamp(1rem, 4vw, 4rem);
  position: sticky;
  top: 0;
  backdrop-filter: blur(18px);
  z-index: 10;
}

.site-header::after {
  background: linear-gradient(90deg, var(--cta), var(--accent), transparent);
  bottom: -1px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: min(34rem, 55vw);
}

.top-actions {
  align-items: center;
  display: flex;
  gap: 0.65rem;
}

.brand {
  display: grid;
  gap: 0.05rem;
  min-width: 12rem;
  text-decoration: none;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.12rem, 1.9vw, 1.36rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.2;
}

.nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 32, 36, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(63, 37, 44, 0.06);
  display: flex;
  gap: 0.05rem;
  padding: 0.26rem;
}

.nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1;
  padding: 0.56rem 0.72rem;
  text-decoration: none;
}

.nav a:hover {
  background: var(--soft);
  color: var(--ink);
}

.nav a.is-active {
  background: var(--soft);
  color: var(--brand-dark);
}

.nav .button {
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  color: #fff;
  min-height: 34px;
  padding: 0.58rem 0.95rem;
}

.nav .button:hover {
  background: linear-gradient(135deg, var(--cta-dark), var(--cta));
  color: #fff;
}

.button,
.button-alt {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.button {
  background: linear-gradient(135deg, var(--cta), var(--cta-dark));
  box-shadow: 0 14px 34px rgba(103, 50, 66, 0.2);
  color: #fff;
}

.button:hover {
  background: linear-gradient(135deg, var(--cta-dark), var(--cta));
  transform: translateY(-1px);
}

.button-alt {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button-alt:hover,
.button-light:hover {
  border-color: color-mix(in srgb, var(--brand) 35%, var(--line));
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.button-light {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: var(--ink);
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 44px;
  padding: 0.75rem 1.05rem;
  text-decoration: none;
  white-space: nowrap;
}

.hero {
  display: grid;
  min-height: calc(92vh - 72px);
  overflow: hidden;
  position: relative;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transform: scale(1.035);
  transition: transform 900ms ease-out;
  width: min(100%, 100vw);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(29, 18, 22, 0.86), rgba(48, 28, 34, 0.56) 45%, rgba(48, 28, 34, 0.12)),
    linear-gradient(0deg, rgba(29, 18, 22, 0.22), transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero::before {
  background: linear-gradient(180deg, rgba(255, 248, 244, 0), rgba(255, 248, 244, 0.72));
  bottom: 0;
  content: "";
  height: 22%;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.hero-shell {
  align-items: center;
  display: grid;
  gap: clamp(1.2rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.52fr);
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.2rem, 7vw, 5rem);
  position: relative;
  width: 100%;
  z-index: 2;
}

.hero-content {
  color: #fff;
  max-width: 760px;
  padding: clamp(1.05rem, 2.4vw, 1.55rem);
  position: relative;
  z-index: 0;
}

.hero-content::before {
  background:
    linear-gradient(135deg, rgba(30, 19, 23, 0.78), rgba(30, 19, 23, 0.34));
  border: 1px solid rgba(255, 248, 244, 0.12);
  border-radius: 8px;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
  backdrop-filter: blur(5px);
}

.eyebrow {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 6.2rem);
  font-weight: 500;
  line-height: 0.92;
  margin-bottom: 1rem;
  max-width: 760px;
}

.hero p {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1rem, 2vw, 1.24rem);
  max-width: 620px;
}

.hero mark {
  background: linear-gradient(180deg, transparent 54%, rgba(167, 107, 124, 0.58) 54%);
  color: #fff;
  padding: 0 0.08em;
}

.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-services span {
  background: rgba(255, 248, 244, 0.18);
  border: 1px solid rgba(255, 248, 244, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  padding: 0.45rem 0.7rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.salon-metrics {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.35rem;
  max-width: 620px;
}

.salon-metrics div {
  background: rgba(255, 248, 244, 0.18);
  border: 1px solid rgba(255, 248, 244, 0.34);
  border-radius: 8px;
  min-width: 0;
  overflow: hidden;
  padding: 0.85rem 0.95rem;
  backdrop-filter: blur(12px);
}

.salon-metrics strong,
.salon-metrics span {
  display: block;
}

.salon-metrics strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 500;
  line-height: 1;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.salon-metrics span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 0.25rem;
}

.hero-card {
  background: rgba(255, 248, 244, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  color: var(--ink);
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  position: relative;
}

.hero-card::before {
  background: linear-gradient(90deg, var(--cta), var(--accent), transparent);
  border-radius: 999px;
  content: "";
  height: 3px;
  left: 1.25rem;
  position: absolute;
  right: 1.25rem;
  top: 0.85rem;
}

.hero-card > span {
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 2.7vw, 2.3rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 0;
}

.treatment-picker {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.treatment-picker a {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 244, 0.72));
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 0.15rem;
  min-height: 58px;
  padding: 0.7rem 0.75rem;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.treatment-picker a:hover {
  background: #fff;
  border-color: color-mix(in srgb, var(--brand) 34%, var(--line));
  box-shadow: 0 10px 24px var(--shadow);
  transform: translateY(-1px);
}

.treatment-picker span {
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.15;
}

.treatment-picker b {
  color: var(--brand-dark);
  font-size: 0.82rem;
}

.treatment-picker a:first-child {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--cta) 18%, #fff), rgba(255, 255, 255, 0.9));
  border-color: color-mix(in srgb, var(--cta) 34%, var(--line));
}

.hero-card-list {
  display: grid;
  gap: 0.7rem;
}

.hero-card-list div {
  border-top: 1px solid var(--line);
  padding-top: 0.7rem;
}

.hero-card-list b {
  display: block;
  margin-bottom: 0.15rem;
}

.hero-card p {
  color: #554b52;
  font-size: 0.94rem;
  margin-bottom: 0;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.quick-book {
  background: var(--brand-dark);
  color: #fff;
  padding: 1rem clamp(1rem, 5vw, 4rem);
}

.trust-band {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  padding: 1.15rem clamp(1rem, 5vw, 4rem);
}

.trust-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid div {
  border-left: 3px solid var(--brand);
  padding: 0.2rem 0 0.2rem 0.85rem;
}

.trust-grid b {
  display: block;
  font-size: 0.92rem;
}

.trust-grid span {
  color: var(--muted);
  display: block;
  font-size: 0.86rem;
}

.booking-panel {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--soft) 72%, #fff), #fff 62%);
  border-bottom: 1px solid var(--line);
  padding: clamp(2rem, 4vw, 3.2rem) clamp(1rem, 5vw, 4rem);
}

.booking-panel-inner {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
}

.booking-panel .eyebrow {
  color: var(--brand-dark);
  margin-bottom: 0.55rem;
}

.booking-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 500;
  line-height: 1.06;
  margin-bottom: 0.65rem;
  max-width: 660px;
}

.booking-panel p {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 680px;
}

.booking-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
  min-width: min(100%, 410px);
}

.quick-book .inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.quick-book strong {
  display: block;
}

.quick-book span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.quick-book-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.action-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.action-card {
  background: linear-gradient(180deg, #fff, color-mix(in srgb, var(--soft) 22%, #fff));
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px var(--shadow);
  display: grid;
  gap: 0.75rem;
  min-height: 190px;
  padding: 1.15rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.action-card::before {
  background: linear-gradient(90deg, var(--cta-soft), transparent);
  border-radius: 999px;
  content: "";
  display: block;
  height: 4px;
  width: 42px;
}

.action-card h3 {
  margin-bottom: 0;
}

.action-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.action-card .button,
.action-card .button-alt {
  align-self: end;
  width: fit-content;
}

.band {
  padding: clamp(2.4rem, 5.5vw, 4.6rem) clamp(1rem, 5vw, 4rem);
}

.band.alt {
  background: rgba(255, 255, 255, 0.72);
}

.inner {
  margin: 0 auto;
  max-width: 1120px;
}

.section-head {
  align-items: end;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.section-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 0;
}

.section-head h2 mark,
.about-salon h2 mark {
  background: linear-gradient(180deg, transparent 58%, var(--cta-soft) 58%);
  color: inherit;
}

.section-head p {
  color: #5f565d;
  margin-bottom: 0;
  max-width: 440px;
}

.services {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service,
.quote,
.info-panel,
.step,
.price-card,
.gallery-card,
.faq-list details {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px var(--shadow);
}

.service {
  display: grid;
  gap: 0.7rem;
  min-height: 150px;
  overflow: hidden;
  padding: 1.25rem;
  position: relative;
}

.service:nth-child(1) {
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--cta-soft) 38%, white), #fff);
}

.service:nth-child(1)::after {
  background: var(--cta);
  border-radius: 999px;
  color: #fff;
  content: "Popular";
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.3rem 0.52rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.service::before {
  background: linear-gradient(135deg, var(--accent-soft), transparent);
  content: "";
  height: 74px;
  position: absolute;
  right: -24px;
  top: -28px;
  transform: rotate(-12deg);
  width: 128px;
}

.service > * {
  position: relative;
  z-index: 1;
}

.service:hover,
.quote:hover,
.info-panel:hover,
.step:hover,
.gallery-card:hover,
.faq-list details:hover {
  border-color: color-mix(in srgb, var(--brand) 26%, var(--line));
}

.action-card:hover,
.service:hover,
.quote:hover,
.info-panel:hover,
.step:hover,
.faq-list details:hover {
  box-shadow: 0 18px 44px rgba(31, 32, 36, 0.12);
  transform: translateY(-2px);
}

.service-top {
  align-items: center;
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
}

.service-top span {
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  padding: 0.32rem 0.55rem;
}

.service b {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.26rem;
  font-weight: 500;
}

.service-price {
  align-self: end;
  color: var(--cta-dark);
  display: block;
  font-size: 1.02rem;
  margin-top: 0.15rem;
}

.service p,
.quote span,
.info-panel span,
.step span {
  color: #5f565d;
  margin-bottom: 0;
}

.service em {
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-salon {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), color-mix(in srgb, var(--soft) 42%, #fff));
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  padding: clamp(2.6rem, 5.5vw, 4.8rem) clamp(1rem, 5vw, 4rem);
}

.about-salon-inner {
  align-items: start;
  display: grid;
  gap: clamp(1.4rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-salon .eyebrow {
  color: var(--brand-dark);
}

.about-salon h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.35rem);
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 0.85rem;
}

.about-salon p {
  color: #5f565d;
  margin-bottom: 0;
  max-width: 620px;
}

.salon-points {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.salon-points div {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px var(--shadow);
  min-height: 140px;
  padding: 1.1rem;
}

.salon-points div::before {
  background: linear-gradient(90deg, var(--cta), var(--accent));
  border-radius: 999px;
  content: "";
  display: block;
  height: 3px;
  margin-bottom: 0.9rem;
  width: 38px;
}

.salon-points b {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.salon-points span {
  color: #5f565d;
  display: block;
  font-size: 0.94rem;
}

.split {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.image-feature {
  position: relative;
}

.image-feature img {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(63, 37, 44, 0.14);
  object-fit: cover;
  width: 100%;
}

.image-feature div {
  background: rgba(255, 250, 247, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 1rem;
  box-shadow: 0 14px 34px var(--shadow-strong);
  display: grid;
  gap: 0.2rem;
  left: 1rem;
  max-width: min(360px, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  position: absolute;
}

.image-feature span {
  color: var(--muted);
  font-size: 0.9rem;
}

.gallery-band {
  background:
    linear-gradient(180deg, #fff, color-mix(in srgb, var(--paper) 64%, #fff));
}

.gallery-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.gallery-card {
  display: grid;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.gallery-card.feature {
  grid-row: span 2;
  min-height: 520px;
}

.gallery-card img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 650ms ease;
  width: 100%;
}

.gallery-card::after {
  background: linear-gradient(180deg, rgba(20, 16, 18, 0.02), rgba(20, 16, 18, 0.76));
  content: "";
  inset: 0;
  position: absolute;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card div {
  align-self: end;
  color: #fff;
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem;
  position: relative;
  z-index: 1;
}

.gallery-card span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.gallery-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 500;
  margin-bottom: 0;
}

.gallery-card p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.social-proof {
  background:
    linear-gradient(135deg, var(--brand-dark), color-mix(in srgb, var(--brand-dark) 82%, #111));
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4.4rem) clamp(1rem, 5vw, 4rem);
}

.social-proof-inner {
  align-items: center;
  display: grid;
  gap: clamp(1.4rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.social-proof .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

.social-proof h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 0.8rem;
}

.social-proof p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
  max-width: 580px;
}

.proof-links {
  display: grid;
  gap: 0.8rem;
}

.proof-links a {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  display: grid;
  gap: 0.25rem;
  padding: 1rem 1.1rem;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.proof-links a:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.36);
  transform: translateY(-2px);
}

.proof-links span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-links b {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.proof-links em {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  overflow-wrap: anywhere;
}

.price-list {
  display: grid;
  gap: 0.65rem;
}

.price-card {
  padding: clamp(1.15rem, 3vw, 1.6rem);
}

.price-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 0.78rem 0;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row span {
  color: #5f565d;
}

.reviews {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote {
  padding: 1.15rem;
}

.quote p {
  font-size: 1.02rem;
  font-weight: 650;
  margin-bottom: 0.8rem;
}

.review-source {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.review-band {
  background:
    linear-gradient(135deg, #fff, color-mix(in srgb, var(--paper) 72%, #fff));
}

.review-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.2rem, 4vw, 2.2rem);
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
}

.review-panel {
  background:
    linear-gradient(135deg, var(--brand-deep), var(--brand-dark));
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(31, 32, 36, 0.16);
  color: #fff;
  padding: clamp(1.2rem, 3vw, 1.7rem);
  position: sticky;
  top: 110px;
}

.review-panel .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.review-panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  font-weight: 500;
  line-height: 1.05;
}

.review-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.rating-summary {
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  display: grid;
  gap: 0.2rem;
  margin-top: 1.1rem;
  padding: 0.95rem 1rem;
}

.rating-summary strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.1rem;
  font-weight: 500;
  line-height: 1;
}

.rating-summary span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.rating-summary em {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-style: normal;
}

.review-panel .button {
  background: #fff;
  color: var(--brand-dark);
}

.review-panel .button-alt {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.34);
  color: #fff;
}

.stars {
  color: var(--accent);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.faq-layout {
  align-items: start;
  display: grid;
  gap: clamp(1.3rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.faq-layout .eyebrow {
  color: var(--brand-dark);
}

.faq-layout h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.05;
}

.faq-layout p {
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  overflow: hidden;
  padding: 0.95rem 1rem;
}

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-weight: 850;
  gap: 1rem;
  justify-content: space-between;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  align-items: center;
  background: var(--soft);
  border-radius: 999px;
  color: var(--brand-dark);
  content: "+";
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 900;
  height: 1.65rem;
  justify-content: center;
  width: 1.65rem;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  color: var(--muted);
  margin: 0.75rem 0 0;
  max-width: 650px;
}

.map-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px var(--shadow);
  overflow: hidden;
}

.map-frame iframe {
  border: 0;
  display: block;
  height: 330px;
  width: 100%;
}

.map-frame-footer {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem;
}

.map-frame-footer span {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr 1fr 1fr;
}

.info-panel {
  padding: 1.15rem;
}

.info-panel a {
  color: var(--cta-dark);
  font-weight: 750;
}

.steps {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step {
  padding: 1.2rem;
}

.step b {
  align-items: center;
  background: var(--soft);
  border-radius: 999px;
  color: var(--brand-dark);
  display: inline-flex;
  height: 2rem;
  justify-content: center;
  margin-bottom: 0.8rem;
  width: 2rem;
}

.sticky-mobile-book {
  display: none;
}

.map-placeholder {
  align-items: center;
  background: linear-gradient(135deg, #e4f0ec, #f8ede8);
  color: var(--muted);
  display: flex;
  min-height: 220px;
}

footer {
  background: var(--brand-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 1.2rem clamp(1rem, 5vw, 4rem);
}

footer .inner {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.legal-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  text-decoration: none;
}

.legal-links a:hover {
  color: #fff;
}

.ptg-credit {
  color: rgba(255, 255, 255, 0.5);
}

.legal-page {
  background: linear-gradient(180deg, #fffdfb 0, #fff6f1 100%);
  min-height: 100vh;
}

.legal-brand {
  color: inherit;
}

.legal-main {
  padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
}

.legal-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 24px 70px var(--shadow);
  margin: 0 auto;
  max-width: 820px;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.legal-card h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0 0 1.5rem;
}

.legal-card h2 {
  font-size: 1.05rem;
  margin: 1.5rem 0 0.45rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a {
  color: var(--brand-dark);
  font-weight: 700;
}

.final-cta {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.14), transparent 28rem),
    linear-gradient(135deg, var(--brand-deep), var(--brand-dark));
  color: #fff;
  padding: clamp(2.3rem, 5vw, 4.2rem) clamp(1rem, 5vw, 4rem);
}

.final-cta-inner {
  align-items: center;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
}

.final-cta span {
  color: rgba(255, 255, 255, 0.78);
  display: block;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.final-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 0.55rem;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 0;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

@media (max-width: 820px) {
  .site-header {
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.6rem 1rem 0.62rem;
  }

  .top-actions {
    justify-content: space-between;
    width: 100%;
  }

  .nav {
    border-radius: 18px;
    justify-content: space-between;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0.22rem;
    width: 100%;
  }

  .nav a {
    flex: 0 0 auto;
    font-size: 0.78rem;
    padding: 0.5rem 0.56rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-shell {
    align-content: end;
    grid-template-columns: 1fr;
    padding-bottom: 2.4rem;
  }

  .hero-card {
    display: none;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(20, 16, 18, 0.72), rgba(20, 16, 18, 0.26));
  }

  .services,
  .reviews,
  .review-layout,
  .contact-grid,
  .split,
  .steps,
  .trust-grid,
  .about-salon-inner,
  .salon-points,
  .social-proof-inner,
  .salon-metrics,
  .gallery-grid,
  .faq-layout,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.feature {
    min-height: 340px;
  }

  .booking-panel-inner {
    grid-template-columns: 1fr;
  }

  .booking-panel-actions {
    justify-content: flex-start;
    min-width: 0;
  }

  .review-panel {
    position: static;
  }

  .quick-book .inner {
    align-items: start;
    flex-direction: column;
  }

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

  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 0.65rem;
  }

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

  .legal-links {
    justify-content: flex-start;
  }

  .final-cta-inner {
    align-items: start;
    flex-direction: column;
  }

  .final-actions {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 520px) {
  body {
    padding-bottom: 74px;
  }

  .hero {
    min-height: 680px;
  }

  .hero img {
    transform: scale(1.02);
  }

  .hero-shell {
    padding: 2.1rem 1rem 4.6rem;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.35rem);
    line-height: 0.96;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero-services span {
    font-size: 0.84rem;
  }

  .salon-metrics {
    gap: 0.5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .salon-metrics div {
    padding: 0.65rem 0.55rem;
  }

  .salon-metrics strong {
    font-size: 1.02rem;
  }

  .salon-metrics span {
    font-size: 0.66rem;
    line-height: 1.15;
  }

  .button,
  .button-alt,
  .button-light {
    width: 100%;
  }

  .hero-actions,
  .section-actions,
  .booking-panel-actions {
    width: 100%;
  }

  .nav .button {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    display: none;
  }

  .nav a[target="_blank"] {
    display: none;
  }

  .nav a[href="#faq"] {
    display: none;
  }

  .sticky-mobile-book {
    align-items: center;
    background: #fff;
    border-top: 1px solid var(--line);
    bottom: 0;
    box-shadow: 0 -10px 30px rgba(31, 32, 36, 0.12);
    display: grid;
    gap: 0.55rem;
    grid-template-columns: 1fr 1fr;
    left: 0;
    padding: 0.7rem;
    position: fixed;
    right: 0;
    z-index: 20;
  }

  .sticky-mobile-book .button,
  .sticky-mobile-book .button-alt {
    min-height: 48px;
    padding-left: 0.6rem;
    padding-right: 0.6rem;
  }

  .image-feature div {
    bottom: 0.75rem;
    left: 0.75rem;
    right: 0.75rem;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
