/* ===========================
   Trigger Empathy — Global Styles
   =========================== */

:root {
  --green-deep: #334842;
  --green-dark: #40593B;
  --green-light: #81997C;
  --coral: #8E3235;
  --coral-dark: #6B2528;
  --coral-light: #B85A5D;
  --cream: #F7F5F0;
  --white: #FFFFFF;
  --text-dark: #334842;
  --text-muted: #81997C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "century-gothic", sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

a { color: inherit; }

img { max-width: 100%; display: block; }

/* ===========================
   NAV
   =========================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
  background: rgba(51, 72, 66, 0.95);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: "articulat-cf", sans-serif;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--coral-light);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active { color: var(--white); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 2rem;
  font-weight: 500;
  transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   BUTTONS
   =========================== */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  padding: 1rem 2.2rem;
  border: none;
  border-radius: 3rem;
  font-family: "century-gothic", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(142, 50, 53, 0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  padding: 1rem 1.5rem;
  font-family: "century-gothic", sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.3s;
  background: none;
  border: none;
}

.btn-ghost:hover { color: var(--white); }

.btn-ghost svg {
  transition: transform 0.3s;
}

.btn-ghost:hover svg { transform: translateX(3px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  padding: 0.65rem 1.8rem;
  border-radius: 2rem;
  font-family: "century-gothic", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

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

/* ===========================
   SECTION LABEL
   =========================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--coral);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.section-label span {
  width: 24px;
  height: 1.5px;
  background: var(--coral);
}

/* Dark section label override */
.dark-section .section-label {
  color: var(--coral-light);
}

.dark-section .section-label span {
  background: var(--coral-light);
}

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Background decorations hidden — solid green */
.hero-bg-pattern,
.hero-grain,
.poppy-deco { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 3rem 5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--coral-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease both;
}

.hero-tag span:first-child {
  display: inline-block;
  width: 28px;
  min-width: 28px;
  height: 1.5px;
  background: var(--coral-light);
  flex-shrink: 0;
}

.hero h1 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero h1 em {
  color: var(--coral-light);
  font-style: italic;
}

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  animation: fadeInUp 0.8s ease 0.45s both;
}

/* Hero image placeholders */
.hero-images {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-image-placeholder {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
  backdrop-filter: blur(8px);
  min-height: 0;
}

/* ===========================
   MISSION SECTION
   =========================== */
.mission {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.mission h2 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.mission-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.mission-text p + p { margin-top: 1rem; }

/* ===========================
   APPROACH SECTION
   =========================== */
.approach {
  padding: 5rem 3rem 7rem;
  background: var(--green-deep);
  position: relative;
}

.approach-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.approach .section-label {
  color: var(--coral-light);
}

.approach .section-label span {
  background: var(--coral-light);
}

.approach h2 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 3rem;
  max-width: 600px;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.approach-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.approach-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.approach-card:hover::before { transform: scaleX(1); }

.approach-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.card-number {
  font-family: "articulat-cf", sans-serif;
  font-size: 3rem;
  color: rgba(142, 50, 53, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}

.card-title {
  font-family: "articulat-cf", sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.card-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===========================
   EVENTS SECTION
   =========================== */
.events {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 3rem;
}

.events h2 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  line-height: 1.15;
}

.events-link {
  color: var(--coral);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}

.events-link:hover { gap: 0.7rem; }

.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.8rem 2rem;
  background: var(--white);
  border-radius: 1rem;
  border: 1px solid rgba(51, 72, 66, 0.08);
  transition: all 0.3s;
}

.event-item:hover {
  box-shadow: 0 8px 30px rgba(51, 72, 66, 0.08);
  transform: translateY(-2px);
}

.event-date {
  text-align: center;
}

.event-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
}

.event-day {
  font-family: "articulat-cf", sans-serif;
  font-size: 2.2rem;
  color: var(--green-deep);
  line-height: 1.1;
}

.event-info h3 {
  font-family: "articulat-cf", sans-serif;
  font-size: 1.2rem;
  color: var(--green-deep);
  margin-bottom: 0.3rem;
}

.event-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.event-rsvp {
  background: transparent;
  border: 1.5px solid var(--green-deep);
  color: var(--green-deep);
  padding: 0.65rem 1.8rem;
  border-radius: 2rem;
  font-family: "century-gothic", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.event-rsvp:hover {
  background: var(--green-deep);
  color: var(--white);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
  padding: 5rem 3rem;
  margin: 0 3rem 5rem;
  background: var(--green-dark);
  border-radius: 1.5rem;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0.06;
  top: -100px; right: -50px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--coral-light);
  opacity: 0.05;
  bottom: -80px; left: -30px;
}

.cta-section h2 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  position: relative;
  z-index: 1;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--green-deep);
  padding: 3rem;
  text-align: center;
}

.footer-logo {
  font-family: "articulat-cf", sans-serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  margin-bottom: 2rem;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ===========================
   PAGE HERO (inner pages)
   =========================== */
.page-hero {
  background: var(--green-deep);
  padding: 10rem 3rem 5rem;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, var(--green-light) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--green-light) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--green-light) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 40px 40px;
}

