/* ===================================================================
   ARTISTRY AESTHETICS — site stylesheet
   You are the canvas.
   =================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ink: #1a1614;
  --ink-soft: #5b524c;
  --bone: #f6efe7;
  --bone-deep: #ede4d8;
  --bloom: #b85c6e;
  --bloom-deep: #6e2f3d;
  --petal: #f3c9c9;
  --petal-soft: #fce4e0;
  --saffron: #d4a544;
  --olive: #6f7a4a;

  --serif: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1300px;
  --max-text: 760px;
  --pad-x: clamp(24px, 5vw, 80px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  background: var(--bone);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
.serif        { font-family: var(--serif); font-weight: 400; }
.serif-italic { font-family: var(--serif); font-weight: 400; font-style: italic; }
.sans         { font-family: var(--sans); }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--bloom);
}

h1, h2, h3 { margin: 0; font-weight: 400; letter-spacing: -0.025em; }
p { margin: 0 0 1em; }

/* ---------- Layout helpers ---------- */
.wrap        { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.wrap-text   { max-width: var(--max-text); margin: 0 auto; padding: 0 var(--pad-x); }
.section     { padding: clamp(60px, 10vw, 120px) 0; }
.section-tight { padding: clamp(40px, 6vw, 80px) 0; }
.bg-bone-deep { background: var(--bone-deep); }
.bg-petal    { background: var(--petal); }
.bg-petal-soft { background: var(--petal-soft); }
.bg-bloom    { background: var(--bloom); color: var(--bone); }
.bg-bloom-deep { background: var(--bloom-deep); color: var(--bone); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 16px 28px;
  border: none;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.btn:hover { opacity: 0.85; }
.btn-primary { background: var(--ink); color: var(--bone); }
.btn-light   { background: var(--bone); color: var(--ink); }
.btn-ghost   {
  background: transparent;
  color: var(--ink);
  padding: 16px 8px;
  border-bottom: 1px solid var(--ink);
}

/* ---------- Site nav ---------- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px var(--pad-x);
  background: var(--bone);
  border-bottom: 1px solid rgba(26, 22, 20, 0.07);
  position: relative;
  z-index: 10;
}
.nav__wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.18em;
  white-space: nowrap;
}
.nav__wordmark .amp { color: var(--bloom); }
.nav__wordmark .sub {
  font-family: var(--sans);
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-left: 14px;
  align-self: center;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid transparent;
}
.nav__links a:hover { color: var(--bloom); }
.nav__links a.is-active {
  color: var(--bloom);
  border-bottom-color: var(--bloom);
  font-weight: 500;
}
.nav__cta {
  background: var(--ink);
  color: var(--bone);
  padding: 12px 22px;
  border: none;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bloom-deep);
  color: var(--bone);
  padding: 80px var(--pad-x) 50px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(243, 201, 201, 0.2);
}
.footer__col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--petal);
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col li { font-size: 14px; opacity: 0.85; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
}
.footer__copyright {
  font-size: 11px;
  color: var(--petal);
  opacity: 0.7;
}
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
}
.footer__tagline-large {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 60px;
  color: var(--bone);
}
.footer__tagline-large em {
  font-style: italic;
  color: var(--petal);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 720px;
  background: var(--bone);
  overflow: hidden;
  padding: 120px var(--pad-x) 80px;
}
.hero__muse {
  position: absolute;
  right: -120px;
  top: -40px;
  width: 760px;
  height: 760px;
  pointer-events: none;
}
.hero__content { position: relative; max-width: 720px; }
.hero__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(72px, 11vw, 134px);
  line-height: 0.93;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-top: 28px;
}
.hero__sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 36px;
  line-height: 1.6;
  max-width: 480px;
}
.hero__ctas {
  margin-top: 48px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

/* ---------- Page header (sub-pages) ---------- */
.page-header {
  position: relative;
  min-height: 460px;
  background: var(--bone);
  overflow: hidden;
  padding: 100px var(--pad-x) 80px;
  border-bottom: 1px solid rgba(26, 22, 20, 0.07);
}
.page-header__muse {
  position: absolute;
  right: -160px;
  top: -120px;
  width: 620px;
  height: 620px;
  opacity: 0.6;
  filter: saturate(0.45);
  pointer-events: none;
}
.page-header__content { position: relative; max-width: 720px; }
.page-header__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(64px, 9vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-top: 22px;
}
.page-header__sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin-top: 28px;
  line-height: 1.6;
  max-width: 540px;
}

/* ---------- Strip ---------- */
.strip {
  background: var(--bloom);
  color: var(--bone);
  padding: 26px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.strip__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
}
.strip__meta {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--petal);
  font-weight: 500;
}

