/* ========================================
   Rich Routines — Landing (evergreen brand home)
   Layered on top of styles.css
   ======================================== */

body.landing { background: var(--cream); }

/* Nav CTA pill */
.site-nav .nav-cta {
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  padding: 8px 18px;
  border-radius: 999px;
  transition: all .2s ease;
}
.site-nav .nav-cta:hover { background: var(--terracotta); color: var(--cream-soft); }

/* ==================== HERO ==================== */
.l-hero {
  position: relative;
  height: 88vh;
  min-height: 640px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream-soft);
}
.l-hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}
.l-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,20,.10) 0%, rgba(26,22,20,.30) 45%, rgba(26,22,20,.82) 100%);
}
.l-hero-inner {
  position: relative;
  padding-bottom: var(--space-24);
  padding-top: var(--space-16);
  max-width: 940px;
}
.l-hero-eyebrow {
  font-size: 11px;
  letter-spacing: .42em;
  text-transform: uppercase;
  margin-bottom: var(--space-6);
  opacity: .88;
  font-weight: 500;
}
.l-hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 9vw, 118px);
  line-height: .98;
  letter-spacing: -0.01em;
  margin: 0 0 var(--space-8);
  text-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.l-hero-title span { display: block; }
.l-hero-title em { font-style: italic; color: var(--gold-warm); font-weight: 500; }

.l-hero-lede {
  font-size: 17px;
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: var(--space-8);
  opacity: 1;
  text-shadow: 0 1px 12px rgba(0,0,0,.35);
}

.l-hero-actions { display: flex; gap: var(--space-4); flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: all .22s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--terracotta);
  color: var(--cream-soft);
  border: 1px solid var(--terracotta);
}
.btn-primary:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); }
.btn-ghost {
  background: transparent;
  color: var(--cream-soft);
  border: 1px solid rgba(251, 246, 238, .55);
}
.btn-ghost:hover { background: rgba(251, 246, 238, .12); border-color: var(--cream-soft); }

/* ==================== ETHOS ==================== */
.l-ethos {
  padding: var(--space-32) 0 var(--space-24);
  background: var(--cream);
}
.l-ethos-wrap { max-width: 1120px; }
.l-ethos-label {
  font-size: 11px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: var(--space-6); font-weight: 500;
}
.l-ethos-headline {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.12; letter-spacing: -0.01em;
  color: var(--ink); margin: 0 0 var(--space-20);
  max-width: 880px;
}
.l-ethos-headline em { font-style: italic; color: var(--terracotta); font-weight: 500; }

.l-ethos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-16); }
.l-ethos-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 22px; color: var(--terracotta);
  margin-bottom: var(--space-4);
}
.l-ethos-item h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 24px; line-height: 1.2;
  color: var(--ink); margin: 0 0 var(--space-4);
}
.l-ethos-item p {
  font-size: 15px; line-height: 1.65;
  color: var(--charcoal-soft); margin: 0;
}

/* ==================== SECTION HEADS ==================== */
.l-section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-16); }
.l-section-label {
  font-size: 11px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: var(--space-4); font-weight: 500;
}
.l-section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 5.4vw, 68px);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ink); margin: 0 0 var(--space-4);
}
.l-section-title em { font-style: italic; color: var(--terracotta); font-weight: 500; }
.l-section-sub {
  font-size: 16px; line-height: 1.6;
  color: var(--charcoal-soft);
  max-width: 560px; margin: 0 auto;
}

/* ==================== UPCOMING ==================== */
.l-upcoming { padding: var(--space-24) 0 var(--space-32); background: var(--cream-soft); }
.l-events-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}
.l-event {
  display: flex; flex-direction: column;
  background: var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
}
.l-event:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.l-event-img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-warm); }
.l-event-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.l-event:hover .l-event-img img { transform: scale(1.04); }
.l-event-meta { padding: var(--space-6) 0 var(--space-8); }
.l-event-when {
  font-size: 10.5px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: var(--space-3); font-weight: 500;
}
.l-event-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 26px; line-height: 1.15;
  color: var(--ink); margin: 0 0 var(--space-3);
}
.l-event-desc {
  font-size: 14px; line-height: 1.6;
  color: var(--charcoal-soft); margin: 0 0 var(--space-4);
}
.l-event-cta {
  font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500;
}
.l-upcoming-note {
  text-align: center;
  margin-top: var(--space-16);
  font-size: 14px; color: var(--charcoal-soft);
  font-style: italic;
}
.l-upcoming-note a { color: var(--terracotta); font-style: normal; font-weight: 500; }

