/* ═══ HOME PAGE STYLES ══════════════════════════════════════ */

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-media {
  position: absolute; inset: 0; z-index: 0;
}
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  transition: transform 10s ease;
}
.hero:hover .hero-photo { transform: scale(1.04); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(107, 61, 30, 0.88) 0%,
    rgba(139, 94, 60, 0.72) 40%,
    rgba(26, 18, 8, 0.60) 70%,
    rgba(26, 18, 8, 0.75) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1;
  max-width: var(--max); margin: 0 auto;
  padding: clamp(48px, 8vw, 100px) clamp(16px, 4vw, 40px) 120px;
  width: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brown-light); margin-bottom: 20px;
}
.hero-logo-wrap {
  margin-bottom: 28px;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.4));
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.05; color: var(--white);
  margin-bottom: 20px; max-width: 800px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-h1 em { font-style: italic; color: var(--brown-pale); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: rgba(255,255,255,0.82); max-width: 560px; line-height: 1.75;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 700;
  padding: 14px 28px; border-radius: var(--radius); border: 2px solid rgba(255,255,255,0.35);
  cursor: pointer; transition: all var(--transition); backdrop-filter: blur(8px);
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.6); }

/* Stats bar */
.hero-stats-bar {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 0;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 20px clamp(16px, 4vw, 40px);
}
.hero-stat {
  text-align: center; padding: 8px 32px;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900; color: var(--white);
  line-height: 1;
}
.hero-stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }
@media (max-width: 600px) { .stat-divider { display: none; } .hero-stat { padding: 8px 16px; } }

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 90px; right: clamp(16px, 4vw, 40px); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-hint-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3;transform:scaleY(.6)} 50%{opacity:.8;transform:scaleY(1)} }

/* ── ABOUT TEASER ──────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; } }

.vm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 28px; }
@media (max-width: 600px) { .vm-cards { grid-template-columns: 1fr; } }
.vm-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; position: relative; overflow: hidden;
}
.vm-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--brown), var(--gold));
}
.vm-icon { font-size: 1.8rem; margin-bottom: 10px; }
.vm-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brown); margin-bottom: 4px; }
.vm-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.vm-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.65; }

/* Photo stack */
.about-photo-stack { position: relative; min-height: 460px; }
.about-photo {
  border-radius: var(--radius-lg); object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-photo-main {
  width: 100%; height: 380px;
  position: relative; z-index: 2;
}
.about-photo-accent {
  width: 52%; height: 200px;
  position: absolute; bottom: -30px; right: -20px; z-index: 3;
  border: 4px solid var(--white);
}
.about-photo-badge {
  position: absolute; top: 20px; left: -16px; z-index: 4;
  background: var(--brown); color: var(--white);
  padding: 14px 18px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-md);
}
.about-photo-badge span:first-child { display: block; font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 900; line-height: 1; }
.about-photo-badge span:last-child  { display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: .75; margin-top: 4px; }
@media (max-width: 860px) { .about-photo-stack { min-height: auto; } .about-photo-accent { display: none; } .about-photo-badge { left: 10px; } }

/* ── VALUES TEASER ─────────────────────────────────────────── */
.values-strip {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 12px;
}
.value-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--text);
  border: 1.5px solid var(--border); border-radius: 100px;
  padding: 10px 20px; font-size: 0.92rem; font-weight: 600;
  transition: all var(--transition); cursor: default;
}
.value-pill:hover { background: var(--brown); color: var(--white); border-color: var(--brown); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.value-pill span { font-size: 1.1rem; }

/* ── MANIFESTO TEASER ──────────────────────────────────────── */
.manifesto-teaser-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
}
@media (max-width: 860px) { .manifesto-teaser-grid { grid-template-columns: 1fr; } }

.manifesto-photo { width: 100%; height: 440px; object-fit: cover; border-radius: var(--radius-lg); }
.manifesto-photo-col { position: relative; }
.manifesto-photo-overlay {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--brown); color: var(--white);
  padding: 20px 24px; border-radius: var(--radius-lg); text-align: center;
  box-shadow: var(--shadow-md);
}
.pillars-count { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 900; line-height: 1; }
.pillars-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: .75; margin-top: 4px; }

.pillar-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 8px; }
.pillar-item {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 16px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--off-white);
  transition: all var(--transition);
}
.pillar-item:hover { background: var(--brown-pale); border-color: rgba(139,94,60,0.35); transform: translateX(4px); }
.pillar-n { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--brown-light); min-width: 28px; }
.pillar-t { font-size: 0.88rem; font-weight: 500; color: var(--text); }

/* ── SPEECH ────────────────────────────────────────────────── */
.bg-brown { background: linear-gradient(135deg, var(--brown-deep) 0%, var(--brown) 100%); }
.speech-inner {
  max-width: 760px; margin: 0 auto; text-align: center; padding: 20px 0;
}
.speech-quote-mark { font-family: 'Playfair Display', serif; font-size: 8rem; line-height: .6; color: rgba(255,255,255,0.12); margin-bottom: -20px; }
.speech-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: rgba(255,255,255,0.9); line-height: 1.8;
  font-style: italic; margin-bottom: 32px;
}
.speech-text strong { color: var(--brown-pale); font-style: normal; }
.speech-attribution { display: flex; align-items: center; justify-content: center; gap: 12px; }
.speech-dash { font-size: 1.5rem; color: var(--brown-light); }
.speech-name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.speech-role { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── JOIN CTA ──────────────────────────────────────────────── */
.join-cta .section-h2 { text-align: center; max-width: 600px; }
.join-cta .section-lead { text-align: center; max-width: 560px; }
