/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest: #0f2318;
  --deep: #1e4030;
  --green: #3d7a5a;
  --gold: #d4a843;
  --gold-lt: #e8c876;
  --cream: #f9f3e8;
  --cream-dk: #f0e8d5;
  --sage: #a8b89a;
  --white: #ffffff;
  --ink: #1a1a1a;
  --muted: #5a6b52;

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --section-pad: 96px;
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 12px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

/* ── Utility ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  :root {
    --section-pad: 60px;
  }
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 20px;
}

.section-heading em {
  font-style: italic;
  color: var(--green);
}

.section-heading--light {
  color: var(--cream);
}

.section-heading--light em {
  color: var(--gold);
}

.lead {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 580px;
}

.lead--light {
  color: var(--sage);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: all .22s ease;
  border: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest);
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(249, 243, 232, .28);
}

.btn-outline:hover {
  border-color: rgba(249, 243, 232, .6);
  background: rgba(249, 243, 232, .07);
}

.btn-outline-dark {
  background: transparent;
  color: var(--forest);
  border: 1px solid rgba(15, 35, 24, .25);
}

.btn-outline-dark:hover {
  border-color: var(--forest);
  background: rgba(15, 35, 24, .04);
}

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background .35s ease, box-shadow .35s ease;
  padding: 0;
}

#nav.scrolled {
  background: rgba(15, 35, 24, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(212, 168, 67, .15);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}

.nav-logo-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--cream);
}

.nav-logo-sub {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  color: var(--sage);
  text-decoration: none;
  letter-spacing: .03em;
  transition: color .2s;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-cta {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--forest);
  background: var(--gold);
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.nav-cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all .3s;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--forest);
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-placeholder {
  position: absolute;
  inset: 0;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.video-placeholder-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .4);
}

.video-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(168, 184, 154, .2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-icon svg {
  width: 20px;
  height: 20px;
  fill: rgba(168, 184, 154, .3);
}

/* Overlay: top dark, slightly lighter at bottom center */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(15, 35, 24, .88) 0%,
      rgba(15, 35, 24, .72) 55%,
      rgba(30, 64, 48, .60) 100%);
}

/* Decorative thin horizontal rule */
.hero-rule {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, .4), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s .2s forwards;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 28px;
  max-width: 720px;
  opacity: 0;
  animation: fadeUp .9s .38s forwards;
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--sage);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp .9s .52s forwards;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s .66s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .5);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(212, 168, 67, .5), transparent);
  animation: scrollPulse 2s 1.5s infinite;
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  display: flex;
  opacity: 0;
  animation: fadeIn 1s .9s forwards;
}

.hero-stat {
  padding: 24px 32px;
  border-left: 1px solid rgba(168, 184, 154, .12);
  background: rgba(15, 35, 24, .6);
  backdrop-filter: blur(8px);
  text-align: center;
}

.hero-stat-num {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--sage);
}

/* ── INTRO STRIP ── */
#intro {
  background: var(--deep);
  padding: 48px 0;
  border-bottom: 1px solid rgba(168, 184, 154, .1);
}

.intro-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.intro-line {
  width: 1px;
  height: 64px;
  background: rgba(212, 168, 67, .3);
  flex-shrink: 0;
}

.intro-text {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  color: var(--sage);
  line-height: 1.6;
  flex: 1;
}

.intro-text strong {
  font-style: normal;
  color: var(--cream);
}

.intro-scripture {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .5);
  flex-shrink: 0;
}

/* ── OUR STORY ── */
#story {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.story-media {
  position: relative;
}

.story-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream-dk);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px dashed rgba(61, 122, 90, .2);
}

.img-placeholder-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(90, 107, 82, .4);
}

.img-placeholder-icon {
  width: 40px;
  height: 40px;
  opacity: .25;
}

.story-img-placeholder svg {
  opacity: .2;
}

/* Year badge */
.story-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 110px;
  height: 110px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--cream);
}

.story-badge-year {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}

.story-badge-label {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 3px;
}

.story-content {
  padding-top: 12px;
}

.story-body {
  font-size: 16px;
  color: #4a5c42;
  line-height: 1.85;
  margin-bottom: 24px;
}