/* ---------- Menu rows ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.menu-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid rgba(26, 22, 20, 0.13);
  gap: 30px;
}
.menu-row:first-child { border-top: 1px solid rgba(26, 22, 20, 0.13); }
.menu-row__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.015em;
}
.menu-row__note { font-size: 14px; color: var(--ink-soft); }
.menu-row__price {
  font-size: 16px;
  color: var(--bloom);
  text-align: right;
  font-weight: 500;
}

/* ---------- Big serif headline ---------- */
.headline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.headline--big {
  font-size: clamp(64px, 9vw, 100px);
  letter-spacing: -0.035em;
}

/* ---------- Provider block ---------- */
.provider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.provider-portrait {
  width: clamp(360px, 40vw, 480px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--petal-soft);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.provider-portrait__monogram {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 180px;
  color: var(--bloom-deep);
  letter-spacing: -0.02em;
}
.provider-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--bloom);
  margin-top: 32px;
  line-height: 1.4;
  max-width: 460px;
}

/* ---------- Big quote section ---------- */
.quote-section {
  background: var(--bloom);
  color: var(--bone);
  padding: 140px var(--pad-x);
  position: relative;
  overflow: hidden;
}
.quote-section__muse-l, .quote-section__muse-r {
  position: absolute;
  width: 500px;
  height: 500px;
  opacity: 0.18;
  filter: saturate(0.7);
  pointer-events: none;
}
.quote-section__muse-l { left: -100px; top: -100px; }
.quote-section__muse-r { right: -120px; bottom: -160px; }
.quote-section__inner {
  position: relative;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.quote-section__quotemark {
  font-family: var(--serif);
  font-size: 100px;
  color: var(--petal);
  line-height: 0.5;
  letter-spacing: -0.04em;
}
.quote-section__text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 30px;
}
.quote-section__attr {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 40px;
  font-weight: 500;
  color: var(--petal);
}

/* ---------- Three rules ---------- */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.rule {
  border-top: 1px solid rgba(26, 22, 20, 0.2);
  padding-top: 32px;
}
.rule__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--bloom);
}
.rule__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--ink);
  margin-top: 18px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.rule__body {
  font-size: 15px;
  color: var(--ink-soft);
  margin-top: 18px;
  line-height: 1.65;
}

/* ---------- Book CTA ---------- */
.book-cta {
  position: relative;
  background: var(--petal);
  padding: 120px var(--pad-x);
  overflow: hidden;
}
.book-cta__muse {
  position: absolute;
  right: -80px;
  top: -40px;
  width: 540px;
  height: 540px;
  pointer-events: none;
}
.book-cta__bubble {
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--petal-soft);
  opacity: 0.5;
}
.book-cta__inner {
  position: relative;
  max-width: 720px;
}

/* ---------- Treatments page ---------- */
.treatment {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  padding: 0 0 80px;
  border-bottom: 1px solid rgba(26, 22, 20, 0.13);
  margin-bottom: 80px;
  align-items: start;
}
.treatment:last-child { border-bottom: none; margin-bottom: 0; }
.treatment__num {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bloom);
  font-weight: 500;
}
.treatment__name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  margin-top: 16px;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.treatment__price {
  font-size: 16px;
  color: var(--bloom);
  margin-top: 18px;
  font-weight: 500;
}
.treatment__body {
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
}
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag {
  font-size: 12px;
  padding: 8px 14px;
  border: 1px solid rgba(26, 22, 20, 0.2);
  letter-spacing: 0.04em;
}

