@charset "UTF-8";
:root {
  --green: #123e31;
  --green-deep: #0c2d24;
  --green-light: #eaf0e9;
  --cream: #f8f5ee;
  --paper: #fffdf8;
  --ink: #23352b;
  --muted: #657168;
  --gold: #b98b50;
  --line: #dfe4dc;
  --white: #fff;
  --radius: 18px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: calc(1.0625rem * var(--theme-text-scale,1));
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.7;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  color: var(--green);
  font-weight: 400;
}
h1,
h2 {
  font-family: var(--serif);
  letter-spacing: -0.04em;
  line-height: 1.1;
}
h1 {
  font-size: calc(clamp(2.8rem, 4.8vw, 4.7rem) * var(--theme-title-scale,1));
}
h2 {
  font-size: calc(clamp(2rem, 3vw, 3.1rem) * var(--theme-heading-scale,1));
}
h3 {
  font-size: calc(1.3rem * var(--theme-heading-scale,1));
  line-height: 1.35;
  font-weight: 500;
}
p {
  margin-bottom: 1.1rem;
}
small,
.hint {
  font-size: calc(0.875rem * var(--theme-text-scale,1));
  line-height: 1.5;
  color: var(--muted);
}
small {
  display: block;
}
strong {
  font-weight: 600;
}
.wrap {
  max-width: 1260px;
  width: calc(100% - 100px);
  margin-left: auto;
  margin-right: auto;
}
.narrow {
  max-width: 850px;
}
.section {
  padding-top: calc(75px * var(--theme-section-scale,1));
  padding-bottom: calc(80px * var(--theme-section-scale,1));
}
.section.compact {
  padding-top: calc(35px * var(--theme-section-scale,1));
}
.subsection {
  margin-top: 65px;
}
.subsection > h2,
.subsection > h3 {
  margin-bottom: 24px;
}
.eyebrow {
  font-size: calc(0.78rem * var(--theme-text-scale,1));
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}
.lead {
  font-size: calc(1.17rem * var(--theme-text-scale,1));
  line-height: 1.7;
  color: var(--muted);
  max-width: 590px;
  margin-top: 22px;
}
.meta {
  font-size: calc(0.875rem * var(--theme-text-scale,1));
  color: var(--muted);
  line-height: 1.55;
}
.page-title {
  font-size: calc(clamp(2.6rem, 4.1vw, 3.7rem) * var(--theme-title-scale,1));
  max-width: 890px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: calc(30px * var(--theme-gap-scale,1));
  align-items: end;
  margin-bottom: 34px;
}
.section-heading > p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
}
.section-heading h2 {
  margin: 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: calc(24px * var(--theme-gap-scale,1));
  min-height: 56px;
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  padding: 13px 25px;
  border-radius: calc(8px * var(--theme-radius-scale,1));
  font-size: calc(0.95rem * var(--theme-text-scale,1));
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  transition:
    background 0.18s,
    transform 0.18s;
  white-space: normal;
}
.button:hover {
  background: var(--green-deep);
  transform: translateY(-1px);
}
.button.light {
  background: transparent;
  color: var(--green);
  border-color: #bccabd;
}
.button.light:hover {
  background: var(--green-light);
}
.button.cream {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
}
.button.small {
  min-height: 45px;
  padding: 9px 18px;
  font-size: calc(0.9rem * var(--theme-text-scale,1));
  gap: calc(16px * var(--theme-gap-scale,1));
}
.button.full {
  width: 100%;
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: calc(20px * var(--theme-gap-scale,1));
  align-items: center;
}
.centered {
  justify-content: center;
}
.inline-link {
  display: inline-flex;
  gap: calc(18px * var(--theme-gap-scale,1));
  align-items: center;
  font-size: calc(0.95rem * var(--theme-text-scale,1));
  font-weight: 500;
  color: var(--green);
  text-decoration: underline;
  text-decoration-color: #a1b39f;
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
  padding: 7px 0;
}
.inline-link:hover {
  text-decoration-color: var(--green);
}
.text-button {
  background: none;
  border: 0;
  padding: 8px 0;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
  font-size: calc(0.9rem * var(--theme-text-scale,1));
}
.spark {
  font-family: var(--serif);
  font-size: calc(3rem * var(--theme-text-scale,1));
  color: var(--gold);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: 1380px;
  margin: auto;
  padding: 21px 50px;
  display: flex;
  align-items: center;
  gap: calc(45px * var(--theme-gap-scale,1));
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: calc(2.15rem * var(--theme-text-scale,1));
  line-height: 1;
  letter-spacing: -0.07em;
  color: var(--green);
}
.wordmark span {
  margin-left: 5px;
  font-size: 0.98em;
  letter-spacing: -0.09em;
}
.wordmark i {
  font-family: var(--sans);
  font-style: normal;
  font-size: calc(0.7rem * var(--theme-text-scale,1));
  align-self: start;
  color: var(--gold);
  margin: 0 0 0 7px;
  letter-spacing: 0;
}
.header-inner nav {
  display: flex;
  align-items: center;
  gap: calc(29px * var(--theme-gap-scale,1));
  margin-left: auto;
}
.header-inner nav a {
  font-size: calc(0.9rem * var(--theme-text-scale,1));
  position: relative;
  line-height: 1.6;
  padding: 6px 0;
}
.header-inner nav a:hover,
.header-inner nav a.active {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 9px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: calc(22px * var(--theme-gap-scale,1));
  font-size: calc(0.9rem * var(--theme-text-scale,1));
}
.login-link {
  white-space: nowrap;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--green);
  font-size: calc(0.9rem * var(--theme-text-scale,1));
  padding: 10px;
}
.menu-toggle span {
  margin-left: 8px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: calc(64px * var(--theme-gap-scale,1));
  align-items: center;
  padding-top: calc(65px * var(--theme-section-scale,1));
  padding-bottom: calc(70px * var(--theme-section-scale,1));
}
.hero-copy {
  padding: calc(18px * var(--theme-section-scale,1)) 0;
}
.hero h1 {
  max-width: 540px;
  line-height: 1.08;
}
.hero .lead {
  margin: 28px 0 30px;
  max-width: 455px;
  font-size: calc(1.1rem * var(--theme-text-scale,1));
}
.hero-note {
  font-size: calc(0.82rem * var(--theme-text-scale,1));
  color: var(--muted);
  margin: 24px 0 0;
}
.little-line {
  display: inline-block;
  width: 29px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 10px;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.hero-visual > img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: calc(110px * var(--theme-radius-scale,1)) calc(12px * var(--theme-radius-scale,1)) calc(12px * var(--theme-radius-scale,1)) calc(12px * var(--theme-radius-scale,1));
  object-position: center;
}
.photo-note {
  position: absolute;
  left: -32px;
  bottom: 30px;
  background: var(--paper);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: calc(20px * var(--theme-gap-scale,1));
  box-shadow: 0 8px 25px #19332810;
  border-radius: calc(4px * var(--theme-radius-scale,1)) calc(30px * var(--theme-radius-scale,1)) calc(4px * var(--theme-radius-scale,1)) calc(4px * var(--theme-radius-scale,1));
  line-height: 1.35;
  font-size: calc(1.1rem * var(--theme-text-scale,1));
}
.photo-note > span {
  font-size: calc(2.5rem * var(--theme-text-scale,1));
  color: var(--gold);
}
.photo-note em {
  font-family: var(--serif);
  font-size: calc(1.45rem * var(--theme-text-scale,1));
  font-weight: 400;
  color: var(--green);
}
.intention-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 0;
}
.intention-section h2 {
  font-size: calc(2.45rem * var(--theme-heading-scale,1));
}
.intention-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: calc(15px * var(--theme-gap-scale,1));
}
.intention {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: calc(20px * var(--theme-gap-scale,1));
  position: relative;
  border: 1px solid #dce2d7;
  border-radius: calc(12px * var(--theme-radius-scale,1));
  padding: 25px 20px;
  background: var(--paper);
  transition:
    border 0.2s,
    transform 0.2s;
}
.intention:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}
.intention-icon {
  font-size: calc(2rem * var(--theme-text-scale,1));
  line-height: 1;
  color: var(--green);
}
.intention strong {
  font-size: calc(0.95rem * var(--theme-text-scale,1));
  line-height: 1.45;
  display: block;
  max-width: 145px;
}
.intention small {
  font-size: calc(0.79rem * var(--theme-text-scale,1));
  margin-top: 7px;
}
.intention .arrow {
  position: absolute;
  top: 26px;
  right: 21px;
  color: var(--muted);
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(30px * var(--theme-gap-scale,1));
}
.content-card {
  min-width: 0;
}
.card-image {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: calc(14px * var(--theme-radius-scale,1));
}
.card-image img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.4s;
}
.card-image:hover img {
  transform: scale(1.025);
}
.image-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--paper);
  color: var(--green);
  border-radius: calc(5px * var(--theme-radius-scale,1));
  font-size: calc(0.75rem * var(--theme-text-scale,1));
  letter-spacing: 0.02em;
  padding: 5px 10px;
}
.card-copy {
  padding: 23px 0 4px;
}
.card-copy h3 {
  font-family: var(--serif);
  font-size: calc(1.62rem * var(--theme-heading-scale,1));
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.card-copy p {
  color: var(--muted);
  font-size: calc(0.95rem * var(--theme-text-scale,1));
  line-height: 1.65;
  margin-bottom: 11px;
}
.card-copy .meta {
  font-size: calc(0.8rem * var(--theme-text-scale,1));
}
.feature-band {
  background: var(--green);
  border-radius: calc(18px * var(--theme-radius-scale,1));
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  margin-top: 15px;
  margin-bottom: 15px;
}
.feature-band > img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}
.feature-band > div {
  padding: 64px 55px;
  align-self: center;
}
.feature-band .eyebrow {
  color: #ddbf90;
}
.feature-band h2 {
  color: var(--cream);
  margin-bottom: 24px;
}
.feature-band p:not(.eyebrow) {
  color: #d8e1d6;
  margin-bottom: 28px;
  font-size: calc(1rem * var(--theme-text-scale,1));
}
.closing-note {
  padding: 55px 20px 90px;
  text-align: center;
}
.closing-note .spark {
  display: block;
  margin-bottom: 15px;
}
.closing-note .eyebrow {
  margin-bottom: 20px;
}
.closing-note h2 {
  font-size: calc(clamp(1.7rem, 2.8vw, 2.5rem) * var(--theme-heading-scale,1));
  line-height: 1.25;
  max-width: 860px;
  margin: 0 auto 30px;
}
.site-footer {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding: 60px max(50px, calc((100% - 1260px) / 2)) 25px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: calc(60px * var(--theme-gap-scale,1));
  padding-bottom: 40px;
}
.footer-top > div > a:not(.wordmark) {
  display: block;
  font-size: calc(0.9rem * var(--theme-text-scale,1));
  color: var(--muted);
  margin: 10px 0;
}
.footer-top > div > a:hover {
  text-decoration: underline;
}
.footer-top p {
  font-family: var(--serif);
  font-size: calc(1.4rem * var(--theme-text-scale,1));
  line-height: 1.4;
  margin-top: 22px;
}
.footer-top .eyebrow {
  font-size: calc(0.75rem * var(--theme-text-scale,1));
  display: block;
  margin: 0 0 20px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: calc(20px * var(--theme-gap-scale,1));
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: calc(0.78rem * var(--theme-text-scale,1));
  color: var(--muted);
}
.operator {
  font-size: calc(0.8rem * var(--theme-text-scale,1));
  color: var(--muted);
  margin-top: 16px;
}
.collection-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: calc(75px * var(--theme-gap-scale,1));
  align-items: center;
  padding-top: calc(65px * var(--theme-section-scale,1));
  padding-bottom: calc(40px * var(--theme-section-scale,1));
}
.collection-hero h1 {
  font-size: calc(clamp(2.6rem, 4vw, 3.6rem) * var(--theme-title-scale,1));
}
.collection-hero > img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: calc(70px * var(--theme-radius-scale,1)) calc(12px * var(--theme-radius-scale,1)) calc(12px * var(--theme-radius-scale,1)) calc(12px * var(--theme-radius-scale,1));
}
.collection-hero .lead {
  font-size: calc(1.05rem * var(--theme-text-scale,1));
}
.filters {
  display: flex;
  flex-direction: column;
  gap: calc(22px * var(--theme-gap-scale,1));
  padding-bottom: 30px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--line);
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12px * var(--theme-gap-scale,1));
}
.chip {
  font-size: calc(0.9rem * var(--theme-text-scale,1));
  line-height: 1.5;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 11px 19px;
  min-height: 44px;
}
.chip.selected,
.chip:hover {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.inline-field {
  display: flex;
  gap: calc(12px * var(--theme-gap-scale,1));
  align-items: center;
  max-width: 620px;
}
.inline-field input {
  min-width: 100px;
  flex: 1;
}
.inline-field .button {
  flex-shrink: 0;
}
.empty-state {
  padding: 60px 30px;
  text-align: center;
  background: var(--cream);
  border-radius: calc(18px * var(--theme-radius-scale,1));
  max-width: 900px;
  margin: 20px auto;
}
.empty-state h2,
.empty-state h3 {
  margin: 10px 0 18px;
}
.empty-state p {
  max-width: 600px;
  margin: 0 auto 25px;
  color: var(--muted);
}
.discovery-note {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: calc(42px * var(--theme-gap-scale,1));
  align-items: center;
  background: var(--cream);
  border-radius: calc(16px * var(--theme-radius-scale,1));
  margin-top: 65px;
  overflow: hidden;
}
.discovery-note img {
  height: 315px;
  width: 100%;
  object-fit: cover;
}
.discovery-note > div {
  padding: 32px 40px 32px 0;
}
.discovery-note h2 {
  font-size: calc(2.25rem * var(--theme-heading-scale,1));
  margin-bottom: 18px;
}
.discovery-note p {
  font-size: calc(1rem * var(--theme-text-scale,1));
  color: var(--muted);
}
.discovery-note .eyebrow {
  font-size: calc(0.75rem * var(--theme-text-scale,1));
  color: var(--green);
  margin-bottom: 14px;
}
.soft-note {
  padding: 32px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: calc(14px * var(--theme-radius-scale,1));
}
.soft-note h2,
.soft-note h3 {
  margin: 0 0 15px;
}
.soft-note p {
  color: var(--muted);
  font-size: calc(1rem * var(--theme-text-scale,1));
}
.soft-note p:last-child {
  margin-bottom: 0;
}
.page-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(60px * var(--theme-gap-scale,1));
  padding-top: 30px;
}
.page-content:has(.form-panel) {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.prose {
  max-width: 740px;
  font-size: calc(1.12rem * var(--theme-text-scale,1));
  line-height: 1.9;
}
.prose p {
  white-space: pre-line;
  margin-bottom: 27px;
}
.prose h2 {
  font-size: calc(2rem * var(--theme-heading-scale,1));
  margin-bottom: 25px;
  margin-top: 40px;
}
.prose h2:first-child {
  margin-top: 0;
}
.breadcrumb {
  display: inline-block;
  font-size: calc(0.9rem * var(--theme-text-scale,1));
  color: var(--muted);
  margin-bottom: 30px;
}
.detail-hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: calc(60px * var(--theme-gap-scale,1));
  align-items: center;
  margin-bottom: 70px;
}
.detail-hero > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: calc(18px * var(--theme-radius-scale,1));
}
.detail-hero h1 {
  font-size: calc(3.25rem * var(--theme-title-scale,1));
}
.detail-hero .lead {
  font-size: calc(1.1rem * var(--theme-text-scale,1));
}
.detail-hero .hint {
  margin-top: 16px;
}
.detail-hero .badge {
  margin-bottom: 20px;
}
.discussion-layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: calc(50px * var(--theme-gap-scale,1));
  align-items: start;
}
.post-composer {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
  border-radius: calc(14px * var(--theme-radius-scale,1));
  margin-bottom: 25px;
}
.composer-footer {
  display: flex;
  justify-content: space-between;
  gap: calc(20px * var(--theme-gap-scale,1));
  align-items: center;
  margin-top: 15px;
}
.list-stack {
  display: flex;
  flex-direction: column;
  gap: calc(18px * var(--theme-gap-scale,1));
}
.conversation {
  border: 1px solid var(--line);
  padding: 26px;
  border-radius: calc(14px * var(--theme-radius-scale,1));
  background: white;
  overflow-wrap: anywhere;
}
.person-line {
  display: flex;
  align-items: center;
  gap: calc(15px * var(--theme-gap-scale,1));
  margin-bottom: 20px;
}
.person-line .meta {
  display: block;
  font-size: calc(0.8rem * var(--theme-text-scale,1));
}
.user-text {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: calc(1rem * var(--theme-text-scale,1));
}
.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: calc(1.45rem * var(--theme-text-scale,1));
  flex-shrink: 0;
}
.avatar.mini {
  width: 34px;
  height: 34px;
  font-size: calc(1.05rem * var(--theme-text-scale,1));
}
.avatar.large {
  width: 65px;
  height: 65px;
  font-size: calc(2rem * var(--theme-text-scale,1));
}
.badge {
  display: inline-block;
  border-radius: calc(5px * var(--theme-radius-scale,1));
  background: var(--green-light);
  color: var(--green);
  font-size: calc(0.78rem * var(--theme-text-scale,1));
  padding: 5px 10px;
  line-height: 1.4;
}
.badge.attention {
  background: #fcf0d5;
  color: #735321;
}
.report-form,
.cancel-details {
  font-size: calc(0.85rem * var(--theme-text-scale,1));
  margin-top: 15px;
}
.report-form summary,
.cancel-details summary,
.settings-details summary {
  cursor: pointer;
  color: var(--muted);
  padding: 8px 0;
  min-height: 36px;
}
.report-form form,
.cancel-details form {
  margin-top: 15px;
}
.settings-details {
  margin-top: 30px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.settings-details > p {
  margin-top: 20px;
}
.article-heading {
  text-align: center;
  padding: 70px 0 45px;
  max-width: 930px;
}
.article-heading h1 {
  font-size: calc(3.8rem * var(--theme-title-scale,1));
  margin-top: 24px;
}
.article-heading .lead {
  margin: 25px auto;
}
.article-heading .breadcrumb {
  display: block;
  margin-bottom: 30px;
}
.article-cover {
  width: calc(100% - 100px);
  max-width: 1100px;
  height: 490px;
  object-fit: cover;
  border-radius: calc(18px * var(--theme-radius-scale,1));
}
.article-body {
  margin: 55px auto;
  padding: 0 24px;
  max-width: 790px;
}
.article-body p:first-child {
  font-size: calc(1.32rem * var(--theme-text-scale,1));
  color: var(--green);
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 690px;
}
.auth-photo {
  position: relative;
  min-width: 0;
}
.auth-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.auth-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, #123e31cf);
}
.auth-photo > div {
  position: absolute;
  left: 60px;
  bottom: 55px;
  z-index: 1;
}
.auth-photo h2 {
  color: var(--white);
  font-size: calc(3.3rem * var(--theme-heading-scale,1));
}
.auth-photo .eyebrow {
  color: #eee2cb;
}
.auth-panel {
  padding: 70px 12%;
  max-width: 750px;
  align-self: center;
  width: 100%;
}
.auth-panel h1 {
  font-size: calc(3.1rem * var(--theme-title-scale,1));
  margin-bottom: 20px;
}
.auth-panel > p {
  color: var(--muted);
  font-size: calc(1rem * var(--theme-text-scale,1));
}
.stack-form {
  display: flex;
  flex-direction: column;
  gap: calc(21px * var(--theme-gap-scale,1));
  margin-top: 25px;
}
label {
  display: block;
  font-size: calc(0.95rem * var(--theme-text-scale,1));
  color: var(--green);
  font-weight: 500;
}
input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
textarea,
select {
  display: block;
  width: 100%;
  border: 1px solid #bcc8bb;
  border-radius: calc(7px * var(--theme-radius-scale,1));
  background: var(--white);
  color: var(--ink);
  padding: 12px 14px;
  font-size: calc(1rem * var(--theme-text-scale,1));
  line-height: 1.5;
  min-height: 50px;
  margin-top: 8px;
}
input:disabled {
  background: var(--cream) !important;
  color: var(--muted);
}
input::placeholder,
textarea::placeholder {
  color: #7b857c;
  font-size: calc(0.95rem * var(--theme-text-scale,1));
}
textarea {
  resize: vertical;
  min-height: 100px;
}
label small {
  font-weight: 400;
  margin-top: 8px;
}
.password-field {
  position: relative;
}
.password-field input {
  padding-right: 75px !important;
}
.password-field button {
  position: absolute;
  top: 8px;
  right: 8px;
  bottom: 8px;
  background: none;
  border: 0;
  font-size: calc(0.85rem * var(--theme-text-scale,1));
  color: var(--green);
  padding: 0 10px;
}
.checkbox-row {
  display: flex;
  gap: calc(12px * var(--theme-gap-scale,1));
  align-items: start;
  line-height: 1.55;
  font-size: calc(0.9rem * var(--theme-text-scale,1));
  font-weight: 400;
}
.checkbox-row input {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin: 3px 0 0;
  accent-color: var(--green);
}
.checkbox-row a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.checkbox-row small {
  margin-top: 5px;
}
.auth-switch {
  font-size: calc(0.9rem * var(--theme-text-scale,1)) !important;
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 30px;
}
.auth-switch a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.small-link {
  font-size: calc(0.88rem * var(--theme-text-scale,1));
  margin-top: 18px;
}
.google {
  background: white;
  color: var(--green);
  width: 100%;
  margin-top: 12px;
  border-color: var(--line);
}
.google:hover {
  background: var(--cream);
}
.google span {
  font-weight: 600;
}
.form-divider {
  display: flex;
  gap: calc(15px * var(--theme-gap-scale,1));
  align-items: center;
  margin: 25px 0 0;
  font-size: calc(0.85rem * var(--theme-text-scale,1));
  color: var(--muted);
}
.form-divider:before,
.form-divider:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.resend {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: calc(5px * var(--theme-gap-scale,1)) calc(15px * var(--theme-gap-scale,1));
  font-size: calc(0.85rem * var(--theme-text-scale,1));
}
.code-input {
  font-size: calc(1.65rem * var(--theme-text-scale,1)) !important;
  letter-spacing: 0.3em;
}
.form-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: calc(16px * var(--theme-radius-scale,1));
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: calc(23px * var(--theme-gap-scale,1));
  margin-top: 30px;
}
.form-panel > h2 {
  font-size: calc(2rem * var(--theme-heading-scale,1));
  margin-top: 10px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: calc(23px * var(--theme-gap-scale,1));
}
.form-panel p {
  margin-bottom: 0;
}
.form-panel fieldset {
  border: 0;
  padding: 0;
  margin: 7px 0;
}
.form-panel legend,
.stack-form legend {
  font-size: calc(1.05rem * var(--theme-text-scale,1));
  margin-bottom: 18px;
}
.stack-form fieldset {
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: calc(8px * var(--theme-radius-scale,1));
}
.interest-choices {
  display: flex;
  flex-wrap: wrap;
  gap: calc(12px * var(--theme-gap-scale,1));
}
.choice {
  position: relative;
}
.choice input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.choice span {
  display: flex;
  gap: calc(12px * var(--theme-gap-scale,1));
  align-items: center;
  padding: 13px 17px;
  border: 1px solid var(--line);
  border-radius: calc(8px * var(--theme-radius-scale,1));
  cursor: pointer;
  font-size: calc(0.9rem * var(--theme-text-scale,1));
}
.choice input:checked + span {
  background: var(--green);
  border-color: var(--green);
  color: white;
}
.choice input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
.choice b {
  font-size: calc(1.3rem * var(--theme-text-scale,1));
  font-weight: 400;
}
.optional {
  font-weight: 400;
  font-size: calc(0.8rem * var(--theme-text-scale,1));
  color: var(--muted);
  margin-left: 10px;
}
.dashboard-intentions .intention {
  padding: 20px;
  gap: calc(16px * var(--theme-gap-scale,1));
}
.dashboard-intentions .intention > span:last-child {
  position: absolute;
  right: 17px;
  top: 23px;
  font-size: calc(0.9rem * var(--theme-text-scale,1));
}
.dashboard-columns {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: calc(50px * var(--theme-gap-scale,1));
  margin-top: 70px;
}
.dashboard-columns h2 {
  font-size: calc(2rem * var(--theme-heading-scale,1));
}
.plan-card {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: calc(23px * var(--theme-gap-scale,1));
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: calc(12px * var(--theme-radius-scale,1));
  background: white;
}
.plan-card > img {
  width: 145px;
  height: 145px;
  object-fit: cover;
  border-radius: calc(8px * var(--theme-radius-scale,1));
}
.plan-card h3 {
  margin: 12px 0;
}
.plan-card p {
  font-size: calc(0.9rem * var(--theme-text-scale,1));
  color: var(--muted);
}
.plan-card .button-row {
  gap: calc(12px * var(--theme-gap-scale,1));
}
.plan-card .inline-link {
  font-size: calc(0.85rem * var(--theme-text-scale,1));
}
.cancel-details {
  margin: 0;
}
.circle-row {
  display: flex;
  gap: calc(18px * var(--theme-gap-scale,1));
  align-items: center;
  border: 1px solid var(--line);
  padding: 17px;
  border-radius: calc(10px * var(--theme-radius-scale,1));
  background: white;
}
.circle-row img {
  width: 62px;
  height: 62px;
  border-radius: calc(10px * var(--theme-radius-scale,1));
  object-fit: cover;
}
.circle-row span:last-child {
  margin-left: auto;
}
.circle-row small {
  margin-top: 4px;
  font-size: calc(0.8rem * var(--theme-text-scale,1));
}
.wide-link {
  display: flex;
  justify-content: space-between;
  gap: calc(20px * var(--theme-gap-scale,1));
  font-size: calc(0.95rem * var(--theme-text-scale,1));
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  margin-top: 20px;
}
.member-card {
  max-width: 600px;
  margin: 45px auto;
  background: var(--green);
  color: var(--cream);
  border: 1px solid #8fa88e;
  padding: 43px;
  border-radius: calc(20px * var(--theme-radius-scale,1));
  box-shadow: 0 20px 35px #19332813;
  position: relative;
  overflow: hidden;
}
.member-card .wordmark {
  color: var(--cream);
  font-size: calc(2.5rem * var(--theme-text-scale,1));
}
.member-card .eyebrow {
  color: #ddbf90;
  margin: 55px 0 14px;
  font-size: calc(0.75rem * var(--theme-text-scale,1));
}
.member-card h2 {
  color: var(--cream);
  font-size: calc(2.25rem * var(--theme-heading-scale,1));
  letter-spacing: -0.025em;
}
.membership-meta {
  display: flex;
  justify-content: space-between;
  gap: calc(30px * var(--theme-gap-scale,1));
  flex-wrap: wrap;
  margin-top: 40px;
  font-size: calc(0.8rem * var(--theme-text-scale,1));
  color: #cedecc;
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(25px * var(--theme-gap-scale,1));
}
.person-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: white;
  border-radius: calc(14px * var(--theme-radius-scale,1));
}
.person-card h2 {
  font-family: var(--serif);
  font-size: calc(1.8rem * var(--theme-heading-scale,1));
  margin: 20px 0 8px;
}
.person-card > p:not(.meta) {
  font-size: calc(1rem * var(--theme-text-scale,1));
  min-height: 55px;
}
.opportunity {
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.opportunity h2 {
  font-size: calc(2rem * var(--theme-heading-scale,1));
  margin: 20px 0 10px;
}
.opportunity .prose {
  font-size: calc(1rem * var(--theme-text-scale,1));
}
.opportunity summary {
  cursor: pointer;
}
.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(30px * var(--theme-gap-scale,1));
  padding: 23px;
  border: 1px solid var(--line);
  background: white;
  border-radius: calc(12px * var(--theme-radius-scale,1));
}
.list-row h2 {
  font-size: calc(1.75rem * var(--theme-heading-scale,1));
  margin: 12px 0;
}
.list-row h3 {
  font-size: calc(1.1rem * var(--theme-heading-scale,1));
  margin-bottom: 6px;
}
.list-row p {
  margin: 0;
  font-size: calc(0.9rem * var(--theme-text-scale,1));
  color: var(--muted);
}
.account-menu {
  position: relative;
}
.account-menu summary {
  display: flex;
  align-items: center;
  gap: calc(9px * var(--theme-gap-scale,1));
  cursor: pointer;
  list-style: none;
}
.account-menu summary::-webkit-details-marker {
  display: none;
}
.account-dropdown {
  position: absolute;
  right: 0;
  top: 50px;
  min-width: 210px;
  background: white;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: calc(10px * var(--theme-radius-scale,1));
  box-shadow: 0 8px 30px #1a35251a;
}
.account-dropdown > a,
.account-dropdown button {
  display: block;
  padding: 10px 12px;
  font-size: calc(0.9rem * var(--theme-text-scale,1));
}
.account-dropdown > a:hover {
  background: var(--cream);
}
.flash {
  max-width: 1100px;
  margin: 20px auto 0;
  width: calc(100% - 40px);
  background: #e7f0e5;
  color: var(--green);
  border: 1px solid #c3d5be;
  border-radius: calc(9px * var(--theme-radius-scale,1));
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: calc(15px * var(--theme-gap-scale,1));
  font-size: calc(0.95rem * var(--theme-text-scale,1));
}
.flash button {
  background: none;
  border: 0;
  font-size: calc(1.4rem * var(--theme-text-scale,1));
  color: var(--green);
}
.flash.error {
  background: #fff0e8;
}
.admin-body {
  background: #f7f8f4;
}
.admin-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: calc(45px * var(--theme-gap-scale,1));
  padding: 45px 0 75px;
}
.admin-sidebar {
  padding: 15px 0;
  align-self: start;
  position: sticky;
  top: 120px;
}
.admin-sidebar > a {
  display: block;
  padding: 11px 15px;
  font-size: calc(0.87rem * var(--theme-text-scale,1));
  border-radius: calc(7px * var(--theme-radius-scale,1));
}
.admin-sidebar > a:hover,
.admin-sidebar > a.selected {
  background: var(--green-light);
  color: var(--green);
}
.admin-sidebar .eyebrow {
  font-size: calc(0.7rem * var(--theme-text-scale,1));
  margin-left: 15px;
}
.admin-main > .page-title {
  font-size: calc(2.8rem * var(--theme-title-scale,1));
  margin-bottom: 35px;
}
.admin-main > .eyebrow {
  margin-bottom: 15px;
}
.admin-main > .form-panel {
  margin-top: 20px;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: calc(16px * var(--theme-gap-scale,1));
}
.stat {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: calc(12px * var(--theme-radius-scale,1));
  background: white;
}
.stat span {
  font-size: calc(0.85rem * var(--theme-text-scale,1));
  color: var(--muted);
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: calc(2.7rem * var(--theme-text-scale,1));
  line-height: 1.4;
  font-weight: 400;
  color: var(--green);
}
.table-scroll {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: calc(10px * var(--theme-radius-scale,1));
  background: white;
}
.table-scroll table {
  border-collapse: collapse;
  width: 100%;
  font-size: calc(0.87rem * var(--theme-text-scale,1));
  text-align: left;
}
.table-scroll th,
.table-scroll td {
  padding: 14px 17px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  overflow-wrap: anywhere;
  min-width: 120px;
}
.table-scroll th {
  background: var(--green-light);
  font-weight: 600;
}
.table-scroll td:last-child,
.table-scroll th:last-child {
  min-width: 180px;
}
.table-scroll tr:last-child td {
  border-bottom: 0;
}
.copy-value {
  display: block;
  background: var(--cream);
  font-size: calc(0.9rem * var(--theme-text-scale,1));
  padding: 15px;
  border-radius: calc(6px * var(--theme-radius-scale,1));
  overflow-wrap: anywhere;
}
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(20px * var(--theme-gap-scale,1));
}
.media-grid article {
  border: 1px solid var(--line);
  padding: 12px;
  background: white;
  border-radius: calc(10px * var(--theme-radius-scale,1));
}
.media-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: calc(6px * var(--theme-radius-scale,1));
  margin-bottom: 10px;
}
.media-grid strong {
  font-size: calc(0.88rem * var(--theme-text-scale,1));
}
.media-grid code {
  display: block;
  font-size: calc(0.72rem * var(--theme-text-scale,1));
  overflow-wrap: anywhere;
  color: var(--muted);
  margin-top: 6px;
}
.person-admin {
  background: white;
  border: 1px solid var(--line);
  border-radius: calc(12px * var(--theme-radius-scale,1));
  padding: 25px;
}
.person-admin h2 {
  font-size: calc(1.75rem * var(--theme-heading-scale,1));
  margin-bottom: 10px;
}
.person-admin p {
  font-size: calc(0.95rem * var(--theme-text-scale,1));
  margin-bottom: 8px;
}
.person-admin details {
  border-top: 1px solid var(--line);
  margin-top: 15px;
  padding-top: 10px;
}
.person-admin summary {
  cursor: pointer;
  color: var(--green);
  padding: 8px 0;
}
.error-page {
  text-align: center;
  min-height: 480px;
}
.error-number {
  font-family: var(--serif);
  font-size: calc(5rem * var(--theme-text-scale,1));
  color: var(--gold);
}
.error-page .lead {
  margin: 25px auto;
}
.error-page .meta {
  margin-top: 25px;
}
.mobile-bottom {
  display: none;
}
.sr-only,
.skip-link:not(:focus),
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  left: 20px;
  top: 10px;
  z-index: 200;
  background: white;
  color: var(--green);
  padding: 12px 22px;
}
.is-busy {
  opacity: 0.7;
  cursor: wait;
}
@media (min-width: 1450px) {
  .hero-visual > img {
    height: 570px;
  }
  .hero {
    padding-top: calc(80px * var(--theme-section-scale,1));
    padding-bottom: calc(85px * var(--theme-section-scale,1));
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 60px);
  }
  .header-inner {
    padding: 20px 30px;
    gap: calc(25px * var(--theme-gap-scale,1));
  }
  .header-inner nav {
    gap: calc(20px * var(--theme-gap-scale,1));
  }
  .header-actions {
    gap: calc(17px * var(--theme-gap-scale,1));
  }
  .hero {
    gap: calc(35px * var(--theme-gap-scale,1));
  }
  .hero h1 {
    font-size: calc(3.7rem * var(--theme-title-scale,1));
  }
  .hero-visual > img {
    height: 500px;
  }
  .hero .button-row {
    gap: calc(16px * var(--theme-gap-scale,1));
  }
  .photo-note {
    left: -20px;
    padding: 18px;
  }
  .intention-grid {
    gap: calc(12px * var(--theme-gap-scale,1));
  }
  .intention {
    padding: 22px 15px;
  }
  .intention strong {
    font-size: calc(0.9rem * var(--theme-text-scale,1));
  }
  .feature-band > div {
    padding: 45px 35px;
  }
  .card-image img {
    height: 220px;
  }
  .site-footer {
    padding-left: 30px;
    padding-right: 30px;
  }
  .footer-top {
    gap: calc(30px * var(--theme-gap-scale,1));
  }
  .collection-hero {
    gap: calc(45px * var(--theme-gap-scale,1));
  }
  .admin-shell {
    gap: calc(25px * var(--theme-gap-scale,1));
    grid-template-columns: 180px minmax(0, 1fr);
  }
  .auth-panel {
    padding: 55px 9%;
  }
  .auth-photo > div {
    left: 35px;
  }
  .detail-hero {
    gap: calc(40px * var(--theme-gap-scale,1));
  }
  .detail-hero h1 {
    font-size: calc(2.9rem * var(--theme-title-scale,1));
  }
  .dashboard-columns {
    gap: calc(30px * var(--theme-gap-scale,1));
  }
  .plan-card {
    grid-template-columns: 100px 1fr;
    padding: 17px;
    gap: calc(18px * var(--theme-gap-scale,1));
  }
  .plan-card > img {
    width: 100px;
    height: 115px;
  }
  .stat {
    padding: 18px;
  }
  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
    gap: calc(18px * var(--theme-gap-scale,1));
  }
  .header-inner nav {
    display: none;
    order: 4;
    width: 100%;
    margin: 0;
    padding: 15px 0 0;
    border-top: 1px solid var(--line);
    gap: calc(15px * var(--theme-gap-scale,1)) calc(30px * var(--theme-gap-scale,1));
    flex-wrap: wrap;
  }
  .header-inner nav.is-open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  .header-actions {
    margin-left: 0;
  }
  .header-inner nav a {
    font-size: calc(1rem * var(--theme-text-scale,1));
    min-height: 40px;
  }
  .hero {
    gap: calc(30px * var(--theme-gap-scale,1));
  }
  .hero h1 {
    font-size: calc(3.3rem * var(--theme-title-scale,1));
  }
  .hero-visual > img {
    height: 465px;
  }
  .hero-note {
    max-width: 240px;
  }
  .hero-copy .eyebrow {
    font-size: calc(0.68rem * var(--theme-text-scale,1));
  }
  .intention-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .intention {
    gap: calc(15px * var(--theme-gap-scale,1));
  }
  .card-grid {
    gap: calc(22px * var(--theme-gap-scale,1));
  }
  .card-image img {
    height: 185px;
  }
  .card-copy h3 {
    font-size: calc(1.45rem * var(--theme-heading-scale,1));
  }
  .feature-band > img {
    min-height: 410px;
  }
  .feature-band h2 {
    font-size: calc(2.3rem * var(--theme-heading-scale,1));
  }
  .feature-band > div {
    padding: 35px 30px;
  }
  .discussion-layout {
    grid-template-columns: 1.5fr 1fr;
    gap: calc(30px * var(--theme-gap-scale,1));
  }
  .article-cover {
    width: calc(100% - 60px);
    height: 410px;
  }
  .article-heading h1 {
    font-size: calc(3.2rem * var(--theme-title-scale,1));
  }
  .admin-shell {
    display: block;
  }
  .admin-sidebar {
    position: static;
    display: flex;
    gap: calc(8px * var(--theme-gap-scale,1));
    flex-wrap: wrap;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
  }
  .admin-sidebar .eyebrow {
    width: 100%;
    margin: 0 0 5px;
  }
  .admin-sidebar > a {
    background: white;
    border: 1px solid var(--line);
    font-size: calc(0.83rem * var(--theme-text-scale,1));
    padding: 8px 12px;
  }
  .auth-layout {
    grid-template-columns: 0.85fr 1fr;
  }
  .auth-panel {
    padding: 50px 35px;
  }
  .auth-panel h1 {
    font-size: calc(2.65rem * var(--theme-title-scale,1));
  }
  .auth-photo h2 {
    font-size: calc(2.7rem * var(--theme-heading-scale,1));
  }
  .dashboard-columns {
    grid-template-columns: 1fr;
  }
  .dashboard-intentions {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
  .dashboard-intentions .intention {
    padding: 17px 12px;
  }
  .dashboard-intentions .intention strong {
    font-size: calc(0.85rem * var(--theme-text-scale,1));
  }
  .page-content:has(.form-panel) {
    gap: calc(35px * var(--theme-gap-scale,1));
  }
  .form-panel {
    padding: 27px;
  }
  .collection-hero > img {
    height: 310px;
  }
  .detail-hero > img {
    height: 370px;
  }
  .detail-hero h1 {
    font-size: calc(2.6rem * var(--theme-title-scale,1));
  }
}
@media (max-width: 680px) {
  body {
    font-size: calc(1rem * var(--theme-text-scale,1));
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .section {
    padding-top: calc(45px * var(--theme-section-scale,1));
    padding-bottom: calc(50px * var(--theme-section-scale,1));
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > .inline-link,
  .section-heading > .button,
  .section-heading > p {
    margin-top: 20px;
  }
  .section-heading p {
    max-width: none;
  }
  .section-heading h2 br {
    display: none;
  }
  .header-inner {
    padding: 18px 20px;
    gap: calc(8px * var(--theme-gap-scale,1));
  }
  .wordmark {
    font-size: calc(1.95rem * var(--theme-text-scale,1));
  }
  .menu-toggle {
    font-size: calc(0.8rem * var(--theme-text-scale,1));
    padding: 8px;
  }
  .header-actions {
    gap: calc(12px * var(--theme-gap-scale,1));
  }
  .header-actions .login-link {
    font-size: calc(0.85rem * var(--theme-text-scale,1));
  }
  .header-actions > .button {
    display: none;
  }
  .account-label {
    display: none;
  }
  .header-inner nav {
    gap: calc(10px * var(--theme-gap-scale,1)) calc(26px * var(--theme-gap-scale,1));
  }
  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-top: calc(42px * var(--theme-section-scale,1));
    padding-bottom: calc(40px * var(--theme-section-scale,1));
    gap: calc(32px * var(--theme-gap-scale,1));
  }
  .hero-copy {
    padding: 0;
  }
  .hero-copy .eyebrow {
    font-size: calc(0.73rem * var(--theme-text-scale,1));
  }
  .hero h1 {
    font-size: calc(3.3rem * var(--theme-title-scale,1));
    max-width: 430px;
  }
  .hero .lead {
    font-size: calc(1.05rem * var(--theme-text-scale,1));
    margin: 24px 0;
    max-width: 460px;
  }
  .hero-note {
    max-width: none;
    margin-top: 21px;
    font-size: calc(0.78rem * var(--theme-text-scale,1));
  }
  .hero-visual {
    margin-left: 12px;
  }
  .hero-visual > img {
    height: 360px;
    border-top-left-radius: 70px;
    object-position: center;
  }
  .photo-note {
    left: -12px;
    bottom: 20px;
    padding: 16px 20px;
  }
  .photo-note > span {
    font-size: calc(2rem * var(--theme-text-scale,1));
  }
  .photo-note div {
    font-size: calc(0.95rem * var(--theme-text-scale,1));
  }
  .photo-note em {
    font-size: calc(1.25rem * var(--theme-text-scale,1));
  }
  .intention-section {
    padding: 40px 0;
  }
  .intention-section h2 {
    font-size: calc(2.25rem * var(--theme-heading-scale,1));
  }
  .intention-section h2 br {
    display: none;
  }
  .intention-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .intention {
    padding: 20px;
    gap: calc(17px * var(--theme-gap-scale,1));
  }
  .intention:last-child {
    grid-column: 1/-1;
    flex-direction: row;
    align-items: center;
    gap: calc(17px * var(--theme-gap-scale,1));
  }
  .intention:last-child .arrow {
    position: static;
    margin-left: auto;
  }
  .intention strong {
    font-size: calc(0.9rem * var(--theme-text-scale,1));
    max-width: none;
  }
  .intention small {
    font-size: calc(0.8rem * var(--theme-text-scale,1));
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: calc(32px * var(--theme-gap-scale,1));
  }
  .card-image img {
    height: 280px;
  }
  .card-copy {
    padding-top: 20px;
  }
  .card-copy h3 {
    font-size: calc(1.7rem * var(--theme-heading-scale,1));
  }
  .card-copy p {
    font-size: calc(1rem * var(--theme-text-scale,1));
  }
  .feature-band {
    display: flex;
    flex-direction: column;
    border-radius: calc(14px * var(--theme-radius-scale,1));
  }
  .feature-band > img {
    height: 300px;
    min-height: 0;
  }
  .feature-band > div {
    padding: 38px 28px;
  }
  .feature-band h2 {
    font-size: calc(2.55rem * var(--theme-heading-scale,1));
  }
  .closing-note {
    padding: 30px 0 55px;
  }
  .closing-note h2 br {
    display: none;
  }
  .closing-note h2 {
    font-size: calc(2rem * var(--theme-heading-scale,1));
  }
  .site-footer {
    padding: 45px 25px 25px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: calc(35px * var(--theme-gap-scale,1)) calc(25px * var(--theme-gap-scale,1));
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: calc(20px * var(--theme-gap-scale,1));
  }
  .footer-top > div:first-child p {
    font-size: calc(1.2rem * var(--theme-text-scale,1));
    margin: 0;
  }
  .footer-top .eyebrow {
    font-size: calc(0.7rem * var(--theme-text-scale,1));
    margin-bottom: 12px;
  }
  .footer-bottom {
    display: block;
    font-size: calc(0.75rem * var(--theme-text-scale,1));
  }
  .footer-bottom > span {
    display: block;
    margin-bottom: 10px;
  }
  .collection-hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: calc(30px * var(--theme-gap-scale,1));
    padding-top: calc(40px * var(--theme-section-scale,1));
    padding-bottom: calc(20px * var(--theme-section-scale,1));
  }
  .collection-hero h1 {
    font-size: calc(2.8rem * var(--theme-title-scale,1));
  }
  .collection-hero > img {
    height: 280px;
    border-top-left-radius: 50px;
  }
  .collection-hero .eyebrow {
    margin-bottom: 18px;
  }
  .collection-hero .lead {
    margin-top: 20px;
  }
  .filters {
    gap: calc(15px * var(--theme-gap-scale,1));
    padding-bottom: 23px;
    margin-bottom: 30px;
  }
  .filter-chips {
    gap: calc(8px * var(--theme-gap-scale,1));
  }
  .chip {
    font-size: calc(0.82rem * var(--theme-text-scale,1));
    padding: 10px 14px;
    min-height: 44px;
  }
  .inline-field {
    flex-wrap: wrap;
  }
  .inline-field .button {
    font-size: calc(0.88rem * var(--theme-text-scale,1));
    min-height: 50px;
  }
  .inline-field input {
    margin-top: 0 !important;
  }
  .inline-field .button {
    flex: 0 0 auto;
  }
  .page-title {
    font-size: calc(2.7rem * var(--theme-title-scale,1));
  }
  .empty-state {
    padding: 38px 20px;
  }
  .empty-state h2 {
    font-size: calc(2rem * var(--theme-heading-scale,1));
  }
  .discovery-note {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 40px;
  }
  .discovery-note img {
    height: 260px;
  }
  .discovery-note > div {
    padding: 30px 25px;
  }
  .discovery-note h2 {
    font-size: calc(2.1rem * var(--theme-heading-scale,1));
  }
  .subsection {
    margin-top: 42px;
  }
  .page-content:has(.form-panel),
  .discussion-layout {
    grid-template-columns: 1fr;
    gap: calc(35px * var(--theme-gap-scale,1));
  }
  .page-content {
    padding-top: 20px;
  }
  .prose {
    font-size: calc(1.06rem * var(--theme-text-scale,1));
  }
  .page-content .form-panel {
    margin-top: 0;
  }
  .soft-note {
    padding: 25px;
  }
  .auth-layout {
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
  }
  .auth-panel {
    padding: 45px 25px 50px;
  }
  .auth-panel h1 {
    font-size: calc(2.8rem * var(--theme-title-scale,1));
  }
  .auth-photo {
    height: 250px;
  }
  .auth-photo > div {
    left: 25px;
    bottom: 30px;
  }
  .auth-photo h2 {
    font-size: calc(2.4rem * var(--theme-heading-scale,1));
  }
  .auth-photo .eyebrow {
    display: none;
  }
  .auth-photo img {
    height: 250px;
    object-position: center 40%;
  }
  .form-panel {
    padding: 25px;
    gap: calc(22px * var(--theme-gap-scale,1));
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: calc(20px * var(--theme-gap-scale,1));
  }
  .interest-choices {
    gap: calc(10px * var(--theme-gap-scale,1));
  }
  .choice span {
    font-size: calc(0.86rem * var(--theme-text-scale,1));
    padding: 12px 14px;
  }
  .dashboard-intentions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dashboard-intentions .intention {
    padding: 20px;
  }
  .dashboard-intentions .intention strong {
    font-size: calc(0.9rem * var(--theme-text-scale,1));
  }
  .dashboard-intentions .intention:last-child > span:last-child {
    position: static;
    margin-left: auto;
  }
  .dashboard-columns {
    margin-top: 45px;
    gap: calc(38px * var(--theme-gap-scale,1));
  }
  .dashboard-columns .section-heading {
    display: flex;
    gap: calc(15px * var(--theme-gap-scale,1));
    align-items: center;
  }
  .dashboard-columns .section-heading > .inline-link {
    margin: 0;
  }
  .plan-card {
    grid-template-columns: 90px 1fr;
    gap: calc(15px * var(--theme-gap-scale,1));
    padding: 15px;
  }
  .plan-card > img {
    width: 90px;
    height: 115px;
  }
  .plan-card h3 {
    font-size: calc(1.1rem * var(--theme-heading-scale,1));
  }
  .detail-hero {
    grid-template-columns: 1fr;
    gap: calc(32px * var(--theme-gap-scale,1));
    margin-bottom: 45px;
  }
  .detail-hero > img {
    height: 290px;
  }
  .detail-hero h1 {
    font-size: calc(2.85rem * var(--theme-title-scale,1));
  }
  .detail-hero .lead {
    font-size: calc(1.05rem * var(--theme-text-scale,1));
  }
  .discussion-layout .soft-note {
    order: 2;
  }
  .composer-footer {
    flex-wrap: wrap;
    gap: calc(15px * var(--theme-gap-scale,1));
  }
  .post-composer,
  .conversation {
    padding: 22px;
  }
  .article-heading {
    padding-top: 40px;
    padding-bottom: 30px;
    text-align: left;
  }
  .article-heading h1 {
    font-size: calc(2.85rem * var(--theme-title-scale,1));
  }
  .article-heading .lead {
    font-size: calc(1.1rem * var(--theme-text-scale,1));
  }
  .article-cover {
    width: calc(100% - 40px);
    height: 300px;
  }
  .article-body {
    margin: 35px auto;
  }
  .article-body p:first-child {
    font-size: calc(1.2rem * var(--theme-text-scale,1));
  }
  .member-card {
    padding: 30px 27px;
    border-radius: calc(16px * var(--theme-radius-scale,1));
    margin: 35px auto;
  }
  .member-card .wordmark {
    font-size: calc(2.2rem * var(--theme-text-scale,1));
  }
  .member-card .eyebrow {
    margin-top: 40px;
  }
  .member-card h2 {
    font-size: calc(2rem * var(--theme-heading-scale,1));
  }
  .membership-meta {
    font-size: calc(0.78rem * var(--theme-text-scale,1));
    gap: calc(10px * var(--theme-gap-scale,1));
    margin-top: 30px;
  }
  .people-grid {
    grid-template-columns: 1fr;
  }
  .person-card {
    padding: 25px;
  }
  .list-row {
    padding: 20px;
    flex-wrap: wrap;
    gap: calc(20px * var(--theme-gap-scale,1));
  }
  .list-row .button {
    min-height: 44px;
  }
  .person-admin {
    padding: 22px;
  }
  .admin-shell {
    padding-top: 30px;
    padding-bottom: 50px;
  }
  .admin-main > .page-title {
    font-size: calc(2.5rem * var(--theme-title-scale,1));
    margin-bottom: 25px;
  }
  .admin-sidebar {
    gap: calc(7px * var(--theme-gap-scale,1));
    margin-bottom: 25px;
  }
  .admin-sidebar > a {
    font-size: calc(0.78rem * var(--theme-text-scale,1));
    min-height: 40px;
  }
  .stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(13px * var(--theme-gap-scale,1));
  }
  .stat {
    padding: 21px;
  }
  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(14px * var(--theme-gap-scale,1));
  }
  .media-grid img {
    height: 145px;
  }
  .table-scroll table {
    font-size: calc(0.83rem * var(--theme-text-scale,1));
  }
  .error-page h1 {
    font-size: calc(2.7rem * var(--theme-title-scale,1));
  }
  .button-row {
    gap: calc(15px * var(--theme-gap-scale,1));
  }
  .error-page .button-row {
    flex-direction: column;
  }
  .mobile-bottom {
    display: flex;
    position: sticky;
    bottom: 0;
    z-index: 60;
    background: var(--paper);
    box-shadow: 0 -3px 16px #1933280a;
    border-top: 1px solid var(--line);
    justify-content: space-around;
    padding: 12px 5px calc(12px + env(safe-area-inset-bottom));
  }
  .mobile-bottom a {
    font-size: calc(0.82rem * var(--theme-text-scale,1));
    padding: 8px 10px;
    color: var(--green);
    font-weight: 500;
  }
  .section-heading .lead {
    margin-bottom: 0;
  }
}
@media (max-width: 380px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .header-inner {
    padding: 16px;
    gap: calc(4px * var(--theme-gap-scale,1));
  }
  .wordmark {
    font-size: calc(1.7rem * var(--theme-text-scale,1));
  }
  .menu-toggle {
    padding: 6px;
    font-size: calc(0.75rem * var(--theme-text-scale,1));
  }
  .header-actions {
    gap: calc(8px * var(--theme-gap-scale,1));
  }
  .hero h1 {
    font-size: calc(2.9rem * var(--theme-title-scale,1));
  }
  .hero-visual > img {
    height: 300px;
  }
  .hero .button-row {
    gap: calc(12px * var(--theme-gap-scale,1));
  }
  .button {
    padding: 12px 19px;
    font-size: calc(0.9rem * var(--theme-text-scale,1));
    gap: calc(14px * var(--theme-gap-scale,1));
  }
  .card-image img {
    height: 230px;
  }
  .intention {
    padding: 17px 14px;
  }
  .intention .arrow {
    right: 14px;
  }
  .intention strong {
    font-size: calc(0.86rem * var(--theme-text-scale,1));
  }
  .intention small {
    font-size: calc(0.75rem * var(--theme-text-scale,1));
  }
  .collection-hero h1 {
    font-size: calc(2.55rem * var(--theme-title-scale,1));
  }
  .inline-field .button {
    width: 100%;
  }
  .form-panel {
    padding: 20px;
  }
  .plan-card {
    grid-template-columns: 1fr;
  }
  .plan-card > img {
    width: 100%;
    height: 180px;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    gap: calc(30px * var(--theme-gap-scale,1)) calc(20px * var(--theme-gap-scale,1));
  }
  .footer-top > div:first-child {
    display: block;
  }
  .footer-top > div:first-child p {
    margin-top: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  body {
    background: white;
  }
  .site-header,
  .site-footer,
  .mobile-bottom,
  .flash,
  .soft-note,
  .eyebrow,
  .page-title,
  .skip-link {
    display: none !important;
  }
  .member-card {
    display: block !important;
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    box-shadow: none;
    border: 2px solid var(--green);
  }
  .member-card .eyebrow {
    display: block !important;
  }
  .section {
    padding: 0;
  }
  .wrap {
    width: 100%;
  }
}

/* Approved Embrace 50 presentation, shared by men and women after 50. */
.hero h1 em { font-weight: 400; color: #52705d; }
.hero-visual > img { object-position: 53% center; }
.intention-icon svg { width: 31px; height: 31px; display: block; }
.nav-extra { display: none; }
.card-grid > .content-card { display: flex; flex-direction: column; }
.card-copy { flex: 1; display: flex; flex-direction: column; align-items: flex-start; }
.card-copy .inline-link { margin-top: auto; }
.detail-hero > img[src*="/images/creative.webp"],
.detail-hero > img[src*="/images/wellness.webp"],
.discovery-note > img[src*="/images/creative.webp"] { object-position: 20% center; }
.value-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: calc(30px * var(--theme-gap-scale,1)); margin-top: 42px; }
.value-grid > div { border-top: 1px solid #b9c7b8; padding: 25px 0; }
.value-grid h3 { margin: 14px 0; font-family: var(--serif); font-size: calc(1.65rem * var(--theme-heading-scale,1)); }
.value-grid p { color: var(--muted); font-size: calc(1rem * var(--theme-text-scale,1)); }
.value-number { font-family: var(--serif); color: var(--gold); font-size: calc(1.4rem * var(--theme-text-scale,1)); }
.about-values { padding-bottom: 65px; }
.page-content.about-content { max-width: 820px; padding-bottom: 55px; }
.about-content .prose > p:first-child { font-family: var(--serif); font-size: calc(clamp(1.6rem, 2.5vw, 2.25rem) * var(--theme-text-scale,1)); line-height: 1.45; color: var(--green); }
.page-content.membership-content { max-width: 1260px; display: grid; grid-template-columns: 1.25fr 1fr; gap: calc(65px * var(--theme-gap-scale,1)); align-items: center; }
.membership-content .member-card { width: 100%; margin: 0; }
.member-card::after { content: '✦'; position: absolute; right: -12px; bottom: -76px; font-size: calc(18rem * var(--theme-text-scale,1)); line-height: 1; color: #ddbf9016; pointer-events: none; }
.member-card h2 { color: var(--cream); position: relative; z-index: 1; }
.member-card .member-caption { font-size: calc(.875rem * var(--theme-text-scale,1)); color: #cbd7cd; margin-top: 14px; }
.member-card-link { display: inline-block; color: var(--cream); margin-top: 12px; font-size: calc(.95rem * var(--theme-text-scale,1)); text-decoration: underline; text-underline-offset: 6px; position: relative; z-index: 1; }
.dashboard-welcome { display: flex; align-items: center; gap: calc(20px * var(--theme-gap-scale,1)); }
.dashboard-welcome .avatar { width: 68px; height: 68px; font-size: calc(2rem * var(--theme-text-scale,1)); }
.dashboard-summary { display: flex; gap: calc(12px * var(--theme-gap-scale,1)); flex-wrap: wrap; margin: 25px 0 32px; }
.dashboard-summary span { background: var(--cream); border: 1px solid var(--line); border-radius: calc(8px * var(--theme-radius-scale,1)); padding: 8px 14px; font-size: calc(.875rem * var(--theme-text-scale,1)); }
.dashboard-summary strong { color: var(--green); margin-right: 4px; }
.dashboard-columns .soft-note { min-height: 230px; }
.circle-row { min-width: 0; }
.circle-row > span { min-width: 0; }
.circle-row strong { overflow-wrap: anywhere; }
.button-row > * { max-width: 100%; }
@media (max-width: 900px) {
  .nav-extra { display: inline !important; }
  .value-grid { gap: calc(24px * var(--theme-gap-scale,1)); }
  .page-content.membership-content { grid-template-columns: 1fr; gap: calc(35px * var(--theme-gap-scale,1)); }
  .membership-content .member-card { max-width: 580px; }
}
@media (max-width: 680px) {
  .hero h1 { font-size: calc(clamp(2.9rem, 12vw, 3.5rem) * var(--theme-title-scale,1)); }
  .hero-note { font-size: calc(.875rem * var(--theme-text-scale,1)); }
  .value-grid { grid-template-columns: 1fr; gap: calc(6px * var(--theme-gap-scale,1)); }
  .value-grid > div { padding: 22px 0 15px; }
  .dashboard-welcome { align-items: flex-start; gap: calc(14px * var(--theme-gap-scale,1)); }
  .dashboard-welcome .avatar { width: 46px; height: 46px; font-size: calc(1.5rem * var(--theme-text-scale,1)); margin-top: 7px; }
  .dashboard-welcome h1 { font-size: calc(2.5rem * var(--theme-title-scale,1)); }
  .dashboard-summary { gap: calc(8px * var(--theme-gap-scale,1)); }
  .dashboard-summary span { padding: 8px 11px; }
  .mobile-bottom { position: fixed; left: 0; right: 0; bottom: 0; }
  .mobile-bottom a.active { color: var(--green); font-weight: bold; background: var(--green-light); border-radius: calc(6px * var(--theme-radius-scale,1)); }
  body.has-member { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}
@media print { body.has-member { padding-bottom: 0; } }

/* Travel adds a primary destination; collapse the full menu before it crowds. */
@media (min-width:901px) and (max-width:1250px){
 .header-inner{flex-wrap:wrap;gap:calc(18px * var(--theme-gap-scale,1))}
 .header-inner nav{display:none;order:4;width:100%;margin:0;padding:15px 0 0;border-top:1px solid var(--line);gap:calc(15px * var(--theme-gap-scale,1)) calc(30px * var(--theme-gap-scale,1));flex-wrap:wrap}
 .header-inner nav.is-open{display:flex}
 .menu-toggle{display:flex;align-items:center;margin-left:auto}
 .header-actions{margin-left:0}
}
