/* =========================================
   UWAM — Global Styles
   ========================================= */

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

:root {
  --green:        #6BBF8E;
  --green-light:  #D6EFE0;
  --green-dark:   #3E8C5F;
  --pink:         #F4A7B9;
  --pink-light:   #FCE8EE;
  --pink-dark:    #E07090;
  --cream:        #F7F8F7;
  --white:        #FFFFFF;
  --charcoal:     #2D2D2D;
  --mid-grey:     #6B6B6B;
  --light-grey:   #F0EDE8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-soft: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-polaroid: 4px 8px 28px rgba(0,0,0,0.15);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: block;
  margin-bottom: 0.5rem;
}

.section-title { margin-bottom: 1rem; }
.section-intro  { color: var(--mid-grey); max-width: 560px; font-size: 1.05rem; }

/* =========================================
   LAYOUT HELPERS
   ========================================= */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 72px 0; }

.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-pink {
  background: transparent;
  color: var(--pink-dark);
  border-color: var(--pink);
}
.btn-pink:hover { background: var(--pink-light); color: var(--pink-dark); border-color: var(--pink-dark); }

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

/* =========================================
   NAVIGATION
   ========================================= */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 250, 246, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 191, 142, 0.15);
  transition: box-shadow 0.3s;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
}

.nav-logo .logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green), var(--pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}

.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a.active { color: var(--green-dark); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; gap: 12px; align-items: center; }

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

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

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

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--cream);
  padding: 24px 20px 32px;
  border-bottom: 1px solid var(--green-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  z-index: 99;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-grey);
  font-size: 1.05rem;
}

.mobile-menu a:last-of-type { border-bottom: none; }

.mobile-menu .btn { margin-top: 20px; width: 100%; justify-content: center; }

/* =========================================
   HERO
   ========================================= */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
  background: linear-gradient(160deg, var(--pink-light) 0%, var(--cream) 40%, var(--green-light) 100%);
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}

.hero-bg-blob.blob-1 {
  width: 500px; height: 500px;
  background: var(--pink-light);
  top: -100px; right: -100px;
}

.hero-bg-blob.blob-2 {
  width: 400px; height: 400px;
  background: var(--green-light);
  bottom: -80px; left: -80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero-content { display: flex; flex-direction: column; gap: 24px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  box-shadow: var(--shadow-soft);
  align-self: flex-start;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero-title { color: var(--charcoal); }
.hero-title em { color: var(--green-dark); font-style: italic; }

.hero-story {
  font-size: 1.05rem;
  color: var(--mid-grey);
  line-height: 1.75;
  max-width: 480px;
}

.hero-story strong { color: var(--charcoal); font-weight: 600; }

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-ctas .btn-primary { background: var(--green-dark); border-color: var(--green-dark); }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--mid-grey); margin-top: 2px; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

/* Polaroid frames */
.polaroid {
  background: var(--white);
  padding: 12px 12px 36px;
  box-shadow: var(--shadow-polaroid);
  border-radius: 2px;
  position: relative;
  display: inline-block;
}

.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 1px;
}

.polaroid .polaroid-caption {
  position: absolute;
  bottom: 6px;
  left: 0; right: 0;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.75rem;
  color: var(--mid-grey);
}

.polaroid-stack {
  position: relative;
  width: 420px;
  height: 540px;
}

.polaroid-stack .polaroid:nth-child(1) {
  position: absolute;
  width: 300px;
  height: 340px;
  top: 0; left: 30px;
  transform: rotate(-5deg);
  z-index: 3;
}

.polaroid-stack .polaroid:nth-child(2) {
  position: absolute;
  width: 260px;
  height: 300px;
  top: 100px; right: 0;
  transform: rotate(4deg);
  z-index: 2;
}

.polaroid-stack .polaroid:nth-child(3) {
  position: absolute;
  width: 250px;
  height: 290px;
  bottom: 0; left: 0;
  transform: rotate(-2deg);
  z-index: 1;
}

