:root {
  --paper: #fbf7f4;
  --paper-warm: #f4ebe8;
  --mauve: #b6729b;
  --mauve-deep: #7d3d67;
  --plum: #3a1f31;
  --plum-soft: #5a304c;
  --rose: #e8c8d9;
  --ink: #321f2b;
  --muted: #765f6c;
  --line: rgba(58, 31, 49, .16);
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
.wrap { width: min(calc(100% - 44px), var(--max)); margin-inline: auto; }

.masthead {
  position: relative;
  z-index: 5;
  background:
    radial-gradient(ellipse at 18% 0%, rgba(125, 61, 103, .06), transparent 42%),
    var(--paper);
}
.masthead::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -13px;
  left: 0;
  height: 26px;
  background: var(--paper);
  clip-path: polygon(0 0, 9% 30%, 19% 12%, 31% 38%, 44% 15%, 57% 35%, 70% 10%, 84% 34%, 100% 6%, 100% 0);
}
.masthead-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  letter-spacing: .025em;
  text-decoration: none;
}
.header-call {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  padding: 74px 0 62px;
  overflow: hidden;
  background-color: var(--mauve);
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.13) 0 1px, transparent 2px),
    radial-gradient(circle at 75% 65%, rgba(58,31,49,.09) 0 1px, transparent 2px),
    linear-gradient(120deg, rgba(255,255,255,.05), transparent 44%);
  background-size: 17px 17px, 23px 23px, auto;
}
.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  bottom: -120px;
  width: 420px;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255,255,255,.035), 0 0 0 68px rgba(58,31,49,.035);
  pointer-events: none;
}
.section-nav {
  width: max-content;
  margin: 0 0 28px;
  padding: 9px 12px;
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(58,31,49,.35);
  border-bottom: 1px solid rgba(58,31,49,.35);
}
.section-nav a {
  padding: 7px 14px;
  color: #fff;
  font-size: .73rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}
.section-nav a:first-child { background: rgba(58,31,49,.42); }
.hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: stretch;
  background: var(--mauve-deep);
  border: 1px solid rgba(58,31,49,.32);
  box-shadow: 0 26px 70px rgba(58,31,49,.24);
}
.salon-photo {
  margin: 0;
  min-height: 360px;
  padding: 18px;
  background: rgba(58,31,49,.46);
}
.salon-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(255,255,255,.18);
}
.hero-copy {
  padding: clamp(42px, 4vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.09), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.035), transparent 55%);
}
.eyebrow {
  margin: 0 0 17px;
  color: var(--mauve-deep);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--rose); }
h1, h2, h3 { margin: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}
h1 { max-width: 16ch; font-size: clamp(2.65rem, 3.8vw, 3.8rem); }
h2 { max-width: 12ch; font-size: clamp(2.55rem, 4.8vw, 4.7rem); }
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
}
.lede {
  max-width: 36ch;
  margin: 25px 0 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
}
.service-summary {
  max-width: 38ch;
  margin: 10px 0 0;
  color: rgba(255,255,255,.72);
  font-size: .94rem;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  border-radius: 4px;
  background: #fff;
  color: var(--plum);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .07em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .16s ease, box-shadow .16s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(58,31,49,.2); }
.secondary-action {
  color: #fff;
  font-size: .9rem;
  font-weight: 700;
  text-underline-offset: 6px;
}
.hero-footnotes {
  position: relative;
  z-index: 1;
  padding: 28px 4px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
}
.hero-footnotes p { margin: 0; font-weight: 700; }

