/* ============================================================
   Wellspring Christian Community Outreach — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --green:      #2C5F2E;
  --green-dark: #1e4320;
  --green-light:#3d7a40;
  --gold:       #C9A84C;
  --gold-light: #e0c47a;
  --cream:      #FAFAF7;
  --white:      #ffffff;
  --charcoal:   #2B2B2B;
  --slate:      #6B7280;
  --border:     #e5e7e0;
  --shadow:     0 2px 20px rgba(44,95,46,0.10);
  --shadow-md:  0 8px 40px rgba(44,95,46,0.14);
  --radius:     8px;
  --radius-lg:  14px;
  --transition: all 0.3s ease;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-width:  1200px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--green); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
ul, ol { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  color: var(--charcoal);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--charcoal); }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: 1.15rem;
  color: var(--slate);
  line-height: 1.8;
  font-weight: 300;
}

/* ── Layout Helpers ─────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section--sm { padding: 3rem 0; }
.section--lg { padding: 7rem 0; }

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section__header p { color: var(--slate); margin-top: .75rem; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Accent / Decorators ────────────────────────────────────── */
.accent-line {
  display: block;
  width: 56px;
  height: 3px;
  background: var(--gold);
  margin: .75rem auto 0;
  border-radius: 2px;
}

.accent-line--left { margin-left: 0; }

.tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .875rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44,95,46,0.25);
}

.btn--outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn--outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--green);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--cream);
  color: var(--green-dark);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: #b8923e;
  border-color: #b8923e;
  color: var(--white);
}

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled { box-shadow: var(--shadow); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.header__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.header__org-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.25;
  white-space: nowrap;
}

.header__org-name span {
  display: block;
  font-size: .7rem;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--slate);
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── Navigation ─────────────────────────────────────────────── */
.main-nav { flex-shrink: 0; }

.main-nav__list {
  display: flex;
  align-items: center;
  gap: .15rem;
  white-space: nowrap;
}

.main-nav__list a {
  display: block;
  padding: .4rem .65rem;
  font-size: .82rem;
  font-weight: 500;
  color: var(--charcoal);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav__list a:hover,
.main-nav__list a.active {
  color: var(--green);
  background: rgba(44,95,46,.07);
}

.nav-cta a {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: .4rem 1rem !important;
}
.nav-cta a:hover { background: var(--green-dark) !important; }

/* ── Mobile Nav Toggle ──────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  background: none;
  border: none;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .45;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,67,32,.85) 0%, rgba(44,95,46,.55) 60%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.2);
}

.hero__desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  max-width: 560px;
  font-weight: 300;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .4;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,67,32,.9) 0%, rgba(44,95,46,.5) 60%, transparent 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 3rem;
  width: 100%;
}

.page-hero__title {
  color: var(--white);
  margin-bottom: .5rem;
}

.page-hero__subtitle {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  font-weight: 300;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .75rem;
}

.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: .5; }

/* ── Mission Strip ──────────────────────────────────────────── */
.mission-strip {
  background: var(--green);
  padding: 3.5rem 0;
}

.mission-strip__inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.mission-strip__icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.mission-strip__text h3 {
  color: var(--gold-light);
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.mission-strip__text p {
  color: var(--white);
  font-size: 1.15rem;
  font-family: var(--font-serif);
  font-style: italic;
  margin: 0;
}

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body { padding: 1.75rem; }
.card__title { margin-bottom: .5rem; }
.card__text { color: var(--slate); font-size: .95rem; }

.card--icon {
  text-align: center;
  padding: 2.5rem 1.75rem;
}

.card--icon .card__icon {
  width: 64px;
  height: 64px;
  background: rgba(44,95,46,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  transition: var(--transition);
}

.card--icon:hover .card__icon {
  background: var(--green);
}

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--charcoal);
  padding: 3.5rem 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat__number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat__label {
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: .4rem;
  display: block;
}

/* ── Two-Column Content ─────────────────────────────────────── */
.content-block { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-block--reverse .content-block__image { order: 2; }
.content-block--reverse .content-block__text  { order: 1; }

.content-block__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* ── Scripture / Quote ──────────────────────────────────────── */
.scripture-block {
  background: var(--green);
  padding: 4rem 0;
  text-align: center;
}

.scripture-block blockquote {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1.6;
}

.scripture-block cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: .85rem;
  color: var(--gold-light);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Values Grid ────────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.value-card__icon {
  font-size: 2rem;
  margin-bottom: .75rem;
}

.value-card h3 {
  color: var(--green);
  margin-bottom: .5rem;
  font-size: 1.1rem;
}

.value-card p { color: var(--slate); font-size: .9rem; margin: 0; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 5rem 0;
  text-align: center;
}

.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p  { color: rgba(255,255,255,.8); max-width: 560px; margin: 0 auto 2rem; font-size: 1.05rem; }

.cta-section__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Timeline ───────────────────────────────────────────────── */
.timeline { position: relative; padding: 1rem 0; }

.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline__item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.timeline__dot {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 6px var(--border);
}

.timeline__content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  flex: 1;
}

.timeline__content h3 { margin-bottom: .5rem; color: var(--green); }
.timeline__content p  { color: var(--slate); font-size: .95rem; margin: 0; }

/* ── Accordion (FAQ) ────────────────────────────────────────── */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }

.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item:last-child { border-bottom: none; }

.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: var(--transition);
  gap: 1rem;
}