/* ==================== PRACTITIONERS ==================== */
.l-pract { padding: var(--space-32) 0; background: var(--cream); }
.l-pract-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--space-6);
  max-width: 1200px; margin: 0 auto;
}
.l-pract-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  transition: transform .25s ease;
}
.l-pract-card:hover { transform: translateY(-4px); }
.l-pract-img {
  width: 100%; aspect-ratio: 1/1;
  border-radius: 50%; overflow: hidden;
  background: var(--cream-warm);
  margin-bottom: var(--space-4);
}
.l-pract-img img { width: 100%; height: 100%; object-fit: cover; }
.l-pract-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 20px; color: var(--ink); margin-bottom: 4px;
}
.l-pract-role {
  font-size: 11px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500;
}

/* ==================== PAST EVENTS ==================== */
.l-past { padding: var(--space-24) 0 var(--space-32); background: var(--cream-warm); }
.l-past-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: var(--space-16);
  gap: var(--space-8);
}
.l-past-head .l-section-title { text-align: left; }
.l-past-head .l-section-label { margin-bottom: var(--space-3); }
.l-past-all {
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500;
  padding-bottom: 8px;
}
.l-past-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-8); }
.l-past-card {
  display: grid; grid-template-columns: 1.1fr 1fr;
  background: var(--cream-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .28s ease;
}
.l-past-card:hover { box-shadow: var(--shadow-md); }
.l-past-img { overflow: hidden; }
.l-past-img img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.l-past-meta { padding: var(--space-12); display: flex; flex-direction: column; justify-content: center; }
.l-past-date {
  font-size: 11px; letter-spacing: .38em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: var(--space-3); font-weight: 500;
}
.l-past-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 34px; line-height: 1.1;
  color: var(--ink); margin: 0 0 var(--space-4);
}
.l-past-desc {
  font-size: 15px; line-height: 1.65;
  color: var(--charcoal-soft); margin: 0 0 var(--space-6);
}
.l-past-cta {
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--terracotta); font-weight: 500;
}

/* ==================== JOIN ==================== */
.l-join { padding: var(--space-32) 0; background: var(--ink); color: var(--cream-soft); text-align: center; }
.l-join-wrap { max-width: 640px; }
.l-join-label {
  font-size: 11px; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold-warm); margin-bottom: var(--space-6); font-weight: 500;
}
.l-join-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(38px, 5.4vw, 68px); line-height: 1.05;
  margin: 0 0 var(--space-6); letter-spacing: -0.01em;
}
.l-join-title em { font-style: italic; color: var(--gold-warm); font-weight: 500; }
.l-join-sub {
  font-size: 16px; line-height: 1.65;
  opacity: .85; margin-bottom: var(--space-12);
}
.l-join-form {
  display: flex; gap: var(--space-3);
  max-width: 460px; margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}
.l-join-form input {
  flex: 1; min-width: 220px;
  background: transparent; color: var(--cream-soft);
  border: 1px solid rgba(251, 246, 238, .3);
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-body);
  font-size: 14px;
}
.l-join-form input::placeholder { color: rgba(251, 246, 238, .55); }
.l-join-form input:focus { outline: none; border-color: var(--gold-warm); }
.l-join-form button {
  background: var(--gold-warm); color: var(--ink);
  border: 1px solid var(--gold-warm);
  border-radius: 999px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 600; cursor: pointer;
  transition: all .2s ease;
}
.l-join-form button:hover { background: var(--gold); border-color: var(--gold); }
.l-join-ok {
  width: 100%;
  margin-top: var(--space-4);
  font-size: 14px; color: var(--gold-warm);
  font-style: italic;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px){
  .l-ethos-grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .l-events-grid { grid-template-columns: repeat(2, 1fr); }
  .l-pract-grid { grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
  .l-past-card { grid-template-columns: 1fr; }
  .l-past-img img { min-height: 260px; }
  .l-past-head { flex-direction: column; align-items: flex-start; }
  .l-ethos { padding: var(--space-24) 0 var(--space-16); }
  .l-upcoming, .l-pract, .l-past, .l-join { padding: var(--space-24) 0; }
}
@media (max-width: 620px){
  .l-events-grid { grid-template-columns: 1fr; }
  .l-pract-grid { grid-template-columns: repeat(2, 1fr); }
  .l-hero { height: 78vh; min-height: 540px; }
  .l-hero-inner { padding-bottom: var(--space-16); }
}