/* Timeline */
.timeline {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tl-item {
  display: flex;
  gap: 20px;
  padding-bottom: 28px;
  position: relative;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40px;
  flex-shrink: 0;
}

.tl-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
  outline: 1px solid var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.tl-line {
  width: 1px;
  flex: 1;
  background: rgba(212, 168, 67, .25);
  margin-top: 6px;
}

.tl-year {
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
  margin-top: 3px;
  min-width: 44px;
  flex-shrink: 0;
}

.tl-text {
  font-size: 14px;
  color: #5a6b52;
  line-height: 1.65;
  padding-top: 2px;
}

/* ── COMMUNITY PILLARS ── */
#pillars {
  background: var(--forest);
  padding: var(--section-pad) 0;
}

.pillars-header {
  text-align: center;
  margin-bottom: 64px;
}

.pillars-header .lead--light {
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(168, 184, 154, .1);
  border: 1px solid rgba(168, 184, 154, .1);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar {
  background: var(--forest);
  padding: 48px 40px;
  position: relative;
  transition: background .25s;
}

.pillar:hover {
  background: var(--deep);
}

.pillar-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 400;
  color: rgba(212, 168, 67, .12);
  line-height: 1;
  position: absolute;
  top: 24px;
  right: 28px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.25;
}

.pillar-text {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.75;
}

/* ── FAMILIES ── */
#families {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.families-header {
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.families-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1024px) {
  .families-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .families-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.family-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.family-photo {
  aspect-ratio: 3/4;
  background: var(--cream-dk);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  border: 1px dashed rgba(61, 122, 90, .15);
}

.family-initials {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: rgba(61, 122, 90, .3);
}

.family-photo-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(61, 122, 90, .25);
}

.family-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 4px;
  line-height: 1.3;
}

.family-role {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

.family-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(61, 122, 90, .08);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ── FARM & PRODUCE ── */
#farm {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.farm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.farm-content {
  order: 2;
}

.farm-media {
  order: 1;
}

.produce-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(61, 122, 90, .15);
}

.produce-item {
  background: var(--white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: background .2s;
}

.produce-item:hover {
  background: rgba(249, 243, 232, .7);
}

.produce-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(61, 122, 90, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.produce-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.produce-info {
  flex: 1;
}

.produce-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 2px;
}

.produce-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.produce-cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}

.produce-cta svg {
  width: 14px;
  height: 14px;
  stroke: var(--green);
  fill: none;
  stroke-width: 1.5;
}

.farm-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(212, 168, 67, .08);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.farm-note strong {
  color: var(--forest);
}

/* ── MINISTRIES ── */
#ministries {
  background: var(--deep);
  padding: var(--section-pad) 0;
}

.ministries-header {
  margin-bottom: 56px;
}

.ministries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ministry-card {
  background: rgba(15, 35, 24, .6);
  border: 1px solid rgba(168, 184, 154, .12);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  transition: border-color .25s, background .25s;
}

.ministry-card:hover {
  border-color: rgba(212, 168, 67, .3);
  background: rgba(15, 35, 24, .8);
}

.ministry-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ministry-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ministry-body {}

.ministry-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(212, 168, 67, .1);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.ministry-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.25;
}

.ministry-text {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.75;
}

/* ── VISIT ── */
#visit {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.visit-header {
  text-align: center;
  margin-bottom: 56px;
}

.visit-header .lead {
  margin: 0 auto;
  text-align: center;
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.visit-card {
  border: 1px solid rgba(61, 122, 90, .15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 35, 24, .1);
}

.visit-card-top {
  background: var(--forest);
  padding: 36px 32px 28px;
  position: relative;
  overflow: hidden;
}

.visit-card-top::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(212, 168, 67, .06);
}

.visit-card-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  color: rgba(212, 168, 67, .15);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.visit-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.visit-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visit-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
}

.visit-card-body {
  padding: 28px 32px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.visit-card-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.visit-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.visit-detail-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: #5a6b52;
  line-height: 1.5;
}

.visit-detail-item::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  transform: translateY(-3px);
}

.visit-card-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  background: var(--gold);
  border: none;
  padding: 12px 22px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  align-self: flex-start;
}

.visit-card-btn:hover {
  background: var(--gold-lt);
}

/* ── JOIN ── */
#join {
  background: var(--forest);
  padding: var(--section-pad) 0;
}

