/* ─── RESET & TOKENS ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #0c0b09;
  --bg-alt:       #141210;
  --bg-card:      #1c1917;
  --text:         #f0ebe3;
  --text-muted:   #8a8279;
  --text-dim:     #4a4540;
  --accent:       #c9a96e;
  --accent-hover: #e0c080;
  --border:       rgba(240,235,227,0.07);
  --border-mid:   rgba(240,235,227,0.12);
  --border-strong:rgba(240,235,227,0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 1rem;
  overflow-x: hidden;
}

/* ─── UTILITIES ───────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.75rem;
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0c0b09;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-large {
  padding: 1.1rem 2.8rem;
  font-size: 0.82rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── NAV ─────────────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 1.75rem 2.5rem;
  transition: background 0.4s ease, padding 0.35s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled {
  background: rgba(12, 11, 9, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 1.1rem 2.5rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(240,235,227,0.65);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent) !important;
  color: #0c0b09 !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}

/* ─── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,11,9,0.25) 0%,
    rgba(12,11,9,0.50) 45%,
    rgba(12,11,9,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
  padding: 0 2rem;
}
.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: block;
}
#hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7.5vw, 7rem);
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(240,235,227,0.72);
  max-width: 600px;
  margin: 0 auto 2.75rem;
  line-height: 1.8;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 2;
}
.hero-scroll span {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(240,235,227,0.38);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(240,235,227,0.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}

/* ─── STORY ───────────────────────────────────────────────── */
#story {
  padding: 9rem 0;
  background: var(--bg-alt);
  position: relative;
}
#story::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--border-mid));
}
.story-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.9rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--text);
  max-width: 800px;
  margin-bottom: 5rem;
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
}
.chapters {
  display: flex;
  flex-direction: column;
}
.chapter {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
  border-top: 1px solid var(--border);
}
.chapter:last-child { border-bottom: 1px solid var(--border); }
.chapter-num {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1;
  padding-top: 0.15rem;
}
.chapter-body h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1rem;
}
.chapter-body p {
  color: rgba(240,235,227,0.62);
  line-height: 1.88;
  max-width: 680px;
  font-size: 0.96rem;
}

/* ─── THE WORK ────────────────────────────────────────────── */
#work {
  padding: 9rem 0;
  background: var(--bg);
}
#work h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 0;  
}

.work-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 4.5rem;
}

.work-heading-photo {
  width: min(360px, 42vw);   /* wider than before */
  height: auto;              /* keep natural proportions */
  object-fit: contain;       /* no crop */
  border-radius: 6px;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .work-heading-photo {
    width: 100%;
    max-width: 360px;
    height: auto;
  }

  .work-heading-photo {
    width: 100%;
    max-width: 320px;
  }
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
}
.work-card {
  background: var(--bg);
  padding: 3.5rem 2.75rem;
  transition: background 0.3s;
  border-right: 1px solid var(--border);
}
.work-card:last-child { border-right: none; }
.work-card:hover { background: var(--bg-card); }
.work-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1.75rem;
  display: block;
}
.work-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.work-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.85;
}


/* ─── MONTANA RETREAT ─────────────────────────────────────── */
#retreat {
  position: relative;
  padding: 9rem 0;
  overflow: hidden;
}
.retreat-bg {
  position: absolute;
  inset: 0;
}
.retreat-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.2) saturate(0.7);
}
.retreat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,11,9,0.92) 0%,
    rgba(12,11,9,0.65) 100%
  );
}
.retreat-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.retreat-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0c0b09;
  background: var(--accent);
  padding: 0.35rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
#retreat h2 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
  margin-bottom: 0.75rem;
  margin-top: 0.25rem;
}
.retreat-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 3.5rem;
}
.retreat-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border-mid);
  margin-bottom: 3rem;
}
.retreat-detail {
  padding: 1.4rem 2rem;
  border-right: 1px solid var(--border-mid);
  border-bottom: 1px solid var(--border-mid);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.retreat-detail:nth-child(even) { border-right: none; }
.retreat-detail:nth-last-child(-n+2) { border-bottom: none; }
.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.detail-value {
  font-size: 0.97rem;
  color: var(--text);
}
.guest-facilitator {
  border-left: 2px solid var(--accent);
  padding: 1.75rem 2.25rem;
  margin-bottom: 3rem;
  background: rgba(201, 169, 110, 0.05);
}
.facilitator-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.facilitator-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.85rem;
}
.facilitator-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ─── PHILOSOPHY ──────────────────────────────────────────── */
#philosophy {
  padding: 9rem 0;
  background: var(--bg-alt);
}
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1rem;
}
.quote-card {
  background: var(--bg-alt);
  padding: 4.5rem 3.5rem;
  transition: background 0.3s;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-card:nth-child(even) { border-right: none; }
.quote-card:nth-last-child(-n+2) { border-bottom: none; }
.quote-card:hover { background: var(--bg-card); }
.quote-card blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
}

