:root {
  --ink: #171315;
  --ink-soft: #332b30;
  --muted: #716970;
  --paper: #fbfaf8;
  --surface: #ffffff;
  --surface-tint: #f4f0ef;
  --line: #e7e0dc;
  --line-strong: #cfc4bf;
  --plum: #5a2345;
  --fig: #762d48;
  --brass: #a8844f;
  --sage: #b9a79d;
  --mist: #f1ece8;
  --blush: #ead7d8;
  --charcoal: #1d191b;
  --shadow: 0 18px 46px rgba(38, 25, 31, 0.12);
  --shadow-soft: 0 10px 24px rgba(38, 25, 31, 0.07);
  --radius: 8px;
  --container: 1180px;
  --font-display: "Playfair Display", "Bodoni 72", Didot, Georgia, "Times New Roman", serif;
  --font-ui: Lato, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-reading: Merriweather, Georgia, "Times New Roman", serif;
  --type-micro: 0.764rem;
  --type-small: 0.875rem;
  --type-base: 1rem;
  --type-lede: 1.125rem;
  --type-card-title: 1.618rem;
  --type-section-title: 2.618rem;
  --type-hero: 4.236rem;
  --type-hero-max: 6.854rem;
  --space-1: 0.382rem;
  --space-2: 0.618rem;
  --space-3: 1rem;
  --space-4: 1.618rem;
  --space-5: 2.618rem;
  --space-6: 4.236rem;
  font-family: var(--font-ui);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(241, 236, 232, 0.78), transparent 360px),
    var(--paper);
  line-height: 1.618;
}

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

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

button,
input,
select {
  font-family: var(--font-ui);
}

:focus-visible {
  outline: 3px solid rgba(168, 132, 79, 0.35);
  outline-offset: 3px;
}

.skip-link,
.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;
}

.skip-link:focus {
  z-index: 20;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.65rem 0.85rem;
  clip: auto;
  background: var(--ink);
  color: white;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(219, 225, 220, 0.86);
  background: rgba(247, 248, 245, 0.94);
  backdrop-filter: blur(18px);
}

.utility-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-1) clamp(var(--space-3), 3vw, var(--space-5));
  color: white;
  background: var(--ink);
  font-size: var(--type-micro);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.utility-bar span:nth-child(2) {
  color: #eadfcb;
}

.utility-bar span:last-child {
  text-align: right;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) clamp(var(--space-3), 3vw, var(--space-5));
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--brass);
  border-radius: 2px 14px 14px 14px;
  color: white;
  background: var(--plum);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: var(--type-card-title);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 600;
  line-height: 0.92;
}

.brand small {
  color: var(--muted);
  font-size: var(--type-micro);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-1);
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: var(--space-2) var(--space-3);
  color: var(--ink-soft);
  font-size: var(--type-small);
  font-weight: 650;
}

.nav-links a:hover,
.nav-links a.is-active {
  border-color: var(--ink);
  color: white;
  background: var(--plum);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
}

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

.hero {
  position: relative;
  min-height: min(72vh, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background:
    linear-gradient(90deg, rgba(23, 19, 21, 0.88), rgba(23, 19, 21, 0.58) 54%, rgba(23, 19, 21, 0.22)),
    var(--hero-image) center / cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 10rem;
  background: linear-gradient(0deg, rgba(23, 19, 21, 0.66), transparent);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(var(--space-6), 9vw, 6.854rem) 0 clamp(var(--space-5), 5vw, var(--space-6));
}

.hero-layout {
  max-width: 880px;
}

.hero-proof-rail {
  max-width: 820px;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: var(--space-4);
  align-items: center;
  margin-top: var(--space-5);
  border-top: 1px solid rgba(234, 223, 203, 0.34);
  border-bottom: 1px solid rgba(234, 223, 203, 0.22);
  border-radius: var(--radius);
  padding: var(--space-3) 0;
  background: linear-gradient(90deg, rgba(23, 19, 21, 0.32), rgba(23, 19, 21, 0.08));
  backdrop-filter: blur(18px);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-2);
}

.hero-metrics div {
  padding-inline: var(--space-3);
  border-right: 1px solid rgba(234, 223, 203, 0.2);
}

.hero-metrics div:last-child {
  border-right: 0;
}

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

