/* ===========================================
   JAHANARA MEMORIAL TRUST — SHARED STYLESHEET
   Used by every page on the site
   =========================================== */

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

:root {
  --deep-teal: #0B3D3F;
  --deep-teal-2: #145856;
  --warm-gold: #C4963C;
  --warm-gold-dark: #A67C28;
  --soft-cream: #FAF7F2;
  --rich-olive: #3A5A40;
  --blush: #E8D5C4;
  --charcoal: #1A1A1A;
  --warm-white: #FDFCFA;
  --muted-sage: #7A9B76;
  --deep-burgundy: #6B2D3E;
  --light-sage: #E8EDE5;
  --text-primary: #2C2C2C;
  --text-secondary: #5A5A5A;
  --text-light: #8A8A8A;
  --border-subtle: rgba(196, 150, 60, 0.18);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ========== ANNOUNCEMENT BAR ========== */
.nav-announcement {
  background: var(--deep-teal);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 11px 20px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-announcement a { color: var(--warm-gold); text-decoration: none; font-weight: 600; }
.nav-announcement a:hover { text-decoration: underline; }

/* ========== HEADER ========== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 252, 250, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow 0.3s ease;
}
header.scrolled { box-shadow: 0 2px 40px rgba(0,0,0,0.06); }

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--deep-teal);
}
.nav-logo-icon {
  width: 50px;
  height: 50px;
  background: var(--deep-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  position: relative;
}
.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(196,150,60,0.4);
  border-radius: 50%;
}
.nav-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

nav ul.desktop-nav {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
nav ul li a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.87rem;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
nav ul li a:hover { background: var(--light-sage); color: var(--deep-teal); }
nav ul li a.active { color: var(--deep-teal); background: var(--light-sage); }

.nav-cta {
  background: linear-gradient(180deg, var(--deep-teal-2), var(--deep-teal)) !important;
  color: white !important;
  font-weight: 600 !important;
  padding: 11px 26px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  margin-left: 12px;
  box-shadow: 0 3px 8px rgba(11,61,63,0.25), inset 0 1px 0 rgba(255,255,255,0.08) !important;
}
.nav-cta:hover { background: linear-gradient(180deg, var(--deep-teal), #082e30) !important; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(11,61,63,0.35) !important; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 22px; }

/* ========== BUTTONS ========== */
.btn-primary {
  background: linear-gradient(180deg, var(--deep-teal-2) 0%, var(--deep-teal) 100%);
  color: white;
  padding: 17px 38px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px rgba(11,61,63,0.3), inset 0 1px 0 rgba(255,255,255,0.1);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  background: linear-gradient(180deg, var(--deep-teal) 0%, #082e30 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,61,63,0.4), inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(11,61,63,0.3), inset 0 2px 4px rgba(0,0,0,0.15);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  color: white;
  padding: 17px 38px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.45); transform: translateY(-1px); }

.btn-light {
  background: transparent;
  color: var(--deep-teal);
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  border: 2px solid var(--deep-teal);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-light:hover {
  background: linear-gradient(180deg, var(--deep-teal-2) 0%, var(--deep-teal) 100%);
  color: white;
  border-color: var(--deep-teal);
  box-shadow: 0 4px 12px rgba(11,61,63,0.3);
  transform: translateY(-1px);
}
/* Gold accent button variant */
.btn-gold {
  background: linear-gradient(180deg, var(--warm-gold) 0%, var(--warm-gold-dark) 100%);
  color: white;
  padding: 17px 38px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(196,150,60,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.btn-gold:hover {
  background: linear-gradient(180deg, var(--warm-gold-dark) 0%, #8a6820 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,150,60,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* ========== HERO (HOMEPAGE) ========== */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-teal);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, var(--deep-teal) 0%, rgba(11,61,63,0.92) 35%, rgba(11,61,63,0.55) 70%, rgba(11,61,63,0.4) 100%),
    radial-gradient(ellipse at 80% 30%, rgba(196,150,60,0.15) 0%, transparent 60%);
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content { max-width: 720px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(196,150,60,0.12);
  border: 1px solid rgba(196,150,60,0.35);
  color: var(--warm-gold);
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 32px;
  animation: fadeSlideUp 0.9s ease 0.2s both;
}
.hero-badge::before { content: '✦'; font-size: 0.7rem; }

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  color: white;
  line-height: 1.08;
  font-weight: 300;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.9s ease 0.4s both;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; font-weight: 500; color: var(--warm-gold); }
.hero-subtitle {
  color: rgba(255,255,255,0.78);
  font-size: 1.13rem;
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 44px;
  animation: fadeSlideUp 0.9s ease 0.6s both;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s ease 0.8s both;
  margin-bottom: 60px;
}
.hero-stats {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.9s ease 1s both;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 720px;
}
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--warm-gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== PAGE HERO (sub-pages) — Enhanced with variants ========== */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--deep-teal);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(1.1);
  transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.page-hero:hover .page-hero-bg img { transform: scale(1.04); }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(11,61,63,0.85) 0%, rgba(11,61,63,0.5) 50%, rgba(11,61,63,0.7) 100%),
    radial-gradient(ellipse at 70% 20%, rgba(196,150,60,0.12) 0%, transparent 55%);
}
/* Decorative gold line at bottom of hero */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
  z-index: 3;
}
.page-hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 100px 40px 60px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
  background: rgba(0,0,0,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.08);
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--warm-gold); }
.breadcrumb span { color: var(--warm-gold); font-weight: 600; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: white;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 800px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.15s forwards;
}
.page-hero h1 em { font-style: italic; font-weight: 500; color: var(--warm-gold); }
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
  opacity: 0;
  animation: fadeSlideUp 0.8s 0.35s forwards;
}

