:root {
  color-scheme: light;
  --ink: #202722;
  --text-soft: #5e6c64;
  --text-faint: #7f8a83;
  --paper: #fbfaf6;
  --paper-warm: #fff8ec;
  --milk: #ffffff;
  --mist: #edf4ef;
  --sage: #789980;
  --sage-deep: #315d4c;
  --teal: #2e7c82;
  --coral: #bd695b;
  --brass: #a98745;
  --line: rgba(32, 39, 34, 0.12);
  --line-strong: rgba(32, 39, 34, 0.18);
  --shadow-soft: 0 18px 45px rgba(38, 54, 45, 0.11);
  --shadow-lift: 0 0 0 1px rgba(32, 39, 34, 0.06), 0 12px 32px rgba(38, 54, 45, 0.12);
  --shadow-glass: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 1px 1px rgba(255, 255, 255, 0.4), 0 10px 26px rgba(38, 54, 45, 0.09), 0 28px 60px rgba(38, 54, 45, 0.13);
  --shadow-glass-hover: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 14px 30px rgba(38, 54, 45, 0.11), 0 36px 72px rgba(38, 54, 45, 0.17);
  --glass-blur: blur(20px) saturate(160%);
  --radius: 8px;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(237, 244, 239, 0.58), transparent 360px),
    var(--paper);
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Playfair Display", Georgia, serif;
  text-wrap: balance;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  line-height: 0.94;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.28;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.site-shell {
  overflow: clip;
}

.topbar {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  align-items: center;
  gap: 12px;
  padding: 9px 10px 9px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(32, 39, 34, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(34, 49, 41, 0.11);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fffaf1;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.45rem;
  background: var(--sage-deep);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  margin-top: 4px;
  color: var(--text-faint);
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-left: auto;
  padding: 4px;
  background: rgba(237, 244, 239, 0.76);
  border: 1px solid rgba(49, 93, 76, 0.09);
  border-radius: var(--radius);
}

.nav-links a,
.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.nav-links a {
  padding: 0 12px;
  color: var(--text-soft);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.header-cta {
  padding: 0 16px;
  color: #fff;
  background: var(--coral);
  border: 0;
  box-shadow: 0 10px 22px rgba(189, 105, 91, 0.22);
  cursor: pointer;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--sage-deep);
  background: rgba(49, 93, 76, 0.08);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  border-radius: 99px;
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.topbar.menu-active .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.topbar.menu-active .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.menu-active .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero-section {
  position: relative;
  display: flex;
  min-height: 92vh;
  padding: 112px 24px 56px;
  align-items: stretch;
  overflow: hidden;
  background: #e6eee8;
}

.hero-scene,
.hero-art,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-scene {
  overflow: hidden;
  background: #dce9e1;
}

.hero-art {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.88) 39%, rgba(251, 250, 246, 0.42) 72%, rgba(251, 250, 246, 0.24) 100%),
    linear-gradient(0deg, var(--paper) 0%, rgba(251, 250, 246, 0) 26%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(1120px, 100%);
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin: auto;
}

.hero-copy {
  max-width: 720px;
  animation: liftIn 680ms var(--ease-out) both;
}

.hero-copy h1 {
  max-width: 15ch;
  color: rgba(32, 39, 34, 0.94);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(2.9rem, 5.8vw, 5.4rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lede {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.7vw, 1.12rem);
  line-height: 1.65;
}

.hero-actions,
.form-subhead,
.result-header {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 26px;
}

.primary-button,
.secondary-button,
.ghost-button,
.mini-cta,
.card-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  transition: transform 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out), color 160ms var(--ease-out);
}

.primary-button {
  padding: 0 18px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 15px 32px rgba(189, 105, 91, 0.27);
}