/* ─── COMMUNITY ───────────────────────────────────────────── */
#community {
  padding: 9rem 0;
  background: var(--bg);
}
#community h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.community-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 600px;
  margin-bottom: 4.5rem;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
}
.testimonial {
  background: var(--bg);
  padding: 3rem 2.75rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  transition: background 0.3s;
}
.testimonial:last-child { border-right: none; }
.testimonial:hover { background: var(--bg-card); }
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.78;
  color: var(--text);
  flex: 1;
}
.author-name {
  font-size: 0.77rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ─── WRITING ─────────────────────────────────────────────── */
#writing {
  padding: 9rem 0;
  background: var(--bg-alt);
}
#writing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 4.5rem;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
}
.article-card {
  background: var(--bg-alt);
  padding: 3.5rem 2.75rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.article-card:last-child { border-right: none; }
.article-card:hover { background: var(--bg-card); }
.article-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.article-card h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 1.1rem;
}
.article-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.85;
  flex: 1;
  margin-bottom: 2rem;
}
.article-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  align-self: flex-start;
}
.article-link:hover { color: var(--accent-hover); }

/* ─── APPLICATION ─────────────────────────────────────────── */
#apply {
  padding: 9rem 0;
  background: var(--bg);
}
#apply h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 1.5rem;
}
.apply-sub {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 560px;
  margin-bottom: 4rem;
}
.apply-form {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.label-optional {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.68rem;
  color: var(--text-dim);
}
.form-group input,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  padding: 0.95rem 1.3rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-dim);
}
.form-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: -0.5rem;
}
.form-success {
  display: none;
  max-width: 720px;
  text-align: center;
  padding: 4rem;
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
}
.form-success.visible { display: block; }
.success-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2.5rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-brand p {
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}
.footer-nav {
  display: flex;
  gap: 2.25rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  gap: 1.75rem;
}
.footer-social a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}
.footer-bottom p {
  font-size: 0.76rem;
  color: var(--text-dim);
}

/* ─── FADE-IN ANIMATION ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .work-grid {
    grid-template-columns: 1fr;
  }
  .work-card { border-right: none; border-bottom: 1px solid var(--border); }
  .work-card:last-child { border-bottom: none; }

  .testimonials {
    grid-template-columns: 1fr;
  }
  .testimonial { border-right: none; border-bottom: 1px solid var(--border); }
  .testimonial:last-child { border-bottom: none; }

  .articles-grid {
    grid-template-columns: 1fr;
  }
  .article-card { border-right: none; border-bottom: 1px solid var(--border); }
  .article-card:last-child { border-bottom: none; }

  .quotes-grid { grid-template-columns: 1fr; }
  .quote-card { border-right: none; }

  #experience {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px auto;
  }
  .exp-photo-1 { grid-column: 1; grid-row: 1; }
  .exp-photo-2 { grid-column: 2; grid-row: 1; }
  .exp-photo-3 { grid-column: 1; grid-row: 2; }
  .exp-photo-4 { grid-column: 2; grid-row: 2; }
  .exp-content {
    grid-column: 1 / 3;
    grid-row: 3;
    padding: 4rem 3rem;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 1.5rem; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(12,11,9,0.98);
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-menu-btn { display: flex; }

  #hero h1 { font-size: clamp(2.5rem, 10vw, 4rem); }

  .chapter { grid-template-columns: 48px 1fr; gap: 1.5rem; }

  #experience {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px auto;
  }
  .exp-content { padding: 3rem 2rem; }
  .exp-content h2 { font-size: 1.9rem; }

  .retreat-details {
    grid-template-columns: 1fr;
  }
  .retreat-detail { border-right: none !important; }
  .retreat-detail:not(:last-child) { border-bottom: 1px solid var(--border-mid) !important; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; gap: 2rem; }

  .testimonials { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  #experience {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 220px 220px 220px auto;
  }
  .exp-photo-1 { grid-column: 1; grid-row: 1; }
  .exp-photo-2 { grid-column: 1; grid-row: 2; }
  .exp-photo-3 { grid-column: 1; grid-row: 3; }
  .exp-photo-4 { grid-column: 1; grid-row: 4; }
  .exp-content { grid-column: 1; grid-row: 5; }
}

/* ─── MULTI-PAGE ADDITIONS ────────────────────────────────── */