.hero-metrics strong {
  color: #eadfcb;
  font-family: var(--font-display);
  font-size: var(--type-lede);
  line-height: 1;
}

.hero-metrics span {
  margin-top: var(--space-1);
  color: rgba(255, 255, 255, 0.74);
  font-size: var(--type-micro);
  text-transform: uppercase;
}

.hero-service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-1);
  padding-right: var(--space-3);
}

.hero-service-list a {
  border: 1px solid rgba(234, 223, 203, 0.3);
  border-radius: 999px;
  padding: var(--space-1) var(--space-2);
  color: #fff7ea;
  background: rgba(255, 255, 255, 0.08);
  font-size: var(--type-micro);
  font-weight: 700;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--fig);
  font-size: var(--type-micro);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow,
.dark .eyebrow,
.rose .eyebrow {
  color: #eadfcb;
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 3px;
  background: currentColor;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: var(--space-3);
  font-size: var(--type-hero);
  line-height: 0.94;
}

h2 {
  font-size: var(--type-section-title);
  line-height: 1;
}

h3 {
  margin-bottom: var(--space-1);
  font-size: var(--type-lede);
  line-height: 1.236;
}

p {
  margin-bottom: var(--space-3);
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--font-reading);
  font-weight: 400;
  font-size: var(--type-lede);
  line-height: 1.618;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: var(--space-2) var(--space-3);
  cursor: pointer;
  background: var(--ink);
  color: white;
  font-weight: 700;
  box-shadow: none;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.button.light {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.section {
  padding: clamp(var(--space-5), 7vw, var(--space-6)) clamp(var(--space-3), 3vw, var(--space-5));
}

.section.dark {
  color: white;
  background:
    linear-gradient(135deg, rgba(168, 132, 79, 0.16), transparent 42%),
    var(--charcoal);
}

.section.rose {
  color: white;
  background: var(--plum);
}

.section.sage {
  background:
    linear-gradient(135deg, var(--mist), transparent 56%),
    #fbfaf8;
}

.section-inner {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.45fr);
  gap: var(--space-5);
  align-items: end;
  margin-bottom: var(--space-5);
}

.section-header p {
  color: var(--muted);
  font-size: var(--type-base);
}

.dark .section-header p,
.rose .section-header p {
  color: rgba(255, 255, 255, 0.74);
}

.tool-band {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 210px 230px;
  gap: var(--space-2);
  align-items: center;
  margin-bottom: var(--space-4);
  padding: var(--space-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.tool-band input,
.tool-band select {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-2) var(--space-3);
  color: var(--ink);
  background: #ffffff;
}

.tool-band input::placeholder {
  color: #8a9299;
}

.directory-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(140px, 0.65fr));
  gap: var(--space-2);
  margin-bottom: var(--space-3);
  padding: var(--space-3);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.directory-tools label {
  display: grid;
  gap: var(--space-1);
  color: var(--muted);
  font-size: var(--type-micro);
  font-weight: 700;
  text-transform: uppercase;
}

.directory-tools input,
.directory-tools select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-2);
  color: var(--ink);
  background: white;
  font-size: var(--type-small);
  text-transform: none;
}

.directory-summary {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
  color: var(--muted);
  font-size: var(--type-small);
}

.directory-summary strong {
  color: var(--ink);
}

.finder-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin: calc(var(--space-4) * -0.62) 0 var(--space-4);
}

.finder-shortcuts a {
  border: 1px solid rgba(168, 132, 79, 0.28);
  border-radius: 999px;
  padding: var(--space-1) var(--space-2);
  color: var(--fig);
  background: rgba(255, 255, 255, 0.68);
  font-size: var(--type-small);
  font-weight: 700;
}

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

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.dark .card {
  border-color: rgba(255, 255, 255, 0.14);
  background: #fbfcf7;
  color: var(--ink);
}

.card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(234, 215, 216, 0.92), rgba(241, 236, 232, 0.9)),
    #f2efed;
}

.card-media-placeholder {
  display: grid;
  place-items: center;
  border-bottom: 1px solid var(--line);
}

.card-media-placeholder span {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(168, 132, 79, 0.5);
  border-radius: 50%;
  color: var(--plum);
  background: rgba(255, 255, 255, 0.58);
  font-family: var(--font-display);
  font-size: var(--type-section-title);
  font-weight: 600;
  line-height: 1;
}