/* Hero variants — each page gets a unique gradient/overlay personality */
.page-hero--about .page-hero-bg::after {
  background: linear-gradient(135deg, rgba(11,61,63,0.95) 0%, rgba(11,61,63,0.6) 60%, rgba(196,150,60,0.25) 100%);
}
.page-hero--about { min-height: 55vh; }
.page-hero--about .page-hero-inner { padding-bottom: 80px; }
.page-hero--about::after { background: var(--warm-gold); height: 4px; }

.page-hero--focus .page-hero-bg::after {
  background: linear-gradient(180deg, rgba(58,90,64,0.85) 0%, rgba(11,61,63,0.9) 100%);
}
.page-hero--focus .page-hero-bg img { filter: brightness(0.3) saturate(1.3); }
.page-hero--focus { min-height: 48vh; }
.page-hero--focus::after { background: linear-gradient(90deg, var(--muted-sage), var(--deep-teal), var(--muted-sage)); }

.page-hero--stories .page-hero-bg::after {
  background: linear-gradient(200deg, rgba(107,45,62,0.5) 0%, rgba(11,61,63,0.92) 50%);
}
.page-hero--stories .page-hero-bg img { filter: brightness(0.25) saturate(0.8) contrast(1.1); }
.page-hero--stories { min-height: 50vh; }
.page-hero--stories::after { background: linear-gradient(90deg, transparent 20%, var(--warm-gold) 50%, transparent 80%); }

.page-hero--team .page-hero-bg::after {
  background: linear-gradient(160deg, rgba(20,88,86,0.9) 0%, rgba(11,61,63,0.7) 100%);
}
.page-hero--team .page-hero-bg img { filter: brightness(0.3) saturate(1.2); }
.page-hero--team { min-height: 46vh; }
.page-hero--team h1 { max-width: 600px; }
.page-hero--team::after { background: var(--deep-teal-2); height: 4px; }

.page-hero--donate .page-hero-bg::after {
  background: linear-gradient(180deg, rgba(196,150,60,0.2) 0%, rgba(11,61,63,0.95) 40%);
}
.page-hero--donate .page-hero-bg img { filter: brightness(0.2) saturate(1.1); }
.page-hero--donate { min-height: 45vh; }
.page-hero--donate h1 { color: var(--warm-gold); }
.page-hero--donate h1 em { color: white; }
.page-hero--donate::after { background: linear-gradient(90deg, var(--warm-gold), var(--deep-teal)); }