.secondary-button {
  padding: 0 16px;
  color: var(--sage-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(49, 93, 76, 0.12);
}

.ghost-button {
  min-height: 38px;
  padding: 0 12px;
  color: var(--sage-deep);
  background: rgba(49, 93, 76, 0.1);
}

.primary-button:hover,
.secondary-button:hover,
.ghost-button:hover,
.mini-cta:hover,
.card-link:hover {
  transform: translateY(-2px);
}

.primary-button:active,
.secondary-button:active,
.ghost-button:active,
.mini-cta:active,
.card-link:active,
.header-cta:active {
  transform: scale(0.98);
}

.hero-intake-card {
  align-self: end;
  padding: 20px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  animation: liftIn 740ms 120ms var(--ease-out) both;
}

.card-kicker,
.blog-meta span,
.result-eyebrow {
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-intake-card h2 {
  margin-top: 10px;
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.22rem, 2vw, 1.42rem);
  line-height: 1.22;
}

.hero-intake-card p {
  display: -webkit-box;
  margin: 12px 0 16px;
  overflow: hidden;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.58;
  white-space: pre-line;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.hero-intake-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0 0 14px;
}

.hero-intake-card dl div {
  padding: 10px 11px;
  background: var(--mist);
  border: 1px solid rgba(49, 93, 76, 0.1);
  border-radius: 7px;
}

.hero-intake-card dl div.hero-application-dates {
  grid-column: 1 / -1;
  text-align: center;
}

.hero-intake-card dl div.hero-price {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(49, 93, 76, 0.96), rgba(46, 124, 130, 0.92));
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 12px 28px rgba(38, 54, 45, 0.2);
}

.hero-intake-card .hero-price dt,
.hero-intake-card .hero-price dd {
  color: #fff;
}

.hero-intake-card .hero-price dd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.hero-intake-card .hero-price small {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.82;
}

.hero-intake-card dt {
  color: var(--text-faint);
  font-size: 0.76rem;
  font-weight: 750;
}

.hero-intake-card dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 850;
}

.mini-cta {
  min-height: 42px;
  color: var(--sage-deep);
  background: rgba(49, 93, 76, 0.09);
}

.mini-cta {
  width: 100%;
}

.trust-strip {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: -26px auto 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.trust-strip div {
  display: grid;
  min-height: 100px;
  align-content: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.92);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  font-size: 1.42rem;
  font-variant-numeric: tabular-nums;
}

.trust-strip span {
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.section-band,
.split-section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 730px;
  margin-bottom: 30px;
}

.section-heading p:not(.eyebrow) {
  color: var(--text-soft);
  line-height: 1.72;
}

.registration-prompt {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}

.registration-preview {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.preview-note h3 {
  margin-top: 10px;
  font-size: 1.28rem;
}

.preview-note p {
  margin-bottom: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.preview-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.preview-steps span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 12px;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  background: var(--mist);
  border: 1px solid rgba(49, 93, 76, 0.1);
  border-radius: 7px;
}

.registration-open {
  width: 100%;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 112px;
}

.registration-stack {
  display: grid;
  min-width: 0;
  gap: 16px;
}

.registration-modal {
  width: min(980px, calc(100% - 28px));
  max-height: min(860px, calc(100dvh - 28px));
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  overflow: visible;
}

.registration-modal::backdrop {
  background: rgba(32, 39, 34, 0.5);
  backdrop-filter: blur(14px) saturate(120%);
}

.modal-panel {
  display: grid;
  max-height: min(860px, calc(100dvh - 28px));
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.82), rgba(237, 244, 239, 0.82)),
    rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 28px 90px rgba(18, 28, 23, 0.3);
  backdrop-filter: blur(28px) saturate(170%);
  -webkit-backdrop-filter: blur(28px) saturate(170%);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
}

.modal-header .eyebrow {
  margin-bottom: 8px;
}

.modal-header h2 {
  font-size: clamp(1.75rem, 4vw, 3.2rem);
}

.modal-close {
  display: grid;
  width: 44px;
  min-width: 44px;
  height: 44px;
  place-items: center;
  color: var(--sage-deep);
  font-size: 1.55rem;
  line-height: 1;
  background: rgba(49, 93, 76, 0.09);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 160ms var(--ease-out), background 160ms var(--ease-out);
}

.modal-close:hover,
.modal-close:focus-visible {
  background: rgba(49, 93, 76, 0.14);
  transform: translateY(-1px);
}

.modal-body {
  min-height: 0;
  padding: clamp(16px, 3vw, 26px);
  overflow: auto;
}

.registration-form,
.private-result {
  min-width: 0;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

fieldset {
  min-inline-size: 0;
  border: 0;
}

input,
select,
textarea {
  width: 100%;
  color: var(--ink);
  background: #f6f4ee;
  border: 1px solid rgba(32, 39, 34, 0.15);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 160ms var(--ease-out), box-shadow 160ms var(--ease-out), background 160ms var(--ease-out);
}

input,
select {
  min-height: 48px;
  padding: 0 12px;
}

textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  background: #f2f0e9;
}