.card-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.card:hover .card-media img {
  transform: scale(1.035);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: var(--space-3);
}

.card-body p {
  color: var(--muted);
}

.salon-card .card-body {
  gap: var(--space-1);
}

.salon-card h3 {
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 600;
  line-height: 1;
}

.card h2,
.card h3 {
  overflow-wrap: anywhere;
}

.card h2 {
  font-size: var(--type-card-title);
  line-height: 1;
}

.salon-card__details {
  display: grid;
  gap: var(--space-1);
  margin: 0 0 var(--space-2);
  color: var(--ink-soft);
  font-size: var(--type-small);
}

.salon-card__details span:first-child {
  font-weight: 700;
}

.salon-card__services,
.service-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.salon-card__services span,
.service-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(168, 132, 79, 0.28);
  border-radius: 999px;
  padding: var(--space-1) var(--space-2);
  color: var(--fig);
  background: #fbf7f1;
  font-size: var(--type-micro);
  font-weight: 650;
}

.salon-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--type-micro);
}

.meta-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.tag,
.status,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: calc(var(--space-1) * 0.72) var(--space-2);
  background: #f3eeeb;
  color: var(--ink-soft);
  font-size: var(--type-micro);
  font-weight: 700;
}

.status.live {
  border-color: rgba(168, 132, 79, 0.34);
  background: #f8f0e4;
  color: #6f5630;
}

.status.needs-source {
  border-color: #ead990;
  background: #fff6cc;
  color: #6b5400;
}

.status.draft {
  border-color: #c8d1ea;
  background: #eef2ff;
  color: #334377;
}

.card-link {
  margin-top: auto;
  color: var(--fig);
  font-weight: 700;
}

.card-link:hover {
  color: var(--brass);
}

.feature-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.5fr);
  gap: 1.25rem;
  align-items: stretch;
}

.media-feature {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
}

.media-service-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
}

.media-filter {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-bottom: var(--space-4);
}

.media-filter button,
.media-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(168, 132, 79, 0.28);
  border-radius: 999px;
  padding: var(--space-1) var(--space-2);
  color: var(--fig);
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-size: var(--type-small);
  font-weight: 700;
}

.media-filter button:hover,
.media-filter button.is-active,
.media-filter a:hover {
  border-color: var(--fig);
  color: white;
  background: var(--fig);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(234, 215, 216, 0.92), rgba(241, 236, 232, 0.9)),
    #f2efed;
}

.video-thumb img {
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.media-card:hover .video-thumb img {
  transform: scale(1.035);
}

.video-thumb span {
  position: absolute;
  right: var(--space-2);
  bottom: var(--space-2);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: var(--space-1) var(--space-2);
  color: white;
  background: rgba(23, 19, 21, 0.72);
  font-size: var(--type-micro);
  font-weight: 700;
  text-transform: uppercase;
}

.video-embed {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--charcoal);
  box-shadow: var(--shadow);
}

.video-embed iframe,
.video-embed img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-embed img {
  height: auto;
  object-fit: cover;
}

.brief-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.brief-item + .brief-item {
  border-top: 1px solid var(--line);
}

.brief-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  border: 0;
  padding: var(--space-3);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 750;
}

.brief-toggle:hover {
  background: var(--surface-tint);
}

.brief-body {
  padding: 0 var(--space-3) var(--space-3);
  color: var(--muted);
}

.brief-body[hidden] {
  display: none;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
  padding: var(--space-3);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stat strong {
  display: block;
  color: #eadfcb;
  font-size: var(--type-card-title);
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.5fr);
  gap: var(--space-5);
  align-items: end;
}

.profile-intro {
  background:
    linear-gradient(135deg, rgba(234, 215, 216, 0.58), transparent 44%),
    var(--paper);
}

.profile-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.42fr);
  gap: var(--space-4);
  align-items: stretch;
}

.profile-main,
.profile-proof {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.profile-main {
  padding: clamp(var(--space-4), 4vw, var(--space-5));
}

.profile-main p {
  max-width: 760px;
  color: var(--muted);
  font-family: var(--font-reading);
  line-height: 1.618;
}

.profile-proof {
  padding: var(--space-4);
}

.profile-proof h2 {
  font-size: var(--type-card-title);
  line-height: 1;
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(300px, 0.42fr);
  gap: var(--space-4);
  align-items: start;
}

.profile-decision-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-tint);
}

