:root {
  --serif: "Cormorant Garamond", Georgia, serif;
  --body: "Hanken Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f6f1e8;
  --bg-2: #eee5d7;
  --surface: #fffaf2;
  --surface-2: #ffffff;
  --ink: #1f261f;
  --muted: #62675c;
  --faint: #898d82;
  --line: #ded3c1;
  --line-strong: #cbbda7;
  --sage: #435741;
  --sage-2: #26362e;
  --brick: #a54532;
  --gold: #a8793e;
  --aqua: #3e716d;
  --radius: 8px;
  --shadow: 0 24px 55px -38px rgba(31, 38, 31, .55);
  --maxw: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 780px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px) saturate(150%);
}
.bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 218px; }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--sage);
  color: var(--surface);
  font-weight: 800;
  font-size: 13px;
}
.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 2px;
  color: var(--faint);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.nav a:hover, .nav a.active { color: var(--ink); background: var(--bg-2); }
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: var(--surface); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); margin: 4px auto; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.03;
}
h1 { font-size: clamp(42px, 6.2vw, 82px); }
h2 { font-size: clamp(31px, 4vw, 52px); }
h3 { font-size: 24px; }
p { margin: 0; }
.lead { color: var(--muted); font-size: 19px; line-height: 1.68; }
.muted { color: var(--muted); }
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 24px; height: 2px; background: currentColor; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid var(--sage);
  border-radius: 999px;
  background: var(--sage);
  color: var(--surface);
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn.small { min-height: 38px; padding: 9px 16px; font-size: 14px; }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn.light { background: var(--surface); color: var(--sage); border-color: var(--surface); margin-top: 22px; }
.btn.block { width: 100%; }
.link {
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid var(--gold);
  color: var(--ink);
  font-weight: 800;
}
.link:hover { color: var(--gold); }

.hero { padding: 72px 0 46px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
  gap: 58px;
  align-items: center;
}
.hero-copy h1 { max-width: 700px; margin-top: 16px; }
.hero-copy .lead { max-width: 600px; margin-top: 24px; }
.hero-media { position: relative; min-height: 520px; }
.hero-media img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.floating-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 260px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.floating-note strong { display: block; font-family: var(--serif); font-size: 24px; line-height: 1; }
.floating-note span { color: var(--muted); font-size: 13px; }
.searchbar {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
  align-items: stretch;
  margin-top: 34px;
  max-width: 720px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.searchbar label, .field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.searchbar label { padding: 8px 12px; }
.searchbar span, .field span {
  color: var(--faint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--ink);
  padding: 12px 13px;
}
.searchbar select { border: 0; padding: 0; background: transparent; }
textarea { min-height: 140px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--sage);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--sage) 18%, transparent);
}
.quick-links, .stats, .hero-meta, .badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.quick-links { margin-top: 16px; color: var(--muted); font-size: 14px; }
.quick-links a, .badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--sage-2);
  font-size: 12px;
  font-weight: 800;
}
.stats { margin-top: 34px; gap: 28px; }
.stats strong { display: block; font-family: var(--serif); font-size: 38px; line-height: 1; }
.stats span { display: block; color: var(--muted); font-size: 13px; }