.page-hero--contact .page-hero-bg::after {
  background: linear-gradient(170deg, rgba(11,61,63,0.92) 0%, rgba(20,88,86,0.75) 100%);
}
.page-hero--contact .page-hero-bg img { filter: brightness(0.35) saturate(1.0); }
.page-hero--contact { min-height: 44vh; }
.page-hero--contact::after { background: var(--deep-teal); height: 4px; }

/* Story detail heroes — cinematic, darker, more dramatic */
.page-hero--story .page-hero-bg::after {
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 30%, rgba(11,61,63,0.9) 100%);
}
.page-hero--story .page-hero-bg img { filter: brightness(0.3) contrast(1.15) saturate(0.9); }
.page-hero--story { min-height: 55vh; align-items: center; }
.page-hero--story::after { background: linear-gradient(90deg, transparent, rgba(196,150,60,0.6), transparent); }
/* Subtle grain texture on all page heroes */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
/* Glass morphism stat badge for page heroes */
.hero-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 20px;
  margin-top: 28px;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}
.hero-stat-badge .stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--warm-gold);
  line-height: 1;
}
.hero-stat-badge .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========== TRUST BAR ========== */
.trust-bar {
  background: var(--soft-cream);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 28px 40px;
}
.trust-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.trust-icon {
  width: 32px;
  height: 32px;
  background: var(--deep-teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gold);
  font-size: 0.85rem;
  font-weight: 700;
}

/* ========== SECTIONS ========== */
.section {
  padding: 110px 40px;
  max-width: 1320px;
  margin: 0 auto;
}
.section-full { padding: 110px 40px; }
.section-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 110px 40px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--warm-gold);
  font-weight: 600;
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1.5px;
  background: var(--warm-gold);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 22px;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; font-weight: 500; color: var(--deep-teal); }
.section-title strong { font-weight: 700; color: var(--deep-teal); }
.section-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 660px;
  line-height: 1.8;
}

/* ========== ORIGIN / EPITAPH ========== */
.origin {
  background: var(--soft-cream);
  position: relative;
  overflow: hidden;
}
.origin-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.epitaph-frame {
  background: linear-gradient(160deg, var(--deep-teal) 0%, var(--deep-teal-2) 100%);
  border-radius: 4px;
  padding: 56px 44px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(11,61,63,0.25);
  border: 1px solid rgba(196,150,60,0.3);
}
.epitaph-frame::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(196,150,60,0.25);
  border-radius: 2px;
  pointer-events: none;
}
.epitaph-frame::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(196,150,60,0.2), transparent 70%);
  border-radius: 50%;
}
.epitaph-ornament {
  text-align: center;
  font-size: 1.4rem;
  color: var(--warm-gold);
  letter-spacing: 0.5em;
  margin-bottom: 28px;
  position: relative;
}
.epitaph-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 8px;
  position: relative;
}
.epitaph-dates {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 36px;
  position: relative;
  font-weight: 500;
}
.epitaph-dates::after {
  content: '';
  display: block;
  width: 50px;
  height: 1px;
  background: var(--warm-gold);
  margin: 18px auto 0;
}
.epitaph-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
  position: relative;
  margin-bottom: 12px;
}
.epitaph-text-2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  text-align: center;
  line-height: 1.55;
  color: var(--warm-gold);
  position: relative;
  font-weight: 500;
}
.epitaph-attribution {
  text-align: center;
  margin-top: 36px;
  position: relative;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}
.origin-text { padding-top: 8px; }
.origin-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--deep-teal);
  margin-bottom: 24px;
  line-height: 1.2;
}
.origin-text p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.85;
  font-size: 1rem;
}
.origin-text p.lead { color: var(--text-primary); font-size: 1.08rem; font-weight: 500; }
.origin-text p.poetic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--deep-teal);
  border-left: 2px solid var(--warm-gold);
  padding-left: 24px;
  margin: 28px 0;
}
.origin-signature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  margin-top: 16px;
}
.origin-signature-mark {
  width: 50px;
  height: 50px;
  background: var(--deep-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.origin-signature-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--deep-teal);
  font-weight: 600;
}
.origin-signature-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-style: normal;
  color: var(--text-light);
  margin-top: 2px;
  font-weight: 400;
}