input:focus,
select:focus,
textarea:focus {
  background: #fffdf8;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 124, 130, 0.13);
}

.intake-form-area,
.scale-form-area {
  min-width: 0;
  margin: 24px 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.form-subhead {
  justify-content: space-between;
  margin-bottom: 16px;
}

.form-subhead h3 {
  font-size: 1.1rem;
}

.form-subhead span {
  color: var(--text-faint);
  font-size: 0.86rem;
  font-weight: 700;
}

.intake-block,
.scale-block,
.intake-textarea {
  min-width: 0;
  border-radius: var(--radius);
}

.intake-block,
.scale-block {
  margin-top: 16px;
  padding: 18px;
  background: var(--mist);
  border: 1px solid rgba(49, 93, 76, 0.11);
}

.intake-block legend,
.scale-block > legend,
.question-row legend {
  max-width: 100%;
  padding: 0;
  white-space: normal;
  overflow-wrap: anywhere;
}

.intake-block legend,
.scale-block > legend {
  font-weight: 900;
}

.intake-textarea {
  margin-top: 16px;
  padding: 16px;
  background: var(--paper-warm);
  border: 1px solid rgba(169, 135, 69, 0.18);
}

.scale-description {
  margin: 8px 0 16px;
  color: var(--text-soft);
  line-height: 1.55;
}

.question-row {
  display: grid;
  gap: 12px;
  padding: 14px 0;
  margin: 0;
  border-top: 1px solid rgba(32, 39, 34, 0.08);
}

.question-row legend {
  color: var(--ink);
  font-weight: 750;
  line-height: 1.45;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(104px, 1fr));
  gap: 8px;
}

.option-grid-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-pill {
  position: relative;
  min-height: 44px;
  margin: 0;
  cursor: pointer;
}

.choice-pill input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-pill span {
  display: grid;
  min-height: 44px;
  place-items: center;
  padding: 8px;
  color: var(--sage-deep);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(49, 93, 76, 0.15);
  border-radius: var(--radius);
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out), border-color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.choice-pill input:checked + span {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.choice-pill input:focus-visible + span {
  box-shadow: 0 0 0 4px rgba(46, 124, 130, 0.16);
}

.choice-pill:hover span {
  transform: translateY(-1px);
}

.question-row label {
  margin: 0;
  font-weight: 650;
  line-height: 1.45;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-soft);
  font-weight: 650;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.submit-button {
  width: 100%;
}

.workshop-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.workshop-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workshop-card,
.blog-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), background 220ms var(--ease-out);
}

.workshop-card {
  min-height: 250px;
}

.workshop-card:hover,
.blog-card:hover {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-glass-hover);
  transform: translateY(-3px);
}

.workshop-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  place-items: center;
  color: #fff;
  background: var(--sage-deep);
  border-radius: 50%;
  font-size: 1.2rem;
}

.workshop-card p,
.blog-card p {
  color: var(--text-soft);
  line-height: 1.65;
  white-space: pre-line;
}

.workshop-summary {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.workshop-summary.is-expanded {
  display: block;
  overflow: visible;
}

.workshop-summary-toggle {
  margin: 8px 0 0;
  padding: 0;
  color: var(--sage-deep);
  font-size: 0.82rem;
  font-weight: 800;
  background: none;
  border: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.workshop-summary-toggle:hover {
  color: var(--coral);
}

.workshop-dates {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 12px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  background: rgba(189, 105, 91, 0.1);
  border-radius: 99px;
}

.meta-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.meta-row span {
  display: inline-flex;
  min-height: 31px;
  align-items: center;
  padding: 0 10px;
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 850;
  background: rgba(49, 93, 76, 0.09);
  border-radius: 7px;
}

.meta-row .workshop-price {
  flex: 1 1 100%;
  min-height: 56px;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--sage-deep), var(--teal));
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 12px 24px rgba(38, 54, 45, 0.18);
}

.workshop-price strong {
  font-size: 1.06rem;
  line-height: 1.1;
}

