:root {
  --primary: #6a3d8f;
  --bg: #13101a;
  --ink: #f0eaf6;
  --accent: #f5c542;
  --paper: #1e1826;
  --line: #2e2540;
  --mute: #b0a4c4;
  --s: clamp(16px, 2vw, 24px);
  --r: 14px;
  --display: 'Cormorant Garamond', Georgia, serif;
  --body: 'Nunito Sans', system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
.wrap { width: min(1140px, 92vw); margin-inline: auto; }
h1, h2, h3 { font-family: var(--display); line-height: 1.1; }
h1 { font-size: clamp(36px, 5.4vw, 66px); font-weight: 700; color: var(--ink); }
h2 { font-size: clamp(26px, 3.2vw, 42px); font-weight: 700; color: var(--ink); }
h3 { font-size: 19px; font-weight: 600; color: var(--ink); }
p { color: var(--mute); }
.lead { font-size: clamp(15px, 1.4vw, 18px); color: var(--mute); max-width: 52ch; }
.lead--muted { color: var(--mute); }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; }
.eyebrow--accent { color: var(--accent); }
.centered { text-align: center; max-width: 52ch; margin-inline: auto; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(19,16,26,.93); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav__in { display: flex; align-items: center; gap: 20px; height: 64px; }
.brand { font-family: var(--display); font-size: 22px; font-weight: 700; text-decoration: none; color: var(--ink); flex-shrink: 0; }
.nav__links { display: flex; gap: 24px; margin-left: auto; }
.nav__links a { text-decoration: none; color: var(--mute); font-size: 14.5px; transition: color .15s; }
.nav__links a:hover { color: var(--primary); }

/* Buttons */
.btn { display: inline-flex; align-items: center; text-decoration: none; font-weight: 700; border-radius: 999px; transition: transform .15s, background .15s; cursor: pointer; font-family: var(--body); }
.btn--primary { background: var(--primary); color: #fff; padding: 14px 28px; }
.btn--primary:hover { background: #5a2e7e; transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(106,61,143,.6); }
.btn--ghost { background: transparent; color: var(--ink); padding: 14px 28px; box-shadow: inset 0 0 0 2px var(--line); }
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--primary); color: var(--primary); }
.btn--accent { background: var(--accent); color: #13101a; padding: 14px 28px; }
.btn--accent:hover { background: #f0b800; transform: translateY(-2px); }
.btn--nav { background: var(--primary); color: #fff; padding: 10px 18px; font-size: 13.5px; border-radius: 8px; }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* Hero — centered stack */
.hero { padding: clamp(48px, 6vw, 96px) 0 0; text-align: center; }
.hero__stack { display: flex; flex-direction: column; align-items: center; }
.hero .eyebrow { color: var(--primary); }
.hero__stack h1 { max-width: 16ch; }
.hero__stack .lead { margin: 18px auto 0; color: var(--mute); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; justify-content: center; }
.hero__img-block { width: 100%; margin-top: 48px; position: relative; }
.hero__main-img img { width: 100%; height: clamp(300px, 40vw, 560px); object-fit: cover; border-radius: 20px 20px 0 0; display: block; }
.hero__chips { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; background: var(--paper); border: 1px solid var(--line); border-top: none; border-radius: 0 0 20px 20px; padding: 20px; }
.chip { display: flex; flex-direction: column; align-items: center; padding: 0 24px; border-right: 1px solid var(--line); }
.chip:last-child { border-right: none; }
.chip b { font-family: var(--display); font-size: 20px; color: var(--accent); font-weight: 700; }
.chip span { font-size: 12px; color: var(--mute); margin-top: 2px; }

/* Section */
.section { padding: clamp(50px, 6vw, 90px) 0; }
.section__head { margin-bottom: 40px; }
.section__head p { color: var(--mute); margin-top: 10px; }

/* Massage cards */
.massage-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mc { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 26px 22px; display: flex; flex-direction: column; min-height: 260px; position: relative; }
.mc--highlight { border-color: var(--primary); }
.mc__badge { position: absolute; top: 14px; right: 14px; background: var(--primary); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.mc__top { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.mc__icon { font-size: 22px; color: var(--accent); width: 36px; text-align: center; }
.mc__top h3 { font-size: 17px; }
.mc p { font-size: 14px; color: var(--mute); flex: 1; margin-bottom: 16px; }
.mc__formats { display: flex; flex-direction: column; gap: 4px; margin-top: auto; }
.mc__formats span { font-size: 13px; color: var(--accent); font-weight: 600; }

/* Zones */
.zones { background: var(--paper); border-block: 1px solid var(--line); padding: clamp(50px, 6vw, 90px) 0; }
.zones__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.zones__text h2 { margin-bottom: 18px; }
.zones__text .eyebrow--accent { color: var(--accent); }
.zones__desc { color: var(--mute); font-size: 14.5px; margin-top: 14px; margin-bottom: 22px; max-width: 48ch; }
.zones__list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.zones__list li { padding-left: 20px; position: relative; color: var(--mute); font-size: 14.5px; }
.zones__list li::before { content: '›'; position: absolute; left: 0; color: var(--accent); font-size: 18px; line-height: 1.2; }
.body-diagram { display: flex; flex-direction: column; gap: 8px; max-width: 280px; margin: auto; }
.bd-zone { border: 1px solid var(--line); border-radius: 8px; padding: 12px 18px; font-size: 14px; font-weight: 600; color: var(--mute); transition: border-color .2s, color .2s; cursor: default; }
.bd-zone:hover { border-color: var(--primary); color: var(--ink); }
.bd-zone--neck { border-color: rgba(106,61,143,.5); }
.bd-zone--shoulder { border-color: rgba(106,61,143,.35); }
.bd-zone--back { border-color: rgba(106,61,143,.6); background: rgba(106,61,143,.08); color: var(--ink); }
.bd-zone--lower { border-color: rgba(106,61,143,.4); }
.bd-zone--legs { border-color: rgba(106,61,143,.25); }

/* Prices table */
.prices-section { background: var(--bg); }
.prices__title { margin-bottom: 32px; }
.price-table { border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.pt-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 16px; padding: 16px 22px; border-bottom: 1px solid var(--line); }
.pt-row:last-child { border-bottom: none; }
.pt-row--header { background: var(--paper); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--mute); }
.pt-row span:first-child { color: var(--ink); font-weight: 500; }
.pt-row span:not(:first-child) { color: var(--accent); font-weight: 700; font-family: var(--display); font-size: 15px; }
.pt-row--header span { color: var(--mute) !important; font-family: var(--body) !important; font-size: 12px !important; }

/* Contact */
.contact { padding: clamp(50px, 6vw, 90px) 0; }
.contact__in { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: clamp(32px, 4vw, 56px); display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.contact__in h2 { color: var(--ink); }
.contact__in p { color: var(--mute); margin-top: 10px; max-width: 42ch; }
.contact__meta { color: var(--accent) !important; font-weight: 600; font-size: 15px; }

/* Footer */
.foot { background: #0d0b12; padding: 28px 0; border-top: 1px solid var(--line); }
.foot__in { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 14px; }
.foot__in span:first-child { color: rgba(240,234,246,.8); }
.foot__in span:last-child { color: rgba(240,234,246,.3); }

@media (max-width: 900px) {
  .massage-cards { grid-template-columns: repeat(2, 1fr); }
  .zones__grid { grid-template-columns: 1fr; }
  .pt-row { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pt-row--header { display: none; }
  .nav__links { display: none; }
  .contact__in { flex-direction: column; align-items: flex-start; }
  .hero__chips { gap: 0; }
  .chip { padding: 0 16px; }
}
@media (max-width: 520px) {
  .massage-cards { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .pt-row { grid-template-columns: 1fr; }
  .chip { border-right: none; border-bottom: 1px solid var(--line); padding: 12px 0; }
}