/* ========== FOCUS CARDS ========== */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.focus-card {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.focus-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  border-color: rgba(196,150,60,0.3);
}
.focus-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.focus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.focus-card:hover .focus-image img { transform: scale(1.05); }
.focus-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,61,63,0.4) 100%);
}
.focus-image-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  color: var(--deep-teal);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  z-index: 2;
}
.focus-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.focus-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 14px;
}
.focus-body p {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
}
.focus-stat {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
}
.focus-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--warm-gold);
  line-height: 1;
}
.focus-stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}
.focus-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--warm-gold);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========== STORIES ========== */
.stories-section { background: var(--soft-cream); }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.story-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
}
.story-image {
  height: 280px;
  position: relative;
  overflow: hidden;
}
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.story-card:hover .story-image img { transform: scale(1.05); }
.story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
}
.story-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--deep-teal);
  z-index: 2;
}
.story-name {
  position: absolute;
  bottom: 20px;
  left: 24px;
  right: 24px;
  color: white;
  z-index: 2;
}
.story-name-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--warm-gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.story-name-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.story-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.story-body h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
  line-height: 1.3;
}
.story-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
  flex: 1;
}
.story-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--deep-teal);
  border-left: 2px solid var(--warm-gold);
  padding-left: 16px;
  line-height: 1.55;
  margin-top: auto;
}
.story-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--warm-gold);
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: gap 0.2s;
}
.story-card:hover .story-read-more { gap: 12px; }

/* ========== FOUNDER BANNER ========== */
.founder-banner {
  background: var(--deep-teal);
  color: white;
  padding: 110px 40px;
  position: relative;
  overflow: hidden;
}
.founder-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(196,150,60,0.1), transparent 60%);
}
.founder-banner-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.founder-image {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(196,150,60,0.4);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
}
.founder-image img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}
.founder-content .section-label { color: var(--warm-gold); }
.founder-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1.25;
  color: white;
  margin-bottom: 32px;
}
.founder-content h2 em { font-style: italic; color: var(--warm-gold); font-weight: 500; }
.founder-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--warm-gold);
  line-height: 0.5;
  margin-bottom: 16px;
  opacity: 0.6;
}
.founder-content p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.founder-attribution {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.founder-attribution-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--warm-gold);
  margin-bottom: 4px;
}
.founder-attribution-role {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ========== ACCOUNTABILITY ========== */
.accountability { background: linear-gradient(135deg, #f8f5f0 0%, var(--soft-cream) 100%); }
.acc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.acc-card {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s;
}
.acc-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.acc-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: var(--light-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.acc-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 10px;
}
.acc-card p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.65;
}

/* ========== PARTNERS ========== */
.partners-track {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 32px 16px;
  background: var(--soft-cream);
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s;
}
.partner-item:hover { background: white; transform: translateY(-3px); box-shadow: 0 15px 40px rgba(0,0,0,0.05); }
.partner-logo {
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border: 1px solid var(--border-subtle);
}
.partner-name {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
  font-weight: 500;
  line-height: 1.4;
}

/* ========== CTA ========== */
.cta-section {
  background: var(--deep-teal);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196,150,60,0.15), transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(122,155,118,0.08), transparent 50%);
}
.cta-inner {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: white;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.18;
}
.cta-inner h2 em { font-style: italic; color: var(--warm-gold); font-weight: 500; }
.cta-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== STORY DETAIL PAGE ========== */
.story-detail {
  max-width: 880px;
  margin: 0 auto;
  padding: 100px 40px;
}
.story-meta {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-bottom: 32px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.story-meta-item { display: flex; flex-direction: column; gap: 4px; }
.story-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 600;
}
.story-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--deep-teal);
  font-weight: 600;
}
.story-body-content { font-size: 1.08rem; line-height: 1.85; color: var(--text-secondary); }
.story-body-content p { margin-bottom: 24px; }
.story-body-content p.lead {
  font-size: 1.3rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--deep-teal);
  line-height: 1.55;
  margin-bottom: 36px;
}
.story-body-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.story-body-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--deep-teal);
  border-left: 3px solid var(--warm-gold);
  padding: 16px 0 16px 32px;
  margin: 36px 0;
  line-height: 1.5;
}
.story-body-content figure { margin: 40px 0; }
.story-body-content figure img {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--border-subtle);
}
.story-body-content figcaption {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
  font-style: italic;
}
.story-cost-box {
  background: var(--soft-cream);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--warm-gold);
  padding: 32px;
  margin: 40px 0;
  border-radius: 4px;
}
.story-cost-box h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 16px;
}
.story-cost-box ul {
  list-style: none;
  margin-bottom: 20px;
}
.story-cost-box ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-subtle);
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.story-cost-box ul li:last-child { border-bottom: none; }
.story-cost-box ul li strong { color: var(--deep-teal); font-weight: 600; }
.story-cost-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 2px solid var(--warm-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-teal);
}