.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
.section { padding: 82px 0; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}
.section-head p { max-width: 720px; margin-top: 12px; color: var(--muted); }
.section-head.center { justify-content: center; text-align: center; }
.banded { background: var(--bg-2); }
.grid { display: grid; gap: 22px; }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.thumb { display: block; position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-2); }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.card:hover .thumb img { transform: scale(1.04); }
.area-pill, .rank-bubble {
  position: absolute;
  z-index: 2;
  border-radius: 999px;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 24px -18px rgba(0,0,0,.7);
}
.area-pill { left: 12px; bottom: 12px; padding: 6px 10px; }
.rank-bubble { top: 12px; left: 12px; min-width: 40px; height: 40px; display: grid; place-items: center; font-family: var(--serif); font-size: 18px; }
.card-body { display: flex; flex: 1; flex-direction: column; gap: 10px; padding: 18px; }
.card-kicker {
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.card-body h3 a:hover { color: var(--brick); }
.card-body p { font-size: 15px; }
.card-foot {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}
.card-foot strong { color: var(--ink); }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card {
  min-height: 160px;
  padding: 20px;
  border-radius: var(--radius);
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--sage) 88%, black), color-mix(in srgb, var(--aqua) 80%, white));
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform .18s ease;
}
.category-card:nth-child(2n) { background: linear-gradient(140deg, var(--brick), var(--gold)); }
.category-card:hover { transform: translateY(-3px); }
.category-card span { opacity: .82; font-size: 13px; font-weight: 700; }
.category-card strong { font-family: var(--serif); font-size: 28px; line-height: 1; }
.area-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.area-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 13px 15px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  font-weight: 800;
}
.area-grid a:hover { border-color: var(--sage); color: var(--sage); }
.area-grid span { color: var(--faint); font-size: 13px; }
.editorial-band { padding-top: 36px; padding-bottom: 36px; }
.editorial-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 36px;
  align-items: center;
  padding-top: 38px;
  padding-bottom: 38px;
  border-radius: var(--radius);
  background: var(--sage-2);
  color: var(--surface);
}
.editorial-inner h2 { color: white; margin-top: 14px; max-width: 720px; }
.editorial-inner p { color: color-mix(in srgb, white 78%, transparent); margin-top: 16px; max-width: 660px; }
.editorial-inner img { height: 320px; width: 100%; object-fit: cover; border-radius: var(--radius); }

.page-hero { padding: 56px 0 34px; border-bottom: 1px solid var(--line); }
.page-hero.compact { padding-top: 42px; }
.page-hero h1 { margin-top: 14px; max-width: 1000px; }
.page-hero p { max-width: 760px; color: var(--muted); margin-top: 14px; font-size: 19px; }
.directory-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding-top: 34px;
  padding-bottom: 84px;
}
.filters {
  position: sticky;
  top: 92px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.filters form { display: flex; flex-direction: column; gap: 16px; }
.check-row { display: flex; align-items: center; gap: 9px; color: var(--muted); font-weight: 700; font-size: 14px; }
.check-row input { width: 18px; height: 18px; padding: 0; }
.results-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
  flex-wrap: wrap;
}
.results-head strong { color: var(--ink); }
.empty-state {
  padding: 70px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  text-align: center;
}