.services {
  padding: 118px 0 126px;
  background:
    linear-gradient(rgba(255,255,255,.65), rgba(255,255,255,.65)),
    radial-gradient(circle at 0 100%, var(--rose), transparent 32%),
    var(--paper);
}
.services-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
  align-items: start;
  gap: clamp(70px, 9vw, 130px);
}
.services-intro { position: sticky; top: 44px; }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  padding: 31px 0;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 22px;
  border-bottom: 1px solid var(--line);
}
.service-number {
  padding-top: 3px;
  color: var(--mauve-deep);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.service-row p {
  max-width: 45ch;
  margin: 9px 0 0;
  color: var(--muted);
}

.visit {
  padding: 108px 0;
  color: #fff;
  background:
    radial-gradient(circle at 78% 20%, rgba(232,200,217,.13), transparent 28%),
    var(--plum);
}
.visit .eyebrow { color: var(--rose); }
.visit-inner {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 70px;
}
.address { margin: 27px 0 0; color: rgba(255,255,255,.75); }
.visit-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.button-light { min-width: 230px; }
.email-link { color: #fff; overflow-wrap: anywhere; text-underline-offset: 6px; }
.location {
  padding: 0 0 108px;
  color: var(--ink);
  background: var(--plum);
}
.location-panel {
  display: grid;
  grid-template-columns: minmax(290px, .7fr) minmax(0, 1.3fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  background: var(--paper);
  box-shadow: 0 30px 70px rgba(24,10,19,.24);
}
.location-copy {
  padding: clamp(42px, 5vw, 66px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 8% 8%, rgba(182,114,155,.16), transparent 34%),
    var(--paper);
}
.location-copy h2 { max-width: 10ch; font-size: clamp(2.5rem, 4.5vw, 4.15rem); }
.location-copy > p:not(.eyebrow) { margin: 24px 0 0; color: var(--muted); }
.map-link {
  width: max-content;
  margin-top: 31px;
  color: var(--mauve-deep);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-underline-offset: 6px;
  text-transform: uppercase;
}
.map-frame { min-height: 410px; background: var(--paper-warm); }
.map-frame iframe { display: block; width: 100%; height: 100%; min-height: 410px; border: 0; }
footer { padding: 30px 0; color: var(--muted); background: var(--paper-warm); font-size: .88rem; }
a:focus-visible { outline: 3px solid #f1c95f; outline-offset: 5px; }

@media (max-width: 900px) {
  .hero-panel { grid-template-columns: 1fr; }
  .salon-photo { min-height: 0; }
  .salon-photo img { aspect-ratio: 543 / 295; height: auto; }
  .services-layout { grid-template-columns: 1fr; gap: 54px; }
  .services-intro { position: static; }
  .visit-inner { grid-template-columns: 1fr; align-items: start; }
  .location-panel { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 360px; }
}

@media (max-width: 620px) {
  .wrap { width: min(calc(100% - 36px), var(--max)); }
  .masthead-inner { min-height: 74px; }
  .header-call { display: none; }
  .brand { margin-inline: auto; }
  .hero { padding: 55px 0 48px; }
  .section-nav { margin-bottom: 20px; }
  .hero-panel { box-shadow: 0 18px 44px rgba(58,31,49,.2); }
  .salon-photo { padding: 10px; }
  .hero-copy { padding: 37px 24px 40px; }
  h1 { max-width: none; font-size: clamp(2.35rem, 12vw, 3.1rem); }
  h2 { font-size: clamp(2.35rem, 12vw, 3.3rem); }
  .lede { margin-top: 20px; }
  .hero-actions {
    margin-top: 30px;
    display: grid;
    align-items: stretch;
    gap: 16px;
  }
  .hero-actions .button { width: 100%; }
  .secondary-action { width: max-content; padding: 2px 0; }
  .hero-footnotes {
    padding-top: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    font-size: .9rem;
  }
  .services { padding: 82px 0 88px; }
  .services-layout { gap: 39px; }
  .service-row {
    padding: 24px 0;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 14px;
  }
  .service-row p { margin-top: 7px; }
  .visit { padding: 82px 0; }
  .visit-inner { gap: 44px; }
  .visit-actions { gap: 18px; width: 100%; }
  .visit-actions .button { width: 100%; min-width: 0; }
  .location { padding-bottom: 82px; }
  .location-copy { padding: 38px 24px 42px; }
  .location-copy h2 { max-width: none; }
  .map-link { margin-top: 26px; }
  .map-frame, .map-frame iframe { min-height: 330px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