.workshop-price small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.card-link {
  width: max-content;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 18px;
  color: var(--sage-deep);
  font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(49, 93, 76, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 8px 20px rgba(38, 54, 45, 0.1);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
}

.card-link:hover {
  color: #fff;
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  box-shadow: 0 12px 26px rgba(38, 54, 45, 0.18);
}

.workshop-card .card-link {
  width: 100%;
}

.blog-card {
  min-height: 250px;
  background: rgba(255, 248, 236, 0.5);
  border-color: rgba(255, 255, 255, 0.55);
}

.blog-card:hover {
  background: rgba(255, 248, 236, 0.62);
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.blog-meta time {
  color: var(--text-faint);
  font-size: 0.8rem;
  font-weight: 700;
}

.section-action {
  display: flex;
  margin-top: 22px;
}

.blog-archive-main,
.article-main {
  padding-top: 110px;
}

.archive-hero,
.article-hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 42px;
}

.archive-hero h1,
.article-hero h1 {
  max-width: 14ch;
}

.archive-lede,
.article-lede {
  max-width: 760px;
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.72;
}

.blog-tools {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto;
  gap: 14px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 28px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.search-field {
  position: relative;
  display: grid;
}

.search-field span {
  position: absolute;
  left: 14px;
  top: 50%;
  color: var(--text-faint);
  transform: translateY(-50%);
}

.search-field input {
  padding-left: 40px;
  margin: 0;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--sage-deep);
  font-size: 0.86rem;
  font-weight: 800;
  background: rgba(49, 93, 76, 0.08);
  border: 1px solid rgba(49, 93, 76, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 160ms var(--ease-out), background 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.filter-pill:hover,
.filter-pill:focus-visible {
  transform: translateY(-1px);
}

.filter-pill.is-active {
  color: #fff;
  background: var(--sage-deep);
}

.archive-results {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.results-count {
  margin: 0 0 14px;
  color: var(--text-faint);
  font-size: 0.88rem;
  font-weight: 750;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.empty-state {
  padding: 22px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.55);
  border: 1px dashed rgba(32, 39, 34, 0.2);
  border-radius: var(--radius);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.article-shell {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: minmax(0, 720px) minmax(240px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin: 0 auto;
  padding-bottom: 86px;
}

.article-content {
  padding: clamp(20px, 4vw, 36px);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.article-content h2 {
  margin: 34px 0 12px;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.2;
}

.article-content p,
.article-content li {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.78;
}

.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
}

.article-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-callout,
.article-content blockquote {
  margin: 28px 0;
  padding: 18px;
  color: var(--sage-deep);
  background: var(--mist);
  border: 1px solid rgba(49, 93, 76, 0.12);
  border-radius: var(--radius);
}

.article-content blockquote {
  border-left: 4px solid var(--sage-deep);
  font-style: italic;
}

.article-content blockquote p:last-child {
  margin-bottom: 0;
}

.article-side {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 14px;
}

.side-card {
  padding: 18px;
  background: rgba(255, 248, 236, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

.side-card h3 {
  margin-bottom: 12px;
}

.side-card a {
  display: block;
  padding: 10px 0;
  color: var(--sage-deep);
  font-weight: 800;
  border-top: 1px solid rgba(32, 39, 34, 0.08);
}

.side-card a:first-of-type {
  border-top: 0;
}

.article-meta-line {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}

.article-meta-line span,
.article-meta-line time {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  color: var(--sage-deep);
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(49, 93, 76, 0.09);
  border-radius: 7px;
}

.private-result {
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.94), rgba(237, 244, 239, 0.9)),
    #fff;
}

.result-eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.result-person {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.result-person span {
  color: var(--text-soft);
}

.submission-facts,
.intake-summary dl {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.submission-facts div,
.intake-summary dl div {
  padding: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(49, 93, 76, 0.12);
  border-radius: var(--radius);
}

.submission-facts dt,
.intake-summary dt {
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.submission-facts dd,
.intake-summary dd {
  margin: 6px 0 0;
  color: var(--ink);
  line-height: 1.5;
}

.score-list {
  display: grid;
  gap: 12px;
}

.score-item {
  padding: 16px;
  background: rgba(237, 244, 239, 0.62);
  border: 1px solid rgba(49, 93, 76, 0.12);
  border-radius: var(--radius);
}

.score-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-weight: 850;
}

.score-bar {
  height: 10px;
  margin: 12px 0;
  overflow: hidden;
  background: rgba(32, 39, 34, 0.12);
  border-radius: 999px;
}

.score-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--sage-deep), var(--coral));
  border-radius: inherit;
}

.score-item p,
.privacy-note {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.62;
}

.intake-summary {
  margin: 16px 0;
  padding: 14px;
  background: rgba(251, 250, 246, 0.64);
  border: 1px solid rgba(32, 39, 34, 0.12);
  border-radius: var(--radius);
}

.intake-summary summary {
  cursor: pointer;
  color: var(--sage-deep);
  font-weight: 850;
}

.empty-result {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: var(--text-soft);
  text-align: center;
  border: 1px dashed rgba(32, 39, 34, 0.2);
  border-radius: var(--radius);
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: clamp(64px, 10vw, 120px);
  padding: clamp(48px, 6vw, 72px) 0 clamp(28px, 4vw, 40px);
  background:
    linear-gradient(180deg, rgba(237, 244, 239, 0.75), rgba(237, 244, 239, 0.35) 60%, transparent),
    var(--paper);
  border-top: 1px solid var(--line);
}

.footer-top {
  display: grid;
  width: min(1120px, calc(100% - 32px));
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.7fr) minmax(0, 0.9fr);
  gap: clamp(24px, 5vw, 56px);
  margin: 0 auto;
  padding-bottom: clamp(32px, 5vw, 48px);
}

.footer-brand .brand {
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 40ch;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.footer-heading {
  display: block;
  margin-bottom: 14px;
  color: var(--sage-deep);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a {
  color: var(--text-soft);
  font-weight: 700;
  transition: color 160ms var(--ease-out), transform 160ms var(--ease-out);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--sage-deep);
  transform: translateX(2px);
}

.footer-note p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: clamp(20px, 3vw, 28px);
  color: var(--text-faint);
  font-size: 0.84rem;
  font-weight: 700;
  border-top: 1px solid var(--line);
}

.reveal-soft {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

.reveal-soft.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes liftIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 84px;
  }

  .topbar {
    top: 10px;
    width: min(100% - 20px, 680px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px auto;
    gap: 8px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-links {
    position: absolute;
    inset: calc(100% + 8px) 0 auto;
    display: grid;
    gap: 4px;
    width: 100%;
    margin: 0;
    padding: 8px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(32, 39, 34, 0.12);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transform-origin: top;
    transition: opacity 180ms var(--ease-out), transform 180ms var(--ease-out), visibility 180ms var(--ease-out);
    backdrop-filter: blur(18px);
  }

  .nav-links a {
    min-height: 48px;
    justify-content: flex-start;
    padding: 0 12px;
  }

  .topbar.menu-active .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .menu-toggle {
    display: grid;
  }

  .hero-section {
    min-height: auto;
    padding: 100px 16px 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(251, 250, 246, 0.98) 0%, rgba(251, 250, 246, 0.9) 56%, rgba(251, 250, 246, 0.72) 100%),
      linear-gradient(0deg, var(--paper) 0%, rgba(251, 250, 246, 0) 26%);
  }

  .hero-grid,
  .split-section,
  .registration-prompt,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .hero-intake-card {
    max-width: 460px;
  }

  .trust-strip,
  .blog-grid,
  .archive-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

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

  .blog-tools {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .article-side {
    position: static;
  }

  .trust-strip {
    margin-top: 0;
  }

  .section-band,
  .split-section {
    padding: 68px 0;
  }

  .sticky-heading {
    position: static;
  }

  .option-grid,
  .option-grid-compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) 40px auto;
    min-height: 58px;
    padding: 8px;
  }

  .brand-mark {
    width: 40px;
    min-width: 40px;
    height: 40px;
  }

  .brand small {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 12px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 15vw, 3.35rem);
  }

  .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(2.45rem, 12vw, 3.2rem);
    line-height: 1.04;
  }

  .hero-lede {
    line-height: 1.6;
  }

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

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .trust-strip div {
    min-height: 82px;
  }

  .registration-form,
  .private-result,
  .workshop-card,
  .blog-card,
  .article-content {
    padding: 18px;
  }

  .registration-modal {
    width: 100%;
    max-height: 100dvh;
  }

  .modal-panel {
    max-height: 100dvh;
    border-radius: 0;
  }

  .modal-header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(255, 248, 236, 0.96);
    backdrop-filter: blur(16px);
  }

  .modal-body {
    padding: 14px;
  }

  .preview-steps {
    grid-template-columns: 1fr;
  }

  .intake-block,
  .scale-block,
  .intake-textarea {
    padding: 14px;
  }

  .option-grid,
  .option-grid-compact {
    grid-template-columns: 1fr;
  }

  .choice-pill span {
    min-height: 42px;
    justify-items: start;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
