:root {
  --gold: #a47d3f;
  --cream: #f4ede3;
  --ink: #15181a;
  --paper: #fbf8f3;
  --cream-deep: #e9dece;
  --soft: #615d58;
  --line: rgba(21, 24, 26, .15);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
  --shadow: 0 26px 70px rgba(32, 25, 17, .12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: var(--sans); line-height: 1.62; -webkit-font-smoothing: antialiased; }
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.skip-link { position: fixed; left: 12px; top: -100px; z-index: 1000; background: var(--ink); color: #fff; padding: 10px 14px; }
.skip-link:focus { top: 12px; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: .69rem; font-weight: 800; letter-spacing: .22em; text-transform: uppercase; }
.display-title { margin: 0; font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; line-height: .98; font-size: clamp(3rem, 6.2vw, 6.7rem); }
.section-title { margin: 0; font-family: var(--serif); font-size: clamp(2.45rem, 4.5vw, 4.8rem); font-weight: 400; letter-spacing: -.035em; line-height: 1.02; }
.small-title { margin: 0; font-family: var(--serif); font-size: clamp(1.75rem, 3vw, 2.7rem); font-weight: 400; line-height: 1.08; }
.muted { color: var(--soft); }
.btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 23px; border: 1px solid transparent; cursor: pointer; font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-outline { border-color: var(--ink); background: transparent; }
.btn-light-outline { border-color: rgba(255,255,255,.6); color: #fff; background: transparent; }
.text-link { display: inline-flex; gap: 8px; align-items: center; padding-bottom: 2px; border-bottom: 1px solid currentColor; font-size: .72rem; font-weight: 800; letter-spacing: .05em; }

.site-header { position: sticky; top: 0; z-index: 100; min-height: 82px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; padding: 10px max(24px, calc((100vw - var(--max)) / 2)); background: color-mix(in srgb, var(--cream) 93%, transparent); border-bottom: 1px solid rgba(21,24,26,.08); backdrop-filter: blur(16px); transition: box-shadow .25s ease; }
.site-header.scrolled { box-shadow: 0 10px 30px rgba(30,24,17,.08); }
.header-brand, .footer-brand { width: max-content; display: inline-flex; align-items: center; gap: 12px; }
.header-brand img { width: 47px; height: 47px; object-fit: contain; }
.header-brand span, .footer-brand span { display: flex; flex-direction: column; line-height: 1; }
.header-brand strong, .footer-brand strong { font-family: var(--serif); font-size: 1rem; font-weight: 500; letter-spacing: .28em; }
.header-brand small, .footer-brand small { margin-top: 7px; font-size: .45rem; letter-spacing: .25em; }
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a { position: relative; white-space: nowrap; font-size: .7rem; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: var(--gold); transition: right .25s ease; }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.header-book { justify-self: end; min-height: 40px; display: inline-flex; align-items: center; padding: 0 17px; background: var(--ink); color: #fff; font-size: .66rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.nav-toggle i { display: block; width: 24px; height: 1px; margin: 5px 0; background: var(--ink); transition: transform .25s ease, opacity .25s ease; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-hero {
  position: relative;
  min-height: calc(100svh - 82px);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 76px 24px 92px;
  isolation: isolate;
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 48% 42%, rgba(255,255,255,.94), color-mix(in srgb, var(--cream) 78%, transparent) 39%, color-mix(in srgb, var(--gold) 17%, var(--cream)) 100%),
    var(--home-hero-image, none);
  background-size: auto, cover;
  background-position: center, center;
  background-repeat: no-repeat;
}
.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  width: 42vw;
  height: 42vw;
  min-width: 390px;
  min-height: 390px;
  border: 1px solid color-mix(in srgb, var(--gold) 28%, transparent);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.home-hero::before { left: -21vw; top: 5%; }
.home-hero::after { right: -18vw; bottom: -22vw; }
.home-hero[style]::after {
  inset: 0;
  width: auto;
  height: auto;
  min-width: 0;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: color-mix(in srgb, var(--cream) 78%, transparent);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: .55;
  pointer-events: none;
  z-index: -1;
}
.hero-orb-one {
  width: 420px;
  height: 420px;
  left: 10%;
  bottom: -180px;
  background: radial-gradient(circle, color-mix(in srgb, var(--gold) 28%, transparent), transparent 67%);
}
.hero-orb-two {
  width: 480px;
  height: 480px;
  right: 8%;
  top: -220px;
  background: radial-gradient(circle, rgba(255,255,255,.92), transparent 68%);
}
.hero-centered-content {
  position: relative;
  z-index: 2;
  width: min(790px, 92vw);
  text-align: center;
}
.hero-centered-content .eyebrow { margin-bottom: 7px; }
.hero-full-logo {
  width: min(720px, 90vw);
  max-height: 505px;
  object-fit: contain;
  margin: -16px auto -4px;
  filter: drop-shadow(0 14px 28px rgba(68, 50, 27, .07));
}
.hero-centered-statement {
  max-width: 650px;
  margin: 0 auto;
  color: var(--soft);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-note {
  position: absolute;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 38px;
  z-index: 3;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: var(--soft);
}
.hero-note span {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 800;
}
.hero-note p {
  margin: 0;
  font-size: .67rem;
  line-height: 1.7;
  letter-spacing: .04em;
}

.home-intro { padding: 135px 0 120px; }
.split-heading { display: grid; grid-template-columns: .72fr 1.55fr; gap: 50px; align-items: start; }
.split-heading .section-title { max-width: 970px; }
.home-intro-grid { margin-top: 75px; padding-top: 32px; border-top: 1px solid var(--line); display: grid; grid-template-columns: .72fr 1.55fr; gap: 50px; }
.home-intro-grid > p { max-width: 430px; margin: 0; color: var(--soft); font-size: 1rem; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card { border-left: 1px solid var(--line); padding-left: 22px; }
.value-card span { color: var(--gold); font-size: .65rem; font-weight: 800; }
.value-card h3 { margin: 35px 0 10px; font-family: var(--serif); font-weight: 400; font-size: 1.5rem; }
.value-card p { margin: 0; color: var(--soft); font-size: .8rem; }

.section-pad { padding: 120px 0; }
.section-head { display: flex; justify-content: space-between; gap: 60px; align-items: end; padding-bottom: 30px; border-bottom: 1px solid var(--ink); }
.section-head > div { max-width: 760px; }
.section-head > p { max-width: 430px; margin: 0 0 8px; color: var(--soft); font-size: .85rem; }
.treatment-feature { background: #f1eadf; }
.treatment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 45px; background: var(--line); border: 1px solid var(--line); }
.treatment-card { position: relative; min-height: 280px; display: grid; grid-template-columns: 1fr 180px; gap: 25px; padding: 28px; background: var(--paper); transition: background .25s ease, transform .25s ease; }
.treatment-card:hover { background: #fff; transform: translateY(-2px); z-index: 2; }
.treatment-card.no-image { grid-template-columns: 1fr; }
.treatment-card h3 { margin: 0 0 13px; font-family: var(--serif); font-weight: 400; font-size: 1.55rem; line-height: 1.08; }
.treatment-card p { margin: 0; color: var(--soft); font-size: .79rem; }
.treatment-card-image { min-height: 220px; overflow: hidden; }
.treatment-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.treatment-card:hover img { transform: scale(1.035); }
.card-bottom { align-self: end; display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 36px; }
.card-bottom strong { color: var(--gold); font-size: .78rem; }
.card-bottom span { font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.section-actions { display: flex; justify-content: center; margin-top: 42px; }

.experience-band { display: grid; grid-template-columns: 1.07fr .93fr; min-height: 760px; background: var(--ink); color: #fff; }
.experience-collage { position: relative; overflow: hidden; min-height: 650px; background: #cbb28e; }
.experience-collage .large { width: 100%; height: 100%; object-fit: cover; }
.experience-collage .small { position: absolute; width: 34%; right: 6%; bottom: 6%; aspect-ratio: .82; object-fit: cover; border: 10px solid rgba(244,237,227,.92); box-shadow: var(--shadow); }
.experience-copy { align-self: center; padding: 90px clamp(34px, 8vw, 120px); }
.experience-copy .section-title { max-width: 680px; }
.experience-copy > p:not(.eyebrow) { max-width: 560px; margin: 30px 0 38px; color: rgba(255,255,255,.68); }
.experience-list { display: grid; gap: 13px; margin: 0 0 42px; padding: 0; list-style: none; }
.experience-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: .8rem; }
.experience-list li::before { content: "✦"; color: var(--gold); }

.founder-preview { display: grid; grid-template-columns: .92fr 1.08fr; gap: 75px; align-items: center; padding: 125px 0; }
.founder-photo { position: relative; min-height: 650px; overflow: hidden; background: var(--cream-deep); }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo::after { content: ""; position: absolute; inset: 24px; border: 1px solid rgba(255,255,255,.55); pointer-events: none; }
.founder-copy { max-width: 610px; }
.founder-copy > p:not(.eyebrow) { margin: 30px 0 34px; color: var(--soft); }
.founder-signature { display: flex; align-items: center; gap: 18px; margin: 35px 0; }
.founder-signature::before { content: ""; width: 52px; height: 1px; background: var(--gold); }
.founder-signature span { font-family: var(--serif); font-size: 1.25rem; }

.membership-preview { padding: 115px 0; background: var(--cream); }
.membership-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; margin-top: 42px; }
.membership-card { position: relative; min-height: 250px; display: flex; flex-direction: column; padding: 25px; border: 1px solid rgba(164,125,63,.32); background: rgba(255,255,255,.45); overflow: hidden; }
.membership-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -75px; bottom: -75px; border: 1px solid rgba(164,125,63,.25); border-radius: 50%; }
.membership-card.featured { background: var(--ink); color: #fff; }
.membership-card small { color: var(--gold); text-transform: uppercase; letter-spacing: .15em; font-weight: 800; }
.membership-card h3 { margin: 30px 0 15px; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.membership-card strong { margin-top: auto; font-family: var(--serif); font-weight: 400; font-size: 2.05rem; }
.membership-card p { color: var(--soft); font-size: .75rem; }
.membership-card.featured p { color: rgba(255,255,255,.66); }

.testimonials { padding: 120px 0; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 42px; }
.testimonial-card { min-height: 280px; padding: 30px; border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; }
.testimonial-card .stars { color: var(--gold); letter-spacing: .17em; }
.testimonial-card blockquote { margin: 32px 0; font-family: var(--serif); font-size: 1.35rem; line-height: 1.35; }
.testimonial-card footer { margin-top: auto; display: flex; flex-direction: column; color: var(--soft); font-size: .72rem; }
.testimonial-placeholder { margin-top: 42px; padding: 56px; border: 1px dashed color-mix(in srgb, var(--gold) 52%, transparent); text-align: center; background: color-mix(in srgb, var(--cream) 55%, white); }
.testimonial-placeholder p { max-width: 660px; margin: 10px auto 0; color: var(--soft); }

.journal-preview { padding: 120px 0; background: #f0e8dc; }
.article-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 42px; }
.article-card { display: grid; grid-template-columns: 220px 1fr; min-height: 290px; background: var(--paper); }
.article-card img { width: 100%; height: 100%; object-fit: cover; }
.article-card-copy { padding: 28px; display: flex; flex-direction: column; }
.article-card h3 { margin: 12px 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; line-height: 1.15; }
.article-card p { color: var(--soft); font-size: .78rem; }
.article-card .text-link { margin-top: auto; width: max-content; }

.home-contact { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 700px; }
.map-panel { min-height: 600px; }
.map-panel iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.2) sepia(.12); }
.contact-panel { padding: 90px clamp(30px, 8vw, 115px); background: var(--ink); color: #fff; }
.contact-panel .section-title { max-width: 620px; }
.contact-panel > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.contact-details { display: grid; grid-template-columns: repeat(2, 1fr); gap: 25px; margin: 34px 0; padding: 26px 0; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-details small { display: block; color: var(--gold); font-size: .6rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-details span, .contact-details a { display: block; margin-top: 8px; color: rgba(255,255,255,.86); font-size: .78rem; }

.page-hero { position: relative; min-height: 510px; display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; background: var(--cream); }
.page-hero-copy { align-self: center; padding: 90px max(30px, calc((100vw - var(--max)) / 2)); padding-right: clamp(34px, 7vw, 110px); }
.page-hero-copy .display-title { font-size: clamp(3.4rem, 6vw, 6.3rem); }
.page-hero-copy > p:last-child { max-width: 640px; color: var(--soft); }
.page-hero-media { min-height: 510px; background: var(--cream-deep); }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.no-image { grid-template-columns: 1fr; min-height: 420px; }
.page-hero.no-image .page-hero-copy { max-width: var(--max); width: min(calc(100% - 48px), var(--max)); margin: auto; padding-inline: 0; }

.prose-wrap { padding: 100px 0; }
.prose-layout { display: grid; grid-template-columns: .34fr .66fr; gap: 70px; }
.prose-aside { position: sticky; top: 120px; align-self: start; }
.prose-aside p { color: var(--soft); font-size: .82rem; }
.prose { max-width: 850px; font-size: 1rem; }
.prose > *:first-child { margin-top: 0; }
.prose h2, .prose h3, .prose h4 { font-family: var(--serif); font-weight: 400; line-height: 1.1; }
.prose h2 { margin: 1.5em 0 .55em; font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -.025em; }
.prose h3 { margin: 1.6em 0 .55em; font-size: 1.7rem; }
.prose p { color: #3f3c39; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin: .45em 0; }
.prose blockquote { margin: 2.2em 0; padding: 30px 0 30px 35px; border-left: 1px solid var(--gold); font-family: var(--serif); font-size: 1.65rem; line-height: 1.35; color: var(--ink); }
.prose img { margin: 32px 0; width: 100%; height: auto; }
.prose a { color: var(--gold); text-decoration: underline; }

.category-section { padding: 75px 0; border-bottom: 1px solid var(--line); }
.category-heading { display: grid; grid-template-columns: 60px .8fr 1.5fr; gap: 25px; }
.category-heading > span { color: var(--gold); font-size: .7rem; font-weight: 800; }
.category-heading h2 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 3.4vw, 3.5rem); font-weight: 400; }
.category-heading p { margin: 8px 0 0; color: var(--soft); }
.category-treatment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 35px; background: var(--line); border: 1px solid var(--line); }
.category-treatment-card { min-height: 205px; padding: 25px; background: var(--paper); display: flex; flex-direction: column; }
.category-treatment-card:hover { background: #fff; }
.category-treatment-card h3 { margin: 0 0 10px; font-size: .88rem; }
.category-treatment-card p { margin: 0; color: var(--soft); font-size: .77rem; }
.category-treatment-card .card-bottom { margin-top: auto; padding-top: 25px; }

.detail-shell { padding: 90px 0 120px; }
.detail-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.detail-image { position: sticky; top: 112px; min-height: 580px; background: var(--cream-deep); }
.detail-image img { width: 100%; height: 100%; min-height: 580px; object-fit: cover; }
.detail-copy .display-title { font-size: clamp(3rem, 5vw, 5.5rem); }
.detail-price { margin: 27px 0; color: var(--gold); font-family: var(--serif); font-size: 2.2rem; }
.media-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 45px; }
.media-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.experience-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; padding: 90px 0 120px; }
.gallery-card { position: relative; min-height: 380px; overflow: hidden; background: var(--cream-deep); }
.gallery-card:nth-child(4n+1) { grid-column: span 7; }
.gallery-card:nth-child(4n+2) { grid-column: span 5; }
.gallery-card:nth-child(4n+3) { grid-column: span 5; }
.gallery-card:nth-child(4n+4) { grid-column: span 7; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-card:hover img { transform: scale(1.035); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 65px 24px 22px; color: #fff; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.gallery-caption h3 { margin: 0; font-family: var(--serif); font-weight: 400; font-size: 1.5rem; }
.gallery-caption p { margin: 5px 0 0; font-size: .72rem; color: rgba(255,255,255,.8); }

.founder-full { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 100px 0 130px; }
.founder-portrait-stack { position: relative; min-height: 860px; }
.founder-portrait-stack .primary { width: 82%; height: 660px; object-fit: cover; }
.founder-portrait-stack .secondary { position: absolute; right: 0; bottom: 0; width: 52%; height: 430px; object-fit: cover; border: 12px solid var(--paper); }
.founder-bio-card { padding: 35px 0 0; }
.staff-list { display: grid; gap: 35px; margin-top: 45px; }
.staff-mini { display: grid; grid-template-columns: 95px 1fr; gap: 22px; align-items: center; padding-top: 25px; border-top: 1px solid var(--line); }
.staff-mini img { width: 95px; height: 110px; object-fit: cover; }
.staff-mini h3 { margin: 0; font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.staff-mini p { margin: 4px 0 0; color: var(--soft); font-size: .75rem; }

.membership-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 10px 0 110px; }
.membership-page-card { min-height: 390px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); background: #fff; }
.membership-page-card.featured { background: var(--ink); color: #fff; }
.membership-page-card h2 { margin: 22px 0 10px; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.membership-page-card .amount { margin: 18px 0; color: var(--gold); font-family: var(--serif); font-size: 2.6rem; }
.membership-page-card p { color: var(--soft); }
.membership-page-card.featured p { color: rgba(255,255,255,.68); }
.membership-page-card .btn { margin-top: auto; width: max-content; }

.contact-page { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; padding: 100px 0 125px; }
.contact-info-card { padding: 36px; background: var(--cream); }
.contact-info-list { display: grid; gap: 25px; margin-top: 36px; }
.contact-info-list div { padding-top: 20px; border-top: 1px solid var(--line); }
.contact-info-list small { display: block; color: var(--gold); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-info-list a, .contact-info-list span { display: block; margin-top: 8px; }
.contact-form { display: grid; gap: 23px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-field { display: grid; gap: 8px; }
.form-field label { font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--soft); }
.form-field input, .form-field textarea, .form-field select { width: 100%; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; padding: 13px 0; background: transparent; outline: none; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; min-height: 130px; }
.form-message { padding: 15px 18px; border: 1px solid color-mix(in srgb, var(--gold) 50%, transparent); background: color-mix(in srgb, var(--cream) 68%, white); }
.honeypot { position: absolute; left: -10000px; }
.contact-map-wide { height: 520px; }
.contact-map-wide iframe { width: 100%; height: 100%; border: 0; }

.journal-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 90px 0 125px; }
.journal-list .article-card { display: flex; flex-direction: column; }
.journal-list .article-card img { aspect-ratio: 1.35; height: auto; }
.article-detail { width: min(calc(100% - 48px), 900px); margin: 0 auto; padding: 90px 0 130px; }
.article-detail .article-meta { color: var(--gold); font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; }
.article-detail .display-title { font-size: clamp(3rem, 6vw, 6rem); margin: 17px 0 30px; }
.article-detail .lead { color: var(--soft); font-family: var(--serif); font-size: 1.35rem; }
.article-featured { margin: 55px 0; width: 100%; max-height: 650px; object-fit: cover; }

.site-footer { padding: 75px 0 28px; background: var(--cream); border-top: 1px solid rgba(21,24,26,.08); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr 1fr; gap: 70px; }
.footer-brand img { width: 68px; height: 68px; object-fit: contain; }
.footer-brand-block > p { max-width: 400px; color: var(--soft); font-size: .78rem; }
.footer-title { margin: 0 0 20px; color: var(--gold); font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 9px; color: var(--soft); font-size: .76rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--soft); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .reveal { opacity: 1; transform: none; } * { transition-duration: .01ms !important; } }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-book { display: none; }
  .nav-toggle { display: block; justify-self: end; }
  .site-nav { position: fixed; display: none; inset: 82px 0 auto; min-height: calc(100svh - 82px); padding: 45px 28px; background: var(--cream); flex-direction: column; align-items: flex-start; gap: 25px; }
  .site-nav.open { display: flex; }
  .site-nav a { font-family: var(--serif); font-size: 1.6rem; }
  .page-hero { grid-template-columns: 1fr; }
  .home-hero { min-height: calc(100svh - 82px); }
  .page-hero-media { min-height: 450px; }
  .membership-grid { grid-template-columns: repeat(3, 1fr); }
  .experience-band, .home-contact { grid-template-columns: 1fr; }
  .experience-collage { min-height: 620px; }
  .founder-preview, .founder-full, .detail-grid, .contact-page { gap: 50px; }
  .article-grid { grid-template-columns: 1fr; }
}

@media (max-width: 800px) {
  .shell { width: min(calc(100% - 32px), var(--max)); }
  .split-heading, .home-intro-grid, .section-head, .prose-layout, .founder-preview, .founder-full, .detail-grid, .contact-page { grid-template-columns: 1fr; }
  .section-head { display: grid; gap: 22px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card h3 { margin-top: 15px; }
  .treatment-grid, .category-treatment-grid { grid-template-columns: 1fr; }
  .membership-grid, .membership-page-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid, .journal-list { grid-template-columns: 1fr; }
  .prose-aside { position: static; }
  .category-heading { grid-template-columns: 42px 1fr; }
  .category-heading > div { grid-column: 2; }
  .detail-image { position: static; min-height: 480px; }
  .detail-image img { min-height: 480px; }
  .founder-portrait-stack { min-height: 720px; }
  .founder-portrait-stack .primary { height: 560px; }
  .founder-portrait-stack .secondary { height: 350px; }
  .gallery-card, .gallery-card:nth-child(n) { grid-column: span 12; min-height: 440px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand-block { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .site-header { min-height: 70px; padding-inline: 15px; }
  .site-nav { inset-top: 70px; min-height: calc(100svh - 70px); }
  .header-brand img { width: 40px; height: 40px; }
  .header-brand strong { font-size: .88rem; }
  .header-brand small { font-size: .39rem; }
  .home-hero { min-height: max(680px, calc(100svh - 70px)); padding: 62px 16px 82px; }
  .hero-centered-content { width: min(100%, 620px); }
  .hero-centered-content .eyebrow { margin-bottom: 12px; font-size: .6rem; }
  .hero-full-logo { width: 112%; max-width: none; margin: -4px 0 4px -6%; }
  .hero-centered-statement { max-width: 92%; font-size: 1rem; }
  .hero-actions { flex-direction: column; gap: 18px; margin-top: 28px; }
  .hero-note { display: none; }
  .home-intro, .section-pad, .testimonials, .journal-preview, .prose-wrap { padding-top: 85px; padding-bottom: 85px; }
  .display-title { font-size: 3rem; }
  .section-title { font-size: 2.6rem; }
  .treatment-card { grid-template-columns: 1fr; }
  .treatment-card-image { min-height: 260px; order: -1; }
  .experience-collage { min-height: 500px; }
  .experience-copy, .contact-panel { padding: 75px 22px; }
  .founder-photo { min-height: 520px; }
  .membership-grid, .membership-page-grid { grid-template-columns: 1fr; }
  .article-card { grid-template-columns: 1fr; }
  .article-card img { height: 270px; }
  .contact-details, .form-row { grid-template-columns: 1fr; }
  .page-hero-copy { padding-top: 75px; padding-bottom: 75px; }
  .page-hero-media { min-height: 380px; }
  .founder-portrait-stack { min-height: 620px; }
  .founder-portrait-stack .primary { width: 90%; height: 470px; }
  .founder-portrait-stack .secondary { width: 58%; height: 300px; border-width: 8px; }
  .media-gallery { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-brand-block { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}


/* Product catalogue and CMS-authored rich blocks */
.prose.compact { margin-top: 18px; font-size: .88rem; }
.prose.compact h2 { font-size: 1.8rem; }
.experience-rich { margin: 24px 0 30px; color: rgba(255,255,255,.76); }
.experience-rich ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.18); }
.experience-rich li { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-size: .78rem; }
.product-preview { background: var(--paper); }
.product-catalog { padding-top: 100px; padding-bottom: 130px; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 42px; }
.product-card { display: flex; flex-direction: column; min-height: 100%; background: #fff; border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(38,31,23,.09); }
.product-card > img { width: 100%; aspect-ratio: 1.15; object-fit: cover; background: var(--cream-deep); }
.product-card > div { display: flex; flex-direction: column; flex: 1; padding: 25px; }
.product-card h3 { margin: 6px 0 12px; font-family: var(--serif); font-size: 1.75rem; font-weight: 400; line-height: 1.12; }
.product-card p:not(.eyebrow) { margin: 0 0 24px; color: var(--soft); font-size: .78rem; }
.product-card strong { margin-top: auto; color: var(--gold); font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.product-card span { display: inline-block; margin-top: 14px; font-size: .68rem; font-weight: 800; }
.empty-public { margin-top: 40px; padding: 55px; border: 1px dashed var(--line); text-align: center; }
.empty-public h2 { margin-top: 0; font-family: var(--serif); font-weight: 400; }

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; }
  .product-catalog { padding-top: 75px; padding-bottom: 90px; }
}
.prose [data-align="left"]{text-align:left}.prose [data-align="center"]{text-align:center}.prose [data-align="right"]{text-align:right}.prose [data-align="justify"]{text-align:justify}
.prose table{width:100%;border-collapse:collapse;margin:30px 0}.prose th,.prose td{padding:12px;border:1px solid var(--line);text-align:left}.prose th{background:var(--cream);font-size:.75rem;letter-spacing:.05em}