/* Floating decorations */
.deco {
  position: absolute;
  pointer-events: none;
  user-select: none;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(3deg); }
}

.deco.deco-1 { top: 5%;  right: 5%;  animation-delay: 0s; }
.deco.deco-2 { top: 30%; left: -30px; animation-delay: 1s; }
.deco.deco-3 { bottom: 10%; right: 0; animation-delay: 2s; }
.deco.deco-4 { bottom: 30%; left: 10%; animation-delay: 0.5s; }

/* =========================================
   WHAT UWAM MEANS
   ========================================= */

.meaning-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.meaning-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--green));
}

.meaning-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.meaning-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.meaning-polaroid-wrap {
  position: relative;
  width: 380px;
  max-width: 100%;
}

.meaning-polaroid-wrap .polaroid {
  width: 100%;
}

.meaning-polaroid-wrap .polaroid img {
  height: 440px;
}

.meaning-polaroid-wrap .float-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--pink-light);
  border: 2px solid var(--pink);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--pink-dark);
  box-shadow: var(--shadow-soft);
  transform: rotate(3deg);
}

.meaning-content { display: flex; flex-direction: column; gap: 20px; }

.tiv-word {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  font-style: italic;
  color: var(--green-dark);
  line-height: 1;
}

.tiv-translation {
  font-size: 1.1rem;
  color: var(--pink-dark);
  font-style: italic;
  font-family: var(--font-heading);
  margin-top: -10px;
}

.meaning-body { color: var(--mid-grey); font-size: 1rem; line-height: 1.8; }
.meaning-body strong { color: var(--charcoal); }

.meaning-quote {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--green-dark);
  line-height: 1.6;
}

/* =========================================
   WHAT WE DO
   ========================================= */

.what-we-do { background: var(--cream); }

.what-we-do .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  transition: height 0.3s;
}

.pillar-card:nth-child(1)::after { background: var(--green); }
.pillar-card:nth-child(2)::after { background: var(--pink); }
.pillar-card:nth-child(3)::after { background: linear-gradient(90deg, var(--green), var(--pink)); }

.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.pillar-card:hover::after { height: 6px; }

.pillar-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.pillar-card:nth-child(1) .pillar-icon { background: var(--green-light); }
.pillar-card:nth-child(2) .pillar-icon { background: var(--pink-light); }
.pillar-card:nth-child(3) .pillar-icon { background: linear-gradient(135deg, var(--green-light), var(--pink-light)); }