.crumb {
  display: flex;
  gap: 8px;
  padding-top: 22px;
  color: var(--faint);
  font-size: 14px;
}
.crumb a:hover { color: var(--ink); }
.salon-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
  gap: 42px;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 46px;
}
.salon-hero h1 { margin-top: 12px; }
.salon-hero .lead { margin-top: 16px; }
.salon-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-meta { margin: 22px 0 16px; }
.hero-meta span, .hero-meta strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: start;
  padding-bottom: 70px;
}
.prose { max-width: 780px; }
.prose h2 { font-size: 34px; margin: 34px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--muted); margin-bottom: 16px; }
.treatment-list { display: grid; gap: 10px; }
.treatment-list div {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.treatment-list span { color: var(--muted); }
.booking-card {
  position: sticky;
  top: 94px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.price-big { font-family: var(--serif); font-size: 48px; font-weight: 700; line-height: 1; }
.booking-card p { color: var(--muted); margin: 8px 0 18px; font-size: 14px; }
.booking-card dl { margin: 0 0 18px; display: grid; gap: 12px; }
.booking-card dl div { border-top: 1px solid var(--line); padding-top: 12px; }
.booking-card dt { color: var(--faint); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.booking-card dd { margin: 4px 0 0; color: var(--ink); font-size: 14px; }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 28px;
  border-bottom: 1px solid var(--line);
}
.tabs a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
.tabs a.active, .tabs a:hover { background: var(--sage); color: var(--surface); border-color: var(--sage); }
.feature-row { padding: 34px 0; }
.feature-card { display: grid; grid-template-columns: 1.1fr .9fr; }
.feature-card .thumb { aspect-ratio: auto; min-height: 430px; }
.journal-grid { padding-bottom: 84px; }
.article-hero {
  max-width: 860px;
  margin: 0 auto;
  padding: 54px 28px 30px;
  text-align: center;
}
.article-hero .kicker { justify-content: center; }
.article-hero h1 { margin-top: 16px; font-size: clamp(38px, 5.4vw, 70px); }
.article-hero p { margin: 18px auto 0; max-width: 720px; color: var(--muted); font-size: 20px; }
.article-meta { margin-top: 22px; color: var(--faint); font-size: 14px; font-weight: 700; }
.article-cover { max-width: 1110px; margin: 0 auto; padding: 0 28px; }
.article-cover img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--radius); }
.article-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 50px 28px 10px;
  font-size: 19px;
  line-height: 1.74;
}
.article-body p { margin-bottom: 24px; }
.article-body h2 { font-size: 36px; margin: 48px 0 16px; }
.article-body h3 {
  font-family: var(--body);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 34px 0 10px;
}
.article-body ul { margin: 0 0 28px; padding-left: 22px; }
.article-body li { margin: 8px 0; }
.article-body blockquote {
  margin: 42px 0;
  padding: 18px 0 18px 28px;
  border-left: 4px solid var(--gold);
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.25;
}
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.stat-band div { text-align: center; }
.stat-band strong { display: block; font-family: var(--serif); font-size: 50px; color: var(--gold); line-height: 1; }
.stat-band span { color: var(--muted); font-weight: 700; font-size: 14px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 50px; align-items: start; }
.submit-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: grid;
  gap: 15px;
}
.submit-card h2 { font-size: 34px; }
.form-note { color: var(--muted); font-size: 13px; text-align: center; }
.success { text-align: center; padding: 28px 12px; }

.site-footer {
  margin-top: 30px;
  padding: 58px 0 24px;
  background: var(--sage-2);
  color: color-mix(in srgb, white 82%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 34px;
}
.footer-brand { color: white; font-family: var(--serif); font-size: 30px; font-weight: 700; line-height: 1; margin-bottom: 12px; }
.site-footer h4 {
  color: white;
  margin: 0 0 14px;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-footer a { display: block; margin: 8px 0; color: color-mix(in srgb, white 78%, transparent); }
.site-footer a:hover { color: white; }
.site-footer p { color: color-mix(in srgb, white 72%, transparent); font-size: 14px; }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, white 18%, transparent);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: color-mix(in srgb, white 62%, transparent);
  font-size: 13px;
}

@media (max-width: 1050px) {
  .hero-grid, .salon-hero, .detail-layout, .directory-layout, .two-col, .editorial-inner { grid-template-columns: 1fr; }
  .hero-media, .hero-media img { min-height: 0; height: auto; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3, .grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .category-grid, .area-grid, .trust-grid, .stat-band { grid-template-columns: repeat(2, 1fr); }
  .filters, .booking-card { position: static; }
  .feature-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  .desktop-only { display: none; }
  .bar { padding: 12px 20px; }
  .brand { min-width: 0; }
  .brand small { display: none; }
  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 68px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
  }
  .nav.open { display: grid; }
  .nav a { border-radius: var(--radius); }
  .hero { padding-top: 46px; }
  .searchbar { grid-template-columns: 1fr; }
  .grid.cols-4, .grid.cols-3, .grid.cols-2, .category-grid, .area-grid, .trust-grid, .stat-band, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .section-head { align-items: flex-start; }
  .salon-hero img { height: 280px; }
  .treatment-list div { display: block; }
  .article-cover img { aspect-ratio: 4 / 3; }
  .article-body { font-size: 17px; }
  .article-body blockquote { font-size: 25px; }
  .footer-bottom { display: grid; }
}