.profile-decision-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.booking-questions {
  border-top: 4px solid var(--brass);
  padding-top: var(--space-3);
}

.booking-questions ol {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
  counter-reset: booking-question;
}

.booking-questions li {
  position: relative;
  min-height: 44px;
  padding: 0 0 var(--space-2) var(--space-5);
  border-bottom: 1px solid var(--line);
  counter-increment: booking-question;
}

.booking-questions li::before {
  content: counter(booking-question, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: var(--fig);
  font-family: var(--font-display);
  font-size: var(--type-lede);
  font-weight: 600;
}

.profile-media-band > .card-link {
  display: inline-block;
  margin-top: var(--space-3);
}

.section-header.compact {
  display: block;
  margin-bottom: var(--space-3);
}

.service-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
}

.service-panel {
  display: block;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-3);
  background: white;
  box-shadow: var(--shadow-soft);
}

.service-panel span {
  display: block;
  margin-bottom: var(--space-1);
  color: var(--fig);
  font-size: var(--type-micro);
  font-weight: 750;
  text-transform: uppercase;
}

.service-panel strong {
  display: block;
  margin-bottom: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 600;
}

.service-panel p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
}

.location-directory {
  display: grid;
  gap: var(--space-3);
}

.location-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(var(--space-3), 2vw, var(--space-4));
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.location-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}

.location-card__header h2 {
  margin-bottom: 0;
}

.location-card__header strong {
  display: grid;
  place-items: center;
  min-width: 54px;
  height: 54px;
  border: 1px solid rgba(168, 132, 79, 0.45);
  border-radius: 50%;
  color: var(--plum);
  background: #fbf7f1;
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 600;
}

.town-list {
  display: grid;
  gap: var(--space-2);
  margin-top: var(--space-3);
}

.town-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  gap: var(--space-3);
  align-items: start;
  border-top: 1px solid var(--line);
  padding-top: var(--space-2);
}

.town-row h3 {
  margin-bottom: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--type-card-title);
  font-weight: 600;
}

.town-row p {
  margin: 0;
  color: var(--muted);
  font-size: var(--type-small);
}

.town-row__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
}

.town-row__links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: var(--space-1) var(--space-2);
  color: var(--fig);
  background: white;
  font-size: var(--type-small);
  font-weight: 650;
}

.profile-hero img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-list {
  display: grid;
  gap: var(--space-2);
  margin: var(--space-4) 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-3);
  border-bottom: 1px solid var(--line);
  padding-bottom: var(--space-2);
}

.detail-list span {
  color: var(--muted);
}

.article-body {
  max-width: 760px;
  font-family: var(--font-reading);
  font-size: var(--type-lede);
  line-height: 1.618;
}

.article-body p {
  color: #343840;
}

.source-box {
  margin-top: var(--space-4);
  padding: var(--space-3);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brass);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.source-box strong {
  display: block;
  margin-bottom: var(--space-1);
}

.editorial-rule {
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--line);
}

.empty-state {
  padding: var(--space-5);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--muted);
}

.style-swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-2);
}

.style-swatch {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: var(--space-2);
  color: white;
  font-weight: 700;
}

.style-swatch small {
  display: block;
  margin-top: var(--space-1);
  color: rgba(255, 255, 255, 0.8);
  font-weight: 650;
}

.style-swatch.light {
  color: var(--ink);
}

.style-swatch.light small {
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-5);
  padding: var(--space-5) clamp(var(--space-3), 3vw, var(--space-5));
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
}

.site-footer strong,
.site-footer a {
  color: white;
}

.site-footer p {
  max-width: 640px;
  margin: var(--space-1) 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: var(--space-2);
}

@media (min-width: 1440px) {
  :root {
    --container: 1280px;
  }

  .hero-layout {
    max-width: 980px;
  }

  .hero h1 {
    font-size: 5.2rem;
  }
}