.pillar-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.pillar-sub {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.pillar-desc {
  color: var(--mid-grey);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pillar-features {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--charcoal);
}

.pillar-features li::before {
  content: '✦';
  color: var(--green);
  font-size: 0.7rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* =========================================
   WHY WE EXIST
   ========================================= */

.why-exist {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a3a2a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-exist::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236BBF8E' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.why-exist .container { position: relative; z-index: 2; }

.why-exist .section-title { color: var(--white); }
.why-exist .section-intro { color: rgba(255,255,255,0.7); }
.why-exist .eyebrow { color: var(--green); }

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.reason-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  transition: background 0.3s, border-color 0.3s;
}

.reason-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(107,191,142,0.4);
}

.reason-emoji { font-size: 2.5rem; margin-bottom: 16px; display: block; }

.reason-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.reason-body {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.why-cta {
  text-align: center;
  margin-top: 56px;
}

.why-cta p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
  font-size: 1.05rem;
  font-style: italic;
  font-family: var(--font-heading);
}

/* =========================================
   SISTERHOOD PHOTOS
   ========================================= */

.sisterhood {
  background: var(--white);
  overflow: hidden;
}

.sisterhood .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.photo-grid .polaroid {
  padding: 10px 10px 42px;
  transform: rotate(0deg);
  transition: transform 0.3s, box-shadow 0.3s;
}

.photo-grid .polaroid:nth-child(odd)  { transform: rotate(-2deg); }
.photo-grid .polaroid:nth-child(even) { transform: rotate(2deg); }
.photo-grid .polaroid:hover           { transform: rotate(0deg) scale(1.04); box-shadow: 6px 12px 40px rgba(0,0,0,0.2); z-index: 2; }

.photo-grid .polaroid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* Photo placeholders using gradient backgrounds */
.photo-placeholder {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  border-radius: 1px;
}

.photo-placeholder.p1 { background: linear-gradient(135deg, #F4A7B9 0%, #FCE8EE 100%); }
.photo-placeholder.p2 { background: linear-gradient(135deg, #6BBF8E 0%, #D6EFE0 100%); }
.photo-placeholder.p3 { background: linear-gradient(135deg, #F4A7B9 30%, #6BBF8E 100%); }
.photo-placeholder.p4 { background: linear-gradient(135deg, #D6EFE0 0%, #FCE8EE 100%); }

/* =========================================
   GET INVOLVED
   ========================================= */

.get-involved { background: var(--cream); }

.get-involved .section-header {
  text-align: center;
  margin-bottom: 56px;
}

.involve-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.form-card h3 {
  margin-bottom: 6px;
  color: var(--charcoal);
}

.form-card .form-sub {
  color: var(--mid-grey);
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(107,191,142,0.15);
}

.form-group textarea { min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

/* Disclaimer bar */
.disclaimer {
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-bottom: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.disclaimer .disclaimer-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.disclaimer p {
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.disclaimer strong { color: rgba(255,255,255,0.85); }

.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a  { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-heart { color: var(--pink); }

/* Social icons */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.social-link:hover { background: var(--green); color: var(--white); }

/* =========================================
   EVENT BANNER
   ========================================= */

.event-banner {
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 55%, var(--pink) 130%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.event-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.event-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.event-banner-tag .dot {
  width: 7px; height: 7px;
  background: var(--pink-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.event-banner-title {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.2;
  margin-bottom: 14px;
  max-width: 560px;
}

.event-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.event-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
}

.event-meta-item svg { flex-shrink: 0; }

.event-banner-cta { flex-shrink: 0; }

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

.event-banner-deco {
  position: absolute;
  font-size: 6rem;
  opacity: 0.12;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* =========================================
   ARTICLES PAGE
   ========================================= */

.articles-hero {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--green-light) 100%);
  padding: 120px 0 72px;
  text-align: center;
}

.articles-hero h1 { margin-bottom: 12px; }
.articles-hero p  { color: var(--mid-grey); font-size: 1.1rem; max-width: 540px; margin: 0 auto; }

.article-categories {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

.cat-chip {
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--white);
  border: 1.5px solid transparent;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid-grey);
  cursor: pointer;
  transition: all 0.2s;
}

.cat-chip:hover { color: var(--green-dark); }
.cat-chip.active { background: var(--green); color: var(--white); border-color: var(--green); }

.featured-article {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 56px;
}

.featured-article-img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  width: 100%;
}

.featured-article-body { padding: 40px 40px 40px 0; }

.featured-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-dark);
  margin-bottom: 12px;
  display: block;
}

.featured-article h2 { margin-bottom: 14px; }
.featured-article p  { color: var(--mid-grey); margin-bottom: 20px; line-height: 1.7; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

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

.article-card-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.article-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.article-card p {
  font-size: 0.9rem;
  color: var(--mid-grey);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--mid-grey);
  padding-top: 14px;
  border-top: 1px solid var(--light-grey);
}

.article-meta .read-more {
  margin-left: auto;
  color: var(--green-dark);
  font-weight: 600;
}

/* Cards are now links — strip the default anchor styling */
.article-card,
.featured-article { text-decoration: none; color: inherit; }

/* =========================================
   SINGLE ARTICLE PAGE
   ========================================= */

.article-page { padding: 110px 0 80px; }

/* Narrow reading column, centred */
.container.article-reading { max-width: 760px; }

.article-back {
  display: inline-block;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-bottom: 20px;
}
.article-back:hover { text-decoration: underline; }

.article-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--charcoal);
  margin: 12px 0 16px;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--mid-grey);
  font-size: 0.9rem;
}

.article-cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin: 28px 0 8px;
}

/* ── Prose / article body typography ── */
.prose {
  margin-top: 32px;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--charcoal);
}
.prose > *:first-child { margin-top: 0; }
.prose p { margin: 0 0 1.25em; }
.prose h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--charcoal);
  margin: 1.8em 0 0.6em;
}
.prose h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--charcoal);
  margin: 1.5em 0 0.5em;
}
.prose a { color: var(--green-dark); font-weight: 600; text-decoration: underline; }
.prose strong { color: var(--charcoal); font-weight: 700; }
.prose ul,
.prose ol { margin: 0 0 1.25em; padding-left: 1.4em; }
.prose li { margin-bottom: 0.5em; }
.prose ul li::marker { color: var(--green); }
.prose ol li::marker { color: var(--green-dark); font-weight: 700; }
.prose blockquote {
  margin: 1.6em 0;
  padding: 16px 22px;
  background: var(--pink-light);
  border-left: 4px solid var(--pink);
  border-radius: var(--radius-sm);
  color: var(--charcoal);
  font-style: italic;
}
.prose blockquote p:last-child { margin-bottom: 0; }
.prose img { max-width: 100%; height: auto; border-radius: var(--radius-md); margin: 1.4em 0; }
.prose hr { border: none; border-top: 1px solid var(--light-grey); margin: 2em 0; }
.prose code {
  background: var(--light-grey);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.9em;
}

/* ── Share row ── */
.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--light-grey);
}
.article-share-label {
  font-weight: 600;
  color: var(--mid-grey);
  font-size: 0.9rem;
  margin-right: 4px;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid var(--green-light);
  border-radius: 100px;
  background: var(--white);
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.share-btn:hover { background: var(--green-light); border-color: var(--green); transform: translateY(-1px); }
.share-btn.copied { background: var(--green); color: var(--white); border-color: var(--green); }

/* =========================================
   FIND SUPPORT PAGE
   ========================================= */

.support-hero {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--pink-light) 100%);
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.support-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.support-hero h1 { margin-bottom: 12px; }
.support-hero p  { color: var(--mid-grey); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

/* Filter bar */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  margin: -32px auto 48px;
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.filter-bar h3 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--charcoal);
}