/* ---------- Pricing table ---------- */
.pricing-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid rgba(26, 22, 20, 0.13);
  gap: 30px;
}
.pricing-row:first-child { border-top: 1px solid rgba(26, 22, 20, 0.2); }
.pricing-row__name { font-family: var(--serif); font-style: italic; font-size: 36px; letter-spacing: -0.015em; }
.pricing-row__note { font-size: 14px; color: var(--ink-soft); }
.pricing-row__price { font-size: 18px; color: var(--bloom); text-align: right; font-weight: 500; }
.pricing-fineprint {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 40px;
  text-align: center;
}

/* ---------- About page ---------- */
.about-hero {
  position: relative;
  padding: 120px var(--pad-x) 80px;
  overflow: hidden;
}
.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.about-credentials {
  background: var(--bone-deep);
  padding: 80px var(--pad-x);
}
.about-credentials__grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.cred-list { list-style: none; padding: 0; margin: 18px 0 0; display: flex; flex-direction: column; gap: 10px; }
.cred-list li { font-size: 14px; line-height: 1.55; }
.about-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  color: var(--bloom);
  margin-top: 50px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  padding-left: 30px;
  border-left: 2px solid var(--bloom);
}

/* ---------- Studio / hours ---------- */
.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid rgba(26, 22, 20, 0.13);
  align-items: baseline;
}
.hours-row__day { font-family: var(--serif); font-style: italic; font-size: 22px; }
.hours-row__hours { font-size: 14px; color: var(--bloom); }

.studio-photos {
  background: var(--bone-deep);
  padding: 100px var(--pad-x);
}
.studio-photos__grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.studio-photo {
  aspect-ratio: 4 / 5;
  background: var(--petal-soft);
  position: relative;
  overflow: hidden;
}
.studio-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.6);
}
.studio-photo__label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  color: var(--bloom-deep);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Booking — two doors ---------- */
.book-hero {
  position: relative;
  background: var(--bone);
  padding: 100px var(--pad-x) 60px;
  overflow: hidden;
  text-align: center;
}
.book-hero__muse-l {
  position: absolute;
  left: -200px;
  top: -120px;
  width: 520px;
  height: 520px;
  opacity: 0.35;
  filter: saturate(0.5);
}
.book-hero__muse-r {
  position: absolute;
  right: -180px;
  bottom: -160px;
  width: 480px;
  height: 480px;
  opacity: 0.3;
  filter: saturate(0.45);
}
.book-hero__inner { position: relative; max-width: 900px; margin: 0 auto; }
.book-hero__sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 30px auto 0;
  line-height: 1.65;
  max-width: 580px;
}

.doors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 1280px;
  margin: 20px auto 0;
  padding: 20px var(--pad-x) 100px;
}
.door {
  position: relative;
  padding: 60px 50px 70px;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.door--consult { background: var(--petal-soft); color: var(--ink); }
.door--treatment { background: var(--bloom); color: var(--bone); }
.door__muse {
  position: absolute;
  right: -140px;
  top: -100px;
  width: 420px;
  height: 420px;
  pointer-events: none;
}
.door--consult .door__muse { opacity: 0.55; filter: saturate(0.6); }
.door--treatment .door__muse { opacity: 0.25; filter: saturate(0.6); }
.door__content { position: relative; }
.door__num {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
}
.door--consult .door__num { color: var(--bloom); }
.door--treatment .door__num { color: var(--petal); }
.door__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 76px;
  margin-top: 24px;
  line-height: 0.96;
  letter-spacing: -0.03em;
}
.door__body {
  font-size: 16px;
  margin-top: 28px;
  line-height: 1.65;
  max-width: 380px;
  opacity: 0.92;
}
.door__list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 10px; }
.door__list li { display: flex; align-items: center; gap: 12px; font-size: 14px; }
.door__list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.door--consult .door__list li { color: var(--bloom-deep); }
.door--consult .door__list li::before { background: var(--bloom); }
.door--treatment .door__list li { color: var(--petal); }
.door--treatment .door__list li::before { background: var(--petal); }
.door__cta { position: relative; align-self: flex-start; margin-top: 36px; }