.story-cta-banner {
  background: var(--deep-teal);
  border-radius: 4px;
  padding: 48px;
  margin: 56px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.story-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,150,60,0.15), transparent 60%);
}
.story-cta-banner > * { position: relative; z-index: 2; }
.story-cta-banner h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.story-cta-banner h3 em { color: var(--warm-gold); font-style: italic; }
.story-cta-banner p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  font-size: 1rem;
}

/* ========== FORM ========== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field { margin-bottom: 20px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 10px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-subtle);
  background: white;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--warm-gold);
  box-shadow: 0 0 0 3px rgba(196,150,60,0.1);
}
.form-field textarea { resize: vertical; min-height: 140px; }

/* ========== DONATE PAGE ========== */
.donate-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.donate-amounts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.donate-amount {
  background: white;
  border: 2px solid var(--border-subtle);
  border-radius: 4px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.donate-amount:hover, .donate-amount.active {
  border-color: var(--warm-gold);
  background: rgba(196,150,60,0.05);
}
.donate-amount-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--deep-teal);
  line-height: 1;
  margin-bottom: 6px;
}
.donate-amount-impact {
  font-size: 0.74rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.donate-methods {
  background: var(--soft-cream);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 36px;
  position: sticky;
  top: 110px;
}
.donate-methods h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 20px;
}
.donate-method {
  padding: 18px 0;
  border-bottom: 1px dashed var(--border-subtle);
}
.donate-method:last-child { border-bottom: none; }
.donate-method-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.donate-method-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
  word-break: break-word;
}

/* ========== FOOTER ========== */
footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.6);
  padding: 90px 40px 40px;
}
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 320px;
}
.footer-brand .nav-logo { margin-bottom: 4px; }
.footer-brand .nav-logo-icon { background: rgba(255,255,255,0.08); }
.footer-brand .nav-logo-text { color: white; }
.footer-brand .nav-logo-text span { color: rgba(255,255,255,0.4); }
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.footer-socials a:hover { background: var(--warm-gold); color: white; }
.footer-col h4 {
  color: white;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--warm-gold); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-contact-item span { color: var(--warm-gold); margin-top: 2px; }
.footer-reg {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.footer-reg-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 7px 13px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links {
  display: flex;
  gap: 28px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--warm-gold); }