.page-hero .poppy-deco-1 {
  width: 300px; height: 300px;
  background: var(--coral);
  top: -80px; right: -40px;
}

.page-hero .poppy-deco-2 {
  width: 180px; height: 180px;
  background: var(--coral-dark);
  bottom: -60px; left: 10%;
}

.page-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero .section-label {
  color: var(--coral-light);
}

.page-hero .section-label span {
  background: var(--coral-light);
}

.page-hero h1 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.1;
  max-width: 700px;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 550px;
  margin-top: 1.5rem;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-story {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-story h2 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 2rem;
  max-width: 600px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-story-text {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-story-text p + p { margin-top: 1.2rem; }

/* Values section */
.values-section {
  padding: 5rem 3rem 7rem;
  background: var(--green-deep);
  position: relative;
}

.values-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.values-section h2 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 3rem;
  max-width: 500px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1.2rem;
  padding: 2.5rem 2rem;
  transition: all 0.4s;
}

.value-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.value-card h3 {
  font-family: "articulat-cf", sans-serif;
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.value-card p {
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Team section */
.team-section {
  padding: 5rem 3rem 7rem;
  background: var(--green-deep);
  position: relative;
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.team-section .section-label {
  color: var(--coral-light);
}

.team-section .section-label span {
  background: var(--coral-light);
}

.team-member {
  padding: 3rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.team-member:last-child {
  padding-bottom: 0;
}

.team-member h2 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.team-member-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.team-member-image {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  aspect-ratio: 4 / 3;
}

.team-member-text p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===========================
   EVENTS PREVIEW (homepage)
   =========================== */
.events-preview {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.events-preview h2 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.events-preview .btn-ghost {
  color: var(--coral);
  margin-top: 2rem;
}

.events-preview .btn-ghost:hover {
  color: var(--coral-dark);
}

.events-empty {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  padding: 2rem 0;
}

.events-empty a {
  color: var(--coral);
  text-decoration: none;
}

.events-empty a:hover {
  text-decoration: underline;
}

/* ===========================
   EVENTS PAGE
   =========================== */
.events-full {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.events-full h2 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.events-full .event-list + h2 {
  margin-top: 4rem;
}

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-section {
  padding: 7rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-family: "articulat-cf", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  color: var(--green-deep);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-detail svg {
  flex-shrink: 0;
  color: var(--coral);
}

.contact-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(51, 72, 66, 0.15);
  color: var(--green-deep);
  transition: all 0.3s;
}

.contact-social a:hover {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}

/* Contact form */
.contact-form {
  background: var(--white);
  border: 1px solid rgba(51, 72, 66, 0.08);
  border-radius: 1.2rem;
  padding: 2.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(51, 72, 66, 0.15);
  border-radius: 0.6rem;
  font-family: "century-gothic", sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--coral);
}

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

.contact-form .btn-primary {
  width: 100%;
  text-align: center;
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-target {
  opacity: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 4rem;
  }

  .hero-visual {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-images { flex-direction: row; gap: 1rem; }
  .hero-image-placeholder { flex: 1; min-width: 140px; }

  .mission-grid,
  .about-story-grid,
  .contact-grid,
  .team-member-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .approach-cards,
  .values-grid {
    grid-template-columns: 1fr;
  }

  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }

  .events-header {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }

  .event-item {
    grid-template-columns: 80px 1fr;
    gap: 1rem;
  }

  .event-rsvp {
    grid-column: 2;
    justify-self: start;
  }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(51, 72, 66, 0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem 2rem;
    gap: 1rem;
  }

  .nav-hamburger { display: flex; }

  .hero h1 { font-size: 2.2rem; }
  .hero-content { padding: 6rem 1.5rem 3rem; }

  .mission,
  .events,
  .events-preview,
  .about-story,
  .events-full,
  .contact-section,
  .team-section {
    padding: 4rem 1.5rem;
  }

  .approach,
  .values-section,
  .team-section {
    padding: 4rem 1.5rem;
  }

  .page-hero {
    padding: 8rem 1.5rem 3rem;
  }

  .cta-section {
    margin: 0 1rem 3rem;
    padding: 3.5rem 1.5rem;
  }

  .contact-form { padding: 1.5rem; }
}
