:root {
  --paper: #f5f3ef;
  --white: #ffffff;
  --ink: #1c1b1a;
  --muted: #76736f;
  --line: #d9d5cf;
  --soft: #ece8e2;
  --accent: #c9b8ff;
  --accent-dark: #7967b1;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

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

.site-header {
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 30px;
  background: rgba(245,243,239,.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

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

.header-cta {
  justify-self: end;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--ink);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.eyebrow {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6e665e;
}

.eyebrow-light { color: #cbc7c0; }

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  min-height: 690px;
}

.hero-copy {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 70px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.hero h1 {
  margin-top: 16px;
  font-size: clamp(58px, 6.7vw, 96px);
}

.hero-copy > p {
  max-width: 630px;
  color: var(--muted);
  font-size: 17px;
  margin: 26px 0 0;
}

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

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

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

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

.light-link { color: white; }

.quick-facts {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.quick-facts span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.schedule-card {
  background: var(--ink);
  color: white;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.schedule-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.schedule-head h2 {
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 400;
  margin: 8px 0 0;
}

.status-dot {
  padding: 6px 8px;
  background: var(--accent);
  color: var(--ink);
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 800;
}

.schedule-day {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.schedule-day strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.schedule-day > div {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.schedule-day span {
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,.2);
  font-size: 10px;
}

.schedule-note {
  color: #99958f;
  font-size: 11px;
  margin: 22px 0 0;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-strip a {
  padding: 22px 28px;
  border-right: 1px solid var(--line);
}

.service-strip a:last-child { border-right: 0; }

.service-strip span,
.service-strip small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.service-strip strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 21px;
  font-weight: 400;
  margin: 6px 0;
}

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

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-top: 14px;
  max-width: 820px;
  font-size: clamp(46px, 5.2vw, 72px);
}

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

.split-heading > p {
  max-width: 450px;
  color: var(--muted);
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
}

.service-index {
  display: block;
  color: var(--accent-dark);
  font-size: 10px;
  margin-bottom: 14px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 20px;
}

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

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

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

.booking-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--soft);
}

.booking-flow img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

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

.booking-flow h2 {
  font-family: Georgia, serif;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1;
  font-weight: 400;
  margin: 14px 0 30px;
}

.booking-steps {
  border-top: 1px solid var(--line);
}

.booking-steps article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.booking-steps article > span {
  color: var(--accent-dark);
  font-size: 9px;
}

.booking-steps h3 {
  margin: 0 0 5px;
  font-family: Georgia, serif;
  font-size: 23px;
  font-weight: 400;
}

.booking-steps p {
  margin: 0;
  color: var(--muted);
}

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

.policy-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 25px;
  min-height: 230px;
}

.policy-grid h3 {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  margin: 0 0 36px;
}

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

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

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

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

.studio-section p { color: #aaa6a0; }

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

.testimonial-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--accent);
}

blockquote {
  margin: 0;
  padding: 72px 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(28px, 3.1vw, 44px);
  line-height: 1.16;
}

blockquote footer {
  margin-top: 20px;
  font-size: 9px;
  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: 18px;
}

.article-index {
  display: block;
  font-family: Georgia, serif;
  font-size: 32px;
  color: #aaa59e;
  margin-bottom: 28px;
}

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

.journal-grid h3 { font-size: 28px; }
.journal-page-grid h2 { font-size: 34px; }

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

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

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

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

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

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

.booking-cta {
  min-height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #6c5aa3;
  color: white;
}

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

.booking-cta h2 {
  margin-top: 15px;
  font-size: clamp(52px, 5.8vw, 84px);
}

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

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

.sticky-book {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: inline-flex;
  gap: 26px;
  align-items: center;
  padding: 14px 16px;
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 104px 52px 82px;
}

.page-hero h1 {
  margin-top: 14px;
  max-width: 1000px;
  font-size: clamp(58px, 6.8vw, 100px);
}

.page-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px;
  margin-top: 24px;
}

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

.service-page-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
}

.service-page-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin: 18px 0 20px;
}

.service-page-card h2 {
  margin: 8px 0 12px;
  font-size: 42px;
}

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

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

.service-detail-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 18px;
  min-height: 650px;
}

.service-detail-hero > div {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 72px 50px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-detail-hero h1 {
  margin-top: 14px;
  font-size: clamp(58px, 6.8vw, 96px);
}

.service-detail-hero p {
  color: var(--muted);
  font-size: 17px;
  margin: 24px 0;
}

.detail-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 26px;
  font-size: 11px;
}

.service-detail-hero img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.prep-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.prep-section h2 {
  margin-top: 12px;
  font-size: 50px;
}

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

.article-detail {
  max-width: 940px;
  margin: 0 auto;
  padding: 104px 36px 116px;
}

.article-detail h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(56px, 6.8vw, 92px);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 18px 0 26px;
}

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

.article-body {
  max-width: 720px;
  margin-top: 62px;
}

.article-body p {
  font-size: 17px;
  margin-bottom: 26px;
}

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

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

.about-grid h2 {
  margin-top: 12px;
  font-size: 52px;
}

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

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

.contact-grid h2 {
  margin-top: 12px;
  font-size: 56px;
}

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

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

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

.footer {
  background: #e9e5de;
  color: var(--ink);
  padding: 66px 6vw 22px;
}

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

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

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

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

.footer-bottom {
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid #cdc8c0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8b867f;
  font-size: 9px;
  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,
  .booking-flow,
  .studio-section,
  .booking-cta,
  .service-detail-hero,
  .prep-section,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .policy-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 { padding: 12px; }
  .hero-copy { padding: 62px 24px; }
  .hero h1 { font-size: clamp(56px, 17vw, 80px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .schedule-card { padding: 26px 22px; }

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

  .service-strip a {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .split-heading { display: block; }
  .split-heading > p,
  .split-heading .text-link { margin-top: 20px; }

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

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

  .service-detail-hero {
    padding: 12px;
  }

  .service-detail-hero > div {
    padding: 62px 24px;
  }

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

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

  .sticky-book {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: space-between;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
