:root {
  --ivory: #f2eee8;
  --ivory-soft: #f8f5f1;
  --paper: #fffdf9;
  --taupe: #8b7d70;
  --taupe-dark: #66594f;
  --blush: #d9c8bc;
  --sand: #e5dbd1;
  --ink: #2b2825;
  --muted: #756f69;
  --line: rgba(43,40,37,.14);
  --max: 1320px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 36px;
  background: rgba(242,238,232,.95);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.desktop-nav {
  display: flex;
  gap: 26px;
  font-size: 12px;
}

.header-cta {
  justify-self: end;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--taupe-dark);
}

.eyebrow-light { color: rgba(255,255,255,.72); }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 760px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.hero-image {
  padding: 22px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 716px;
  object-fit: cover;
}

.hero-copy {
  padding: 100px 68px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1,
.section h2,
.treatment-section h2,
.page-hero h1,
.treatment-detail-hero h1,
.booking-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .98;
  margin: 0;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(64px, 7vw, 108px);
  max-width: 760px;
}

.hero-copy > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--ink);
  color: white;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.button-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 11px;
  font-weight: 700;
}

.hero-details {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 56px;
}

.intro {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 10vw;
}

.intro h2 {
  margin-top: 16px;
  font-size: clamp(48px, 5.5vw, 80px);
}

.intro > div:last-child {
  align-self: end;
}

.intro p {
  color: var(--muted);
  font-size: 17px;
}

.treatment-section {
  background: var(--paper);
  padding: 110px 6vw;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 46px;
}

.section-heading h2 {
  margin-top: 14px;
  font-size: clamp(48px, 5.5vw, 78px);
  max-width: 820px;
}

.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.treatment-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.treatment-card {
  background: var(--ivory-soft);
  border: 1px solid var(--line);
  padding: 20px;
}

.treatment-index {
  color: var(--taupe);
  font-size: 10px;
  margin-bottom: 16px;
}

.treatment-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  margin-bottom: 22px;
}

.treatment-card h3 {
  font-family: Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  margin: 8px 0 12px;
}

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

.treatment-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.treatment-meta strong { font-weight: 600; }

.philosophy-section {
  background: var(--taupe-dark);
  color: white;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
}

.philosophy-section img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.philosophy-section > div {
  padding: 90px 7vw;
  align-self: center;
}

.philosophy-section h2 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 5vw, 74px);
  line-height: 1;
  font-weight: 400;
  margin: 18px 0 24px;
}

.philosophy-section p {
  color: rgba(255,255,255,.72);
  max-width: 580px;
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ritual-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px;
  min-height: 280px;
}

.ritual-grid article > span {
  color: var(--taupe);
  font-size: 10px;
}

.ritual-grid h3 {
  font-family: Georgia, serif;
  font-size: 29px;
  font-weight: 400;
  margin: 52px 0 12px;
}

.ritual-grid p {
  color: var(--muted);
  font-size: 14px;
}

.studio-section {
  background: var(--sand);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
}

.studio-section > div {
  padding: 90px 7vw;
  align-self: center;
}

.studio-section h2 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 5vw, 74px);
  font-weight: 400;
  line-height: 1;
  margin: 16px 0 24px;
}

.studio-section p { color: var(--muted); }

.studio-section > img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
}

.studio-stats {
  border-top: 1px solid var(--line);
  margin-top: 34px;
}

.studio-stats > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.studio-stats strong {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
}

.studio-stats span {
  color: var(--muted);
  font-size: 11px;
}