.book-fallback {
  max-width: 720px;
  margin: 60px auto 0;
  text-align: center;
  border-top: 1px solid rgba(26, 22, 20, 0.13);
  padding: 40px var(--pad-x) 100px;
}
.book-fallback__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.book-fallback__phone {
  font-size: 13px;
  color: var(--bloom);
  margin-top: 22px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid rgba(26, 22, 20, 0.13);
  padding: 32px 0;
}
.faq-item:first-child { border-top: 1px solid rgba(26, 22, 20, 0.2); }
.faq-item__q {
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
}
.faq-item__a { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.faq-item__a p { margin: 0; font-size: 16px; line-height: 1.7; }

/* ---------- Journal ---------- */
.journal-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.post-card { display: block; }
.post-card__cover {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
}
.post-card--photo .post-card__cover { background: var(--bone-deep); }
.post-card--muse-a .post-card__cover { background: var(--bloom); }
.post-card--muse-b .post-card__cover { background: var(--petal-soft); }
.post-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.post-card__cover-muse {
  position: absolute;
  left: -40px;
  top: -30px;
  width: 130%;
  height: 130%;
  filter: saturate(0.6);
  opacity: 0.5;
}
.post-card--muse-a .post-card__cover-muse { opacity: 0.3; }
.post-card__cat-pill {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}
.post-card--photo .post-card__cat-pill {
  background: var(--bone);
  color: var(--bloom);
  padding: 6px 12px;
}
.post-card--muse-a .post-card__cat-pill { color: var(--petal); }
.post-card--muse-b .post-card__cat-pill { color: var(--bloom-deep); }
.post-card__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  margin-top: 24px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.post-card__sub { font-size: 13px; color: var(--bloom); margin-top: 8px; }
.post-card__preview {
  font-size: 14px;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-card__more {
  font-size: 11px;
  color: var(--bloom);
  margin-top: 18px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Journal post layout */
.post-title-block {
  position: relative;
  background: var(--bone);
  padding: 90px var(--pad-x) 50px;
  overflow: hidden;
}
.post-title-block__muse {
  position: absolute;
  right: -120px;
  top: -80px;
  width: 380px;
  height: 380px;
  opacity: 0.32;
  filter: saturate(0.55);
  pointer-events: none;
}
.post-title-block__inner { position: relative; max-width: 900px; margin: 0 auto; }
.post-meta {
  font-size: 11px;
  color: var(--bloom);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
}
.post-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(48px, 7vw, 72px);
  margin-top: 24px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.post-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--bloom);
  margin-top: 18px;
  line-height: 1.3;
}
.post-byline {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 28px;
  font-style: italic;
}

.post-hero-photo {
  background: var(--bone);
  padding: 20px var(--pad-x) 50px;
}
.post-hero-photo__inner { max-width: 760px; margin: 0 auto; }
.post-hero-photo__frame {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--bone-deep);
}
.post-hero-photo__frame img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-photo__caption {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 14px;
  font-style: italic;
}

.post-body {
  background: var(--bone);
  padding: 60px var(--pad-x) 100px;
}
.post-body__inner { max-width: 760px; margin: 0 auto; }
.post-body h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 36px;
  margin-top: 50px;
  margin-bottom: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.post-body p {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.post-body__nav {
  margin-top: 60px;
  padding: 40px 0;
  border-top: 1px solid rgba(26, 22, 20, 0.2);
}
.post-body__nav a {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
}

/* ---------- Booking form (alternate page if needed) ---------- */
.form-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px;
  background: var(--bone-deep);
  border: 1px solid rgba(26, 22, 20, 0.07);
}
.form-field { margin-bottom: 24px; }
.form-field label {
  display: block;
  font-size: 11px;
  color: var(--bloom);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  background: var(--bone);
  border: 1px solid rgba(26, 22, 20, 0.2);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
}
.form-field textarea { height: 120px; resize: vertical; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .menu-grid,
  .provider-grid,
  .about-hero__grid,
  .studio-grid,
  .doors,
  .treatment { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .rules-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-credentials__grid,
  .studio-photos__grid,
  .journal-grid { grid-template-columns: 1fr; gap: 30px; }
  .menu-row,
  .pricing-row { grid-template-columns: 1fr; gap: 8px; }
  .menu-row__price,
  .pricing-row__price { text-align: left; }
  .door__title { font-size: 56px; }
  .footer__bottom { flex-direction: column; gap: 16px; align-items: flex-start; }
}