.filters {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 14px;
  align-items: end;
}

.filter-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid-grey);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.filter-group input {
  background-image: none;
  padding-right: 14px;
}

.filter-group input:focus,
.filter-group select:focus { border-color: var(--green); }

/* ── Custom dropdown (replaces native <select>) ── */
.uw-select { position: relative; width: 100%; }

.uw-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.2;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.uw-select-trigger:hover { border-color: var(--green); }
.uw-select.open .uw-select-trigger,
.uw-select-trigger:focus-visible {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-light);
  outline: none;
}

.uw-select-value {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.uw-select-value.is-placeholder { color: var(--mid-grey); }

.uw-select-arrow {
  flex-shrink: 0;
  color: var(--mid-grey);
  transition: transform 0.22s ease, color 0.2s;
}
.uw-select.open .uw-select-arrow { transform: rotate(180deg); color: var(--green-dark); }

.uw-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  z-index: 60;
  max-height: 288px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.uw-select.open .uw-select-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.uw-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--charcoal);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.uw-option.is-active,
.uw-option:hover { background: var(--green-light); color: var(--green-dark); }
.uw-option.is-selected { font-weight: 600; color: var(--green-dark); }
.uw-option.is-selected::after {
  content: "✓";
  font-size: 0.85rem;
  color: var(--green-dark);
}
.uw-option.is-disabled {
  color: var(--mid-grey);
  cursor: not-allowed;
  font-style: italic;
}
.uw-option.is-disabled:hover { background: transparent; color: var(--mid-grey); }
.uw-soon {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--pink-light);
  color: var(--pink-dark);
  padding: 2px 8px;
  border-radius: 999px;
}