.testimonial-section {
  background: #cbbbad;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

blockquote {
  margin: 0;
  padding: 80px 7vw;
  border-right: 1px solid rgba(0,0,0,.12);
}

blockquote:last-child { border-right: 0; }

blockquote p {
  font-family: Georgia, serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.15;
}

blockquote footer {
  margin-top: 22px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.journal-grid,
.journal-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journal-grid article,
.journal-page-grid article {
  border-top: 1px solid var(--ink);
  padding-top: 20px;
}

.journal-index {
  display: block;
  font-family: Georgia, serif;
  font-size: 36px;
  color: #aa9e93;
  margin-bottom: 34px;
}

.journal-grid h3,
.journal-page-grid h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
}

.journal-grid h3 { font-size: 29px; }
.journal-page-grid h2 { font-size: 36px; }

.journal-grid p,
.journal-page-grid p {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: Georgia, serif;
  font-size: 24px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list p {
  max-width: 760px;
  color: var(--muted);
}

.booking-cta {
  background: var(--taupe-dark);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}

.booking-cta > div {
  padding: 90px 7vw;
  align-self: center;
}

.booking-cta h2 {
  margin-top: 18px;
  font-size: clamp(54px, 6vw, 88px);
}

.booking-cta p {
  color: rgba(255,255,255,.72);
  margin: 24px 0 30px;
}

.booking-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 110px 56px 86px;
}

.page-hero h1 {
  margin-top: 16px;
  max-width: 1000px;
  font-size: clamp(60px, 7vw, 104px);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  margin-top: 26px;
}

.treatment-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.treatment-page-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
}

.treatment-page-card img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  margin: 18px 0 22px;
}

.treatment-page-card h2 {
  margin: 10px 0 14px;
  font-size: 44px;
}

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

.treatment-page-card > div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 18px;
  font-size: 11px;
}

.treatment-detail-hero {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  min-height: 680px;
}

.treatment-detail-hero > div {
  padding: 90px 60px;
  align-self: center;
}

.treatment-detail-hero h1 {
  margin-top: 16px;
  font-size: clamp(58px, 7vw, 98px);
}

.treatment-detail-hero p {
  color: var(--muted);
  font-size: 18px;
  margin: 26px 0;
}

.detail-meta {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-bottom: 28px;
}

.detail-meta span,
.detail-meta strong {
  font-size: 12px;
}

.treatment-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.treatment-benefits h2 {
  margin-top: 14px;
  font-size: 52px;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-list > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--taupe);
  font-size: 11px;
}

.benefit-list span {
  color: var(--ink);
  font-size: 16px;
}

.article-detail {
  max-width: 960px;
  margin: 0 auto;
  padding: 110px 40px 120px;
}

.article-detail h1 {
  font-family: Georgia, serif;
  font-size: clamp(58px, 7vw, 94px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
  margin: 20px 0 28px;
}

.article-detail .lead {
  color: var(--muted);
  font-size: 21px;
}

.article-body {
  max-width: 740px;
  margin-top: 68px;
}

.article-body p {
  font-size: 18px;
  margin-bottom: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-grid h2 {
  margin-top: 14px;
  font-size: 54px;
}

.about-grid p {
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
}

.contact-grid h2 {
  margin-top: 14px;
  font-size: 58px;
}

.contact-info {
  border-left: 1px solid var(--line);
  padding-left: 40px;
}

.contact-info > div {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-info p {
  color: var(--muted);
}

.footer {
  background: #2f2a26;
  color: white;
  padding: 70px 6vw 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  font-family: Georgia, serif;
  font-size: 40px;
}

.footer p {
  color: #b8aea5;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  color: #ccc2b9;
  font-size: 13px;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #82776f;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .desktop-nav { display: none; }

  .hero,
  .intro,
  .philosophy-section,
  .studio-section,
  .booking-cta,
  .treatment-detail-hero,
  .treatment-benefits,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .treatment-grid,
  .treatment-page-grid {
    grid-template-columns: 1fr;
  }

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

  .journal-grid,
  .journal-page-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-section {
    grid-template-columns: 1fr;
  }

  blockquote {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.12);
  }
}

@media (max-width: 680px) {
  .brand span { display: none; }
  .header-cta { font-size: 9px; }

  .hero-image { padding: 12px; }
  .hero-image img { min-height: 500px; }

  .hero-copy {
    padding: 70px 24px;
  }

  .hero h1 {
    font-size: clamp(58px, 18vw, 82px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .section,
  .page-hero {
    padding: 80px 24px;
  }

  .treatment-section,
  .philosophy-section > div,
  .studio-section > div,
  .booking-cta > div {
    padding-left: 24px;
    padding-right: 24px;
  }

  .split-heading {
    display: block;
  }

  .split-heading .text-link {
    margin-top: 22px;
  }

  .ritual-grid {
    grid-template-columns: 1fr;
  }

  .treatment-detail-hero > div {
    padding: 80px 24px;
  }

  .article-detail {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-info {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 36px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