.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.join-steps {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  counter-reset: steps;
}

.join-step {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}

.join-step:last-child {
  padding-bottom: 0;
}

.join-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.join-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

.join-step-connector {
  width: 1px;
  flex: 1;
  background: rgba(212, 168, 67, .15);
  margin-top: 8px;
}

.join-step-title {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 8px;
  padding-top: 6px;
}

.join-step-text {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.75;
}

.join-note {
  margin-top: 20px;
  padding: 20px 24px;
  background: rgba(212, 168, 67, .08);
  border: 1px solid rgba(212, 168, 67, .2);
  border-radius: var(--radius-lg);
}

.join-note-text {
  font-size: 14px;
  color: var(--sage);
  line-height: 1.7;
}

.join-note-text strong {
  color: var(--gold);
}

.join-media {}

.join-img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: rgba(30, 64, 48, .6);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px dashed rgba(168, 184, 154, .15);
}

.join-placeholder-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .25);
}

/* ── GALLERY STRIP ── */
#gallery {
  background: var(--forest);
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(168, 184, 154, .08);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.gallery-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap .2s;
}

.gallery-link:hover {
  gap: 10px;
}

.gallery-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
}

.gallery-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  border: 1px dashed rgba(168, 184, 154, .12);
  position: relative;
  transition: opacity .2s;
}

.gallery-cell:hover {
  opacity: .85;
}

.gallery-cell:first-child {
  grid-row: span 2;
}

.gallery-cell-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .25);
}

.gallery-cell-cat {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(168, 184, 154, .2);
}

/* ── SUPPORT ── */
#support {
  background: var(--cream);
  padding: var(--section-pad) 0;
}

.support-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.support-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-card {
  background: var(--white);
  border: 1px solid rgba(61, 122, 90, .12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color .2s, transform .2s;
}

.support-card:hover {
  border-color: rgba(212, 168, 67, .4);
  transform: translateX(4px);
}

.support-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(212, 168, 67, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-card-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-card-title {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 6px;
}

.support-card-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CONTACT ── */
#contact {
  background: var(--forest);
  padding: var(--section-pad) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-item-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .5);
  margin-bottom: 4px;
}

.contact-item-val {
  font-size: 15px;
  color: var(--cream);
  line-height: 1.5;
}

.contact-item-val a {
  color: var(--gold);
  text-decoration: none;
}

.contact-item-val a:hover {
  text-decoration: underline;
}

.contact-form {
  background: rgba(30, 64, 48, .4);
  border: 1px solid rgba(168, 184, 154, .1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .6);
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(15, 35, 24, .6);
  border: 1px solid rgba(168, 184, 154, .15);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
  transition: border-color .2s;
  outline: none;
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(168, 184, 154, .3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(212, 168, 67, .4);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: var(--forest);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--forest);
  border: none;
  padding: 14px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.form-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
}

/* ── FOOTER ── */
footer {
  background: #080f0a;
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand {}

.footer-logo {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--cream);
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(168, 184, 154, .5);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 260px;
}

.footer-scripture {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: rgba(212, 168, 67, .5);
  line-height: 1.6;
  max-width: 240px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(168, 184, 154, .4);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(168, 184, 154, .55);
  text-decoration: none;
  transition: color .2s;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(168, 184, 154, .08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(168, 184, 154, .3);
}

.footer-credit {
  font-size: 12px;
  color: rgba(168, 184, 154, .25);
}

.footer-credit a {
  color: rgba(212, 168, 67, .4);
  text-decoration: none;
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .5;
    transform: scaleY(1);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.stagger>* {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.stagger.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}

.stagger.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: .1s;
}

.stagger.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: .18s;
}

.stagger.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: .26s;
}

.stagger.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: .34s;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {

  .story-grid,
  .farm-layout,
  .join-inner,
  .support-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .farm-content {
    order: 1;
  }

  .farm-media {
    order: 2;
  }

  .story-badge {
    right: 0;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .ministries-grid {
    grid-template-columns: 1fr;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    display: none;
  }

  .families-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .gallery-cell:first-child {
    grid-row: span 1;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero-h1 {
    font-size: 38px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .families-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-inner {
    flex-direction: column;
    gap: 28px;
  }

  .intro-line {
    width: 64px;
    height: 1px;
  }
}