/* ========== RESPONSIVE — Mobile-First Enhancement ========== */
@media (max-width: 1024px) {
  .origin-inner { grid-template-columns: 1fr; gap: 56px; }
  .focus-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid { grid-template-columns: 1fr 1fr; }
  .acc-grid { grid-template-columns: 1fr 1fr; }
  .partners-track { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .founder-banner-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-image img { height: 420px; }
  .donate-grid { grid-template-columns: 1fr; gap: 40px; }
  .donate-methods { position: static; }
}
@media (max-width: 768px) {
  .nav-container { padding: 0 16px; height: 64px; }
  .nav-logo-icon { width: 38px !important; height: 38px !important; }
  .nav-logo-text { font-size: 1.1rem; }
  .nav-logo-text span { font-size: 0.55rem; }
  nav ul.desktop-nav { display: none; }
  .mobile-toggle { display: block; }
  .section, .section-full, .founder-banner, .section-narrow { padding: 56px 16px; }
  .hero { min-height: auto; }
  .hero-inner { padding: 90px 16px 60px; }
  .hero h1 { font-size: 2.2rem; margin-bottom: 16px; }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 28px; }
  .hero-badge { font-size: 0.65rem; padding: 6px 14px; margin-bottom: 20px; }
  .hero-stats { gap: 24px; padding-top: 24px; margin-top: 24px; }
  .hero-stat-num { font-size: 1.8rem; }
  .hero-stat-label { font-size: 0.68rem; }
  .hero-actions { gap: 10px; }
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 0.88rem; width: 100%; justify-content: center; }
  .page-hero { min-height: 40vh; align-items: flex-end; }
  .page-hero-inner { padding: 80px 16px 40px; }
  .page-hero h1 { font-size: 1.9rem; }
  .page-hero p { font-size: 0.92rem; }
  .breadcrumb { font-size: 0.65rem; padding: 6px 12px; }
  .focus-grid, .stories-grid, .form-grid { grid-template-columns: 1fr; }
  .focus-image { height: 200px; }
  .story-image { height: 240px; }
  .acc-grid { grid-template-columns: 1fr; gap: 12px; }
  .acc-card { padding: 28px 20px; }
  .partners-track { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .partner-item { padding: 20px 10px; }
  .partner-logo { width: 48px; height: 48px; }
  .partner-name { font-size: 0.7rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .trust-bar { padding: 14px 16px; }
  .trust-bar-inner { gap: 12px; justify-content: flex-start; }
  .trust-item { font-size: 0.72rem; }
  .trust-ic { width: 20px; height: 20px; font-size: 0.65rem; }
  .epitaph-frame { padding: 32px 20px; }
  .epitaph-name { font-size: 1.8rem; }
  .epitaph-text, .epitaph-text-2 { font-size: 1.15rem; }
  .origin-text h3 { font-size: 1.6rem; }
  .section-title { font-size: 1.7rem; }
  .section-label { font-size: 0.68rem; }
  .founder-banner { padding: 56px 16px; }
  .founder-content h2 { font-size: 1.6rem; }
  .founder-quote-mark { font-size: 3.5rem; }
  .founder-image img { height: 320px; }
  .story-detail { padding: 48px 16px; }
  .story-meta { gap: 16px; }
  .story-body-content h3 { font-size: 1.4rem; }
  .story-body-content blockquote { font-size: 1.2rem; padding-left: 20px; }
  .story-cta-banner { padding: 32px 20px; }
  .story-cta-banner h3 { font-size: 1.4rem; }
  .story-cost-box { padding: 24px 20px; }
  .cta-section { padding: 56px 16px; }
  .cta-inner h2 { font-size: 1.8rem; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .donate-interactive { padding: 28px 20px; }
  .donate-amount-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .donate-amount-card { padding: 16px 10px; }
  .donate-amount-value { font-size: 1.3rem; }
  .bank-details-card { padding: 20px; }
  .nav-announcement { font-size: 0.68rem; padding: 8px 12px; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .section-title { font-size: 1.5rem; }
  .partners-track { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { flex-direction: column; gap: 8px; align-items: flex-start; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .donate-amount-grid { grid-template-columns: 1fr 1fr; }
}
/* Touch-friendly tap targets */
@media (hover: none) {
  .focus-card:hover, .story-card:hover, .team-card:hover, .acc-card:hover { transform: none; box-shadow: none; }
  .page-hero:hover .page-hero-bg img { transform: none; }
  a, button { min-height: 44px; }
}
/* Smooth scroll for all devices */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
  .reveal, .reveal-left, .reveal-scale { opacity: 1; transform: none; }
}

/* ========== PREMIUM EFFECTS ========== */
/* Smooth underline on links */
.footer-col ul li a,
.focus-card-link,
.story-read-more {
  position: relative;
}
.footer-col ul li a::after,
.focus-card-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--warm-gold);
  transition: width 0.3s ease;
}
.footer-col ul li a:hover::after,
.focus-card-link:hover::after { width: 100%; }

/* Glass morphism for nav */
@supports (backdrop-filter: blur(20px)) {
  header {
    background: rgba(253, 252, 250, 0.85) !important;
  }
}

/* Smooth image loading */
img {
  opacity: 1;
  transition: opacity 0.4s ease;
}
img[loading="lazy"] {
  opacity: 0;
}
img[loading="lazy"].loaded,
img[loading="lazy"]:not([src=""]) {
  opacity: 1;
}

/* Selection color */
::selection {
  background: rgba(196, 150, 60, 0.25);
  color: var(--deep-teal);
}

/* Scrollbar styling (webkit) */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--soft-cream); }
::-webkit-scrollbar-thumb {
  background: var(--deep-teal);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--warm-gold); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== ENHANCED ANIMATIONS ========== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes goldPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* Parallax subtle */