.accordion__trigger:hover { background: rgba(44,95,46,.04); }

.accordion__trigger.open { background: rgba(44,95,46,.06); color: var(--green); }

.accordion__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--slate);
  transition: transform .3s ease;
}

.accordion__trigger.open .accordion__icon { transform: rotate(45deg); color: var(--green); }

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.accordion__panel.open { max-height: 600px; }

.accordion__body {
  padding: 0 1.75rem 1.4rem;
  color: var(--slate);
  font-size: .95rem;
  line-height: 1.7;
}

/* ── Contact Form ───────────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}

.form-control {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(44,95,46,.12);
}

textarea.form-control { resize: vertical; min-height: 140px; }

.form-message {
  padding: .85rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 1rem;
  display: none;
}

.form-message--success { background: rgba(44,95,46,.1); color: var(--green); border: 1px solid var(--green); display: block; }
.form-message--error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; display: block; }

/* ── Contact Info ───────────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  background: rgba(44,95,46,.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info__text h4 { margin-bottom: .2rem; color: var(--green); }
.contact-info__text p  { color: var(--slate); font-size: .9rem; margin: 0; }
.contact-info__text a  { color: var(--charcoal); }
.contact-info__text a:hover { color: var(--green); }

/* ── Location Map ───────────────────────────────────────────── */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 300px;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: .9rem;
  text-align: center;
}

/* ── Events / News Cards ────────────────────────────────────── */
.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  transition: var(--transition);
}

.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.event-card__date {
  background: var(--green);
  color: var(--white);
  padding: 1.25rem 1rem;
  text-align: center;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.event-card__date .day {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.event-card__date .month {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
  margin-top: .2rem;
}

.event-card__body { padding: 1.25rem 1.5rem; flex: 1; }
.event-card__body h4 { margin-bottom: .3rem; }
.event-card__body p  { color: var(--slate); font-size: .9rem; margin: 0; }

/* ── Resources ──────────────────────────────────────────────── */
.resource-list { display: flex; flex-direction: column; gap: .75rem; }

.resource-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 3px solid var(--gold);
}

.resource-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.resource-item__icon { font-size: 1.25rem; flex-shrink: 0; }
.resource-item__text { flex: 1; }
.resource-item__text h4 { font-size: .95rem; margin-bottom: .15rem; color: var(--green); }
.resource-item__text p  { font-size: .85rem; color: var(--slate); margin: 0; }
.resource-item a { font-size: .8rem; font-weight: 600; color: var(--green); }

/* ── Leadership Team ────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.team-card__avatar {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top;
}

.team-card__avatar--placeholder {
  height: 240px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: rgba(255,255,255,.5);
}

.team-card__body { padding: 1.5rem; }
.team-card__name { color: var(--green); margin-bottom: .2rem; }
.team-card__role { font-size: .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.team-card__bio  { margin-top: .75rem; font-size: .9rem; color: var(--slate); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.8);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand { max-width: 280px; }

.footer__logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.footer__logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  padding: .25rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.footer__org-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.3;
}

.footer__brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

.footer__reg {
  display: inline-block;
  margin-top: .75rem;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  font-family: var(--font-sans);
}

.footer__heading {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer__links { display: flex; flex-direction: column; gap: .5rem; }

.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}

.footer__links a:hover { color: var(--white); padding-left: .25rem; }

.footer__contact-list { display: flex; flex-direction: column; gap: .75rem; }

.footer__contact-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.footer__contact-item .icon {
  font-size: 1rem;
  opacity: .6;
  flex-shrink: 0;
  margin-top: .1rem;
}

.footer__contact-item p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin: 0;
  line-height: 1.5;
}

.footer__contact-item a { color: rgba(255,255,255,.65); }
.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer__copyright {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

/* ── Animations ─────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: .1s; }
.fade-in-delay-2 { transition-delay: .2s; }
.fade-in-delay-3 { transition-delay: .3s; }
.fade-in-delay-4 { transition-delay: .4s; }

/* ── Utility ────────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-green   { color: var(--green); }
.text-gold    { color: var(--gold); }
.text-slate   { color: var(--slate); }
.text-white   { color: var(--white); }
.bg-cream     { background: var(--cream); }
.bg-white     { background: var(--white); }
.bg-green     { background: var(--green); }
.mt-1  { margin-top: 1rem; }
.mt-2  { margin-top: 2rem; }
.mt-3  { margin-top: 3rem; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 1rem; }
.mb-2  { margin-bottom: 2rem; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* ── Accessibility ──────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