/* NAV ACTIVE STATE */
.nav-active {
  color: var(--accent) !important;
}

/* COMMUNITY CTA */
.community-cta {
  margin-top: 4rem;
  text-align: center;
}

/* CARD LINK */
.card-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.card-link:hover { color: var(--accent-hover); }

/* ─── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 6rem;
  overflow: hidden;
}
.page-hero-sm {
  min-height: 50vh;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 860px;
  margin-top: 1rem;
}
.page-hero-content .hero-sub {
  margin: 1.5rem 0 0;
  max-width: 560px;
  text-align: left;
}

/* ─── STORY PAGE ──────────────────────────────────────────── */
.story-intro {
  padding: 7rem 0;
  background: var(--bg-alt);
}
.story-intro-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 6rem;
  align-items: start;
}
.story-portrait {
  position: sticky;
  top: 6rem;
}
.story-portrait img {
  width: 100%;
  border-radius: 2px;
  display: block;
  filter: grayscale(15%);
}
.story-lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 1.75rem;
}
.story-intro-text p {
  color: rgba(240,235,227,0.65);
  font-size: 0.97rem;
  line-height: 1.88;
  margin-bottom: 1.1rem;
  max-width: 640px;
}

#chapters {
  padding: 7rem 0;
  background: var(--bg);
}

/* ─── CREDENTIALS ─────────────────────────────────────────── */
.credentials {
  padding: 7rem 0;
  background: var(--bg-alt);
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 1.5rem;
}
.cred-item {
  background: var(--bg-alt);
  padding: 3rem 2.75rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.cred-item:nth-child(even) { border-right: none; }
.cred-item:nth-last-child(-n+2) { border-bottom: none; }
.cred-item:hover { background: var(--bg-card); }
.cred-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.cred-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ─── STORY / WRITING CTA ─────────────────────────────────── */
.story-cta {
  padding: 8rem 0;
  background: var(--bg);
  text-align: center;
}
.story-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.story-cta p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 3rem;
}
.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── RETREAT PAGE ────────────────────────────────────────── */
#events {
  padding: 8rem 0;
  background: var(--bg);
}
#events h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 4rem;
}

/* Featured event card */
.event-card {
  margin-bottom: 3rem;
  border: 1px solid var(--border-mid);
  background: var(--bg-card);
}
.event-card:last-child { margin-bottom: 0; }

.event-featured {
  display: grid;
  grid-template-columns: 480px 1fr;
}
.event-upcoming {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.event-card-media {
  position: relative;
  overflow: hidden;
}
.event-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.event-card:hover .event-card-media img { transform: scale(1.04); }

.event-card-media-sm {
  min-height: 260px;
}

.event-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--accent);
  color: #0c0b09;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}
.event-badge-muted {
  background: rgba(240,235,227,0.12);
  color: var(--text);
}

.event-card-body {
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.event-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.event-location,
.event-dates {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.event-dates { color: var(--accent); }

.event-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.event-subtitle {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.event-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.85;
  margin-bottom: 2rem;
  max-width: 580px;
}

.event-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
}
.event-detail {
  padding: 1rem 1.5rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.event-detail:nth-child(even) { border-right: none; }
.event-detail:nth-last-child(-n+2) { border-bottom: none; }

/* ─── WRITING PAGE ────────────────────────────────────────── */
#articles {
  padding: 7rem 0;
  background: var(--bg-alt);
}
.articles-grid-full {
  grid-template-columns: repeat(3, 1fr) !important;
}

/* ─── SELECT INPUT ────────────────────────────────────────── */
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  padding: 0.95rem 1.3rem;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8279' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  cursor: pointer;
}
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group select option {
  background: var(--bg-card);
  color: var(--text);
}

/* ─── RESPONSIVE — NEW PAGES ──────────────────────────────── */
@media (max-width: 1024px) {
  .event-featured { grid-template-columns: 1fr; }
  .event-upcoming { grid-template-columns: 1fr; }
  .event-card-media { min-height: 300px; }
  .event-card-body { padding: 2.5rem; }

  .story-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-portrait {
    position: static;
    max-width: 340px;
  }

  .cred-grid { grid-template-columns: 1fr; }
  .cred-item { border-right: none; }

  .articles-grid-full { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 768px) {
  .page-hero { min-height: 55vh; padding-bottom: 4rem; }
  .page-hero-sm { min-height: 45vh; }
  .page-hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }

  .event-details-grid { grid-template-columns: 1fr; }
  .event-detail { border-right: none !important; }

  .articles-grid-full { grid-template-columns: 1fr !important; }

  .story-cta { padding: 5rem 0; }
}