.parallax-bg { transition: transform 0.1s linear; }

/* Counter animation helper */
.counter-animated { display: inline-block; }

/* Smooth image zoom on scroll */
.zoom-on-scroll img { transition: transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.zoom-on-scroll.visible img { transform: scale(1.05); }

/* Card tilt on hover */
.tilt-hover { transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.tilt-hover:hover { transform: translateY(-8px) rotate(-0.5deg); }

/* Gold shimmer line */
.gold-shimmer {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
}

/* ========== TEAM PAGE ========== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.team-card {
  text-align: center;
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
  padding: 0 0 32px 0;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.08);
  border-color: rgba(196,150,60,0.3);
}
.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  background: var(--soft-cream);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--deep-teal), var(--deep-teal-2));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-initials {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(196,150,60,0.15);
  border: 2px solid rgba(196,150,60,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--warm-gold);
}
.team-info { padding: 28px 24px 0; }
.team-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 6px;
}
.team-role {
  color: var(--warm-gold);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 14px;
}
.team-bio {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  text-align: left;
  padding: 0 24px;
}

.core-team-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.core-team-card {
  text-align: center;
  transition: all 0.3s;
}
.core-team-card:hover { transform: translateY(-4px); }
.core-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-subtle);
  margin-bottom: 14px;
  background: var(--soft-cream);
  transition: border-color 0.3s;
}
.core-team-card:hover .core-photo { border-color: var(--warm-gold); }
.core-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.core-team-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-teal);
}

/* ========== ENHANCED DONATE PAGE ========== */
.donate-interactive {
  background: white;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.donate-interactive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--deep-teal), var(--warm-gold));
}
.donate-step {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.donate-step-num {
  width: 36px;
  height: 36px;
  background: var(--deep-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.donate-step-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-teal);
}
.donate-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.donate-amount-card {
  background: white;
  border: 2px solid var(--border-subtle);
  border-radius: 8px;
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}
.donate-amount-card:hover,
.donate-amount-card.selected {
  border-color: var(--warm-gold);
  background: rgba(196,150,60,0.04);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,150,60,0.12);
}
.donate-amount-card.selected::after {
  content: '✓';
  position: absolute;
  top: 8px;
  right: 10px;
  color: var(--warm-gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.donate-amount-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-teal);
  line-height: 1;
  margin-bottom: 6px;
}
.donate-amount-desc {
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.bank-details-card {
  background: var(--soft-cream);
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--warm-gold);
  border-radius: 4px;
  padding: 28px 32px;
  margin-top: 24px;
}
.bank-details-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep-teal);
  margin-bottom: 16px;
}
.bank-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-subtle);
  font-size: 0.92rem;
}
.bank-detail-row:last-child { border-bottom: none; }
.bank-detail-row .label { color: var(--text-light); }
.bank-detail-row .value { color: var(--deep-teal); font-weight: 600; font-family: 'DM Sans', sans-serif; }

/* Copy button */
.copy-btn {
  background: var(--deep-teal);
  color: white;
  border: none;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 0.75rem;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s;
  margin-left: 8px;
}
.copy-btn:hover { background: var(--warm-gold); }
.copy-btn.copied { background: var(--muted-sage); }

@media (max-width: 1024px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .core-team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
  .core-team-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-amount-grid { grid-template-columns: 1fr 1fr; }
}