@media (max-width: 1180px) {
  .nav-toggle {
    display: block;
    flex: 0 0 auto;
  }

  .nav-links {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    padding: var(--space-3);
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow-soft);
  }

  .nav-links.is-open {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .nav-links a {
    min-height: 44px;
    justify-content: center;
  }

  .grid.four {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .directory-tools {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .directory-search {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  .utility-bar {
    grid-template-columns: 1fr auto;
  }

  .utility-bar span:nth-child(2) {
    display: none;
  }

  .utility-bar span:first-child,
  .utility-bar span:last-child {
    text-align: left;
  }

  .utility-bar span:last-child {
    text-align: right;
  }

  h1,
  .hero h1 {
    font-size: var(--type-section-title);
    line-height: 1;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.06;
  }

  .section {
    padding-block: var(--space-5);
  }

  .hero {
    min-height: min(660px, calc(100svh - 92px));
  }

  .hero-inner {
    padding-block: var(--space-5);
  }

  .section-header,
  .feature-layout,
  .media-feature,
  .media-service-band,
  .profile-hero,
  .profile-shell,
  .profile-layout,
  .profile-decision-grid,
  .town-row {
    grid-template-columns: 1fr;
  }

  .grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .style-swatch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-band,
  .directory-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tool-band > input:first-child,
  .directory-search {
    grid-column: 1 / -1;
  }

  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-header {
    gap: var(--space-3);
    margin-bottom: var(--space-4);
  }

  .profile-main {
    padding: var(--space-4);
  }
}

@media (max-width: 700px) {
  .grid,
  .grid.two,
  .grid.three,
  .grid.four,
  .tool-band,
  .directory-tools,
  .style-swatch-grid,
  .service-panel-grid {
    grid-template-columns: 1fr;
  }

  .tool-band > input:first-child,
  .directory-search {
    grid-column: auto;
  }

  .salon-card .card-media {
    aspect-ratio: 16 / 8;
  }

  .card-media-placeholder span {
    width: 72px;
    height: 72px;
    font-size: var(--type-card-title);
  }

  .directory-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-1);
  }

  .town-row {
    gap: var(--space-2);
  }

  .article-body {
    font-size: var(--type-base);
  }
}

@media (max-width: 560px) {
  .utility-bar {
    display: block;
    padding-block: var(--space-1);
    text-align: center;
  }

  .utility-bar span:first-child,
  .utility-bar span:last-child {
    display: none;
  }

  .utility-bar span:nth-child(2) {
    display: block;
    text-align: center;
  }

  .masthead {
    min-height: 60px;
    padding-block: var(--space-2);
  }

  .brand strong {
    font-size: var(--type-lede);
    line-height: 1;
  }

  .brand small {
    display: none;
  }

  .brand-mark,
  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .nav-links.is-open {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: min(620px, calc(100svh - 82px));
    background-position: 58% center;
  }

  .hero-inner {
    width: min(var(--container), calc(100% - 1.25rem));
    padding-block: var(--space-4);
  }

  .hero-copy {
    font-size: var(--type-base);
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: var(--space-3);
  }

  .hero-proof-rail {
    grid-template-columns: 1fr;
    gap: var(--space-2);
    margin-top: var(--space-3);
    padding: var(--space-2) 0;
  }

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

  .hero-metrics div {
    border-right: 1px solid rgba(234, 223, 203, 0.18);
    border-bottom: 0;
    padding: var(--space-1) var(--space-2);
  }

  .hero-metrics div:last-child {
    border-right: 0;
  }

  .hero-metrics span {
    line-height: 1.2;
  }

  .hero-service-list {
    justify-content: flex-start;
    padding: 0 var(--space-2);
  }

  .hero-service-list a:nth-child(n + 4) {
    display: none;
  }

  .hero-actions,
  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: var(--space-5) var(--space-3);
  }

  .section-header p {
    font-size: var(--type-small);
  }

  .card-body,
  .profile-proof,
  .profile-main,
  .directory-tools,
  .location-card {
    padding: var(--space-3);
  }

  .salon-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: var(--space-2);
  }

  .detail-list li {
    display: grid;
  }

  .stat-strip {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
    padding: var(--space-5) var(--space-3);
  }
}

@media (max-width: 380px) {
  .brand strong {
    font-size: var(--type-base);
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero-service-list {
    display: none;
  }

  .hero-metrics span {
    font-size: 0.68rem;
  }
}