.results-area { max-width: 900px; margin: 0 auto; }

.results-count {
  font-size: 0.88rem;
  color: var(--mid-grey);
  margin-bottom: 20px;
}

.results-count strong { color: var(--charcoal); }

.facility-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.facility-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  border: 1.5px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: default;
}

.facility-card:hover {
  border-color: var(--green-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.facility-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.facility-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--charcoal);
}

.facility-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.badge {
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.badge-green  { background: var(--green-light);  color: var(--green-dark); }
.badge-pink   { background: var(--pink-light);   color: var(--pink-dark); }
.badge-grey   { background: var(--light-grey);   color: var(--mid-grey); }
.badge-online { background: #E8F4FD;             color: #2980B9; }

.facility-location {
  font-size: 0.88rem;
  color: var(--mid-grey);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.facility-desc {
  font-size: 0.92rem;
  color: var(--mid-grey);
  line-height: 1.65;
  margin-bottom: 16px;
}

.facility-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--light-grey);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--charcoal);
}

.meta-item .meta-label { color: var(--mid-grey); }

.facility-actions {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--mid-grey);
  display: none;
}

.no-results .no-results-emoji { font-size: 3rem; margin-bottom: 12px; }
.no-results p { font-size: 1rem; }

/* =========================================
   ANIMATIONS
   ========================================= */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* =========================================
   DECORATIVE SVG ICONS
   ========================================= */

.icon-deco { display: inline-block; }

/* =========================================
   RESPONSIVE — TABLET (≤ 900px)
   ========================================= */

@media (max-width: 900px) {
  section { padding: 56px 0; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 48px 0 64px;
    gap: 48px;
  }

  .hero-content { align-items: center; }
  .hero-story   { margin: 0 auto; }
  .hero-stats   { justify-content: center; }

  .hero-visual { min-height: 480px; }
  .polaroid-stack { width: 360px; height: 480px; }
  .polaroid-stack .polaroid:nth-child(1) { width: 260px; height: 300px; }
  .polaroid-stack .polaroid:nth-child(2) { width: 220px; height: 260px; top: 90px; }
  .polaroid-stack .polaroid:nth-child(3) { width: 210px; height: 250px; }

  .meaning-inner { grid-template-columns: 1fr; gap: 40px; }
  .meaning-visual { order: -1; }

  .pillars    { grid-template-columns: 1fr; gap: 20px; }
  .reasons    { grid-template-columns: 1fr; gap: 20px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .involve-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .filters { grid-template-columns: 1fr 1fr; }
  .filters .btn { grid-column: 1 / -1; }

  .event-banner-inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .event-banner-cta { width: 100%; }
  .event-banner-cta .btn { width: 100%; justify-content: center; }

  .featured-article { grid-template-columns: 1fr; }
  .featured-article-img { min-height: 240px; }
  .featured-article-body { padding: 32px; }

  .article-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   RESPONSIVE — MOBILE (≤ 540px)
   ========================================= */

@media (max-width: 540px) {
  section { padding: 48px 0; }
  .container { padding: 0 16px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { justify-content: center; }

  .hero-stats { gap: 20px; }

  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .photo-grid .polaroid img,
  .photo-placeholder { height: 140px; }

  .form-card { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }

  .filters { grid-template-columns: 1fr; }

  .facility-header { flex-direction: column; }
  .facility-actions { margin-left: 0; }

  .polaroid-stack { transform: scale(0.78); }

  .article-grid { grid-template-columns: 1fr; }
  .event-meta { gap: 14px; }
}
