/* ===== Project:IGYB — Calming Aesthetic Styles ===== */

:root {
  --sage: #7A9E7E;
  --sage-light: #A8C0AC;
  --sage-dark: #5C7E63;
  --teal: #2C5F5D;
  --teal-dark: #1F4543;
  --gold: #D4A574;
  --gold-dark: #B8895A;
  --cream: #FAF7F2;
  --cream-warm: #F4EEE3;
  --lavender: #C8B6D9;
  --lavender-soft: #E3DAEC;
  --charcoal: #2A2A2A;
  --gray: #6B6B6B;
  --gray-light: #D8D2C7;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 24px rgba(44, 95, 93, 0.08);
  --shadow-medium: 0 8px 32px rgba(44, 95, 93, 0.12);
  --shadow-strong: 0 16px 48px rgba(44, 95, 93, 0.16);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--teal-dark);
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.25rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.15rem; margin-bottom: 0.5rem; }

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--gold-dark); }

.muted { color: var(--gray); font-size: 0.95rem; }

/* ===== Background canvas ===== */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.bg-orbs::before,
.bg-orbs::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.bg-orbs::before {
  width: 480px; height: 480px;
  background: var(--sage-light);
  top: -120px; left: -120px;
  animation: float1 22s ease-in-out infinite;
}
.bg-orbs::after {
  width: 560px; height: 560px;
  background: var(--lavender);
  bottom: -180px; right: -180px;
  animation: float2 26s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 60px); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, -40px); }
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(44, 95, 93, 0.08);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand img { width: 40px; height: 40px; }
.brand-text {
  display: flex; flex-direction: column; line-height: 1;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--teal-dark);
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-top: 3px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  list-style: none;
  flex-wrap: nowrap;
}
.nav-links a {
  color: var(--charcoal);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0.7rem;
  white-space: nowrap;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--teal); background: rgba(44, 95, 93, 0.05); }
.nav-links a.active {
  color: var(--teal-dark);
  font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0.7rem; right: 0.7rem; bottom: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

/* Language dropdown switcher */
.lang-switch {
  position: relative;
}
.lang-current {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cream-warm);
  border: 1px solid var(--gray-light);
  color: var(--teal-dark);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  min-width: 72px;
  justify-content: center;
}
.lang-current:hover {
  background: var(--white);
  border-color: var(--sage-light);
  color: var(--teal);
}
.lang-current[aria-expanded="true"] {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}
.lang-arrow {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
  line-height: 1;
}
.lang-current[aria-expanded="true"] .lang-arrow {
  transform: rotate(180deg);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 170px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: 6px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 200;
}
.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu li { padding: 0; margin: 0; }
.lang-menu button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  background: transparent;
  border: none;
  color: var(--charcoal);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}
.lang-menu button:hover { background: var(--cream-warm); color: var(--teal-dark); }
.lang-menu button.active {
  background: var(--teal);
  color: var(--cream);
  font-weight: 600;
}
.lang-menu button .lang-code {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 600;
}
.lang-menu button.active .lang-code { color: rgba(250, 247, 242, 0.7); }

/* Language-specific body fonts */
html[lang="hi"] body { font-family: 'Noto Sans Devanagari', var(--font-sans); }
html[lang="pa"] body { font-family: 'Noto Sans Gurmukhi', var(--font-sans); }
html[lang="hi"] h1, html[lang="hi"] h2, html[lang="hi"] h3, html[lang="hi"] h4 {
  font-family: 'Noto Serif Devanagari', 'Noto Sans Devanagari', var(--font-serif);
}
html[lang="pa"] h1, html[lang="pa"] h2, html[lang="pa"] h3, html[lang="pa"] h4 {
  font-family: 'Noto Serif Gurmukhi', 'Noto Sans Gurmukhi', var(--font-serif);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* Hide brand tag a bit earlier to keep things breathing */
@media (max-width: 1240px) {
  .brand-tag { display: none; }
  .nav-links { gap: 0.15rem; }
  .nav-links a { font-size: 0.82rem; padding: 0.4rem 0.55rem; }
}

/* Switch to hamburger menu earlier so it never wraps */
@media (max-width: 1080px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1.5rem 2rem 2rem;
    gap: 0.25rem;
    transform: translateY(-150%);
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
    align-items: stretch;
  }
  .nav-links a {
    font-size: 1rem;
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(44, 95, 93, 0.06);
  }
  .nav-links a.active::after { display: none; }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .brand-tag { display: block; }
}

/* ===== Layout ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== Hero ===== */
.hero {
  padding: 6rem 0 5rem;
  text-align: center;
  position: relative;
}
.hero h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--sage-dark) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
  text-decoration: none;
}
.btn-primary {
  background: var(--teal);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--teal-dark);
  color: var(--cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.stat {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(44, 95, 93, 0.08);
  padding: 1.75rem 1.25rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--teal);
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.5rem;
  letter-spacing: 0.04em;
}

/* ===== Cards ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(44, 95, 93, 0.05);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--gold));
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--white);
  font-size: 1.5rem;
}
.card.lavender .card-icon { background: linear-gradient(135deg, var(--lavender-soft), var(--lavender)); }
.card.gold .card-icon { background: linear-gradient(135deg, #E8C99A, var(--gold)); }

/* ===== Section variants ===== */
.section-mission {
  background: linear-gradient(180deg, transparent 0%, var(--cream-warm) 100%);
}
.section-soft {
  background: var(--cream-warm);
  border-radius: var(--radius-xl);
  margin: 2rem 1.5rem;
  padding: 4rem 2rem;
}

/* ===== Mission row ===== */
.mission-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) {
  .mission-row { grid-template-columns: 1fr; gap: 2rem; }
}
.mission-image {
  background: linear-gradient(135deg, var(--sage-light), var(--lavender));
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission-image svg { width: 60%; height: 60%; opacity: 0.7; }

/* ===== Counties list ===== */
.counties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.county-chip {
  background: var(--white);
  color: var(--teal-dark);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
}
.county-chip:hover {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}

/* ===== Forms ===== */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-medium);
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .form-card { padding: 1.5rem; }
}
.form-group { margin-bottom: 1.75rem; }
.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--teal-dark);
  font-size: 0.95rem;
}
.form-help {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--charcoal);
  transition: var(--transition);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(122, 158, 126, 0.15);
}
.form-textarea { min-height: 120px; resize: vertical; }

.checkbox-group, .radio-group {
  display: grid;
  gap: 0.6rem;
}
.checkbox-item, .radio-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1.5px solid transparent;
}
.checkbox-item:hover, .radio-item:hover {
  background: var(--white);
  border-color: var(--sage-light);
}
.checkbox-item input, .radio-item input {
  margin-top: 4px;
  accent-color: var(--teal);
  width: 16px; height: 16px;
}
.checkbox-item span, .radio-item span {
  font-size: 0.93rem;
  color: var(--charcoal);
}

/* Feelings meter */
.feelings-meter {
  background: var(--cream-warm);
  padding: 1.5rem;
  border-radius: var(--radius-md);
}
.feelings-scale {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}
.feelings-scale label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  padding: 0.5rem 0;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 600;
}
.feelings-scale label:hover { background: var(--white); }
.feelings-scale input { display: none; }
.feelings-scale input:checked + .feelings-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 3px var(--white), 0 0 0 5px var(--teal);
}
.feelings-dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  transition: var(--transition);
}
.feelings-scale label:nth-child(1) .feelings-dot { background: #B45A4B; }
.feelings-scale label:nth-child(2) .feelings-dot { background: #C26A52; }
.feelings-scale label:nth-child(3) .feelings-dot { background: #D08661; }
.feelings-scale label:nth-child(4) .feelings-dot { background: #DEA572; }
.feelings-scale label:nth-child(5) .feelings-dot { background: #D9B679; }
.feelings-scale label:nth-child(6) .feelings-dot { background: #C9C081; }
.feelings-scale label:nth-child(7) .feelings-dot { background: #A5BC83; }
.feelings-scale label:nth-child(8) .feelings-dot { background: #84B281; }
.feelings-scale label:nth-child(9) .feelings-dot { background: #6DA37A; }
.feelings-scale label:nth-child(10) .feelings-dot { background: #4D8B71; }

.feelings-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

@media (max-width: 600px) {
  .feelings-scale { grid-template-columns: repeat(5, 1fr); }
}

/* Privacy callout */
.privacy-callout {
  background: linear-gradient(135deg, rgba(122, 158, 126, 0.08), rgba(200, 182, 217, 0.08));
  border-left: 4px solid var(--sage);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}
.privacy-callout h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}
.privacy-callout p { font-size: 0.92rem; margin-bottom: 0.5rem; color: var(--charcoal); }
.privacy-callout p:last-child { margin-bottom: 0; }

/* ===== Resource grid ===== */
.crisis-banner {
  background: linear-gradient(135deg, #B45A4B 0%, #C26A52 100%);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-medium);
}
.crisis-banner h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}
.crisis-banner p { color: rgba(255,255,255,0.95); margin-bottom: 0; }
.crisis-banner .btn {
  background: var(--white);
  color: #B45A4B;
  margin-left: auto;
  font-weight: 700;
}
.crisis-banner .btn:hover { background: var(--cream); color: #B45A4B; }

.resource-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--gray-light);
}
.resource-tab {
  background: none;
  border: none;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  margin-bottom: -1px;
}
.resource-tab.active {
  color: var(--teal-dark);
  border-bottom-color: var(--gold);
}
.resource-tab:hover { color: var(--teal); }

.resource-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
}
.resource-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid rgba(44, 95, 93, 0.05);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.resource-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--sage-light);
}
.resource-item h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 0.5rem;
}
.resource-source {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.resource-item p {
  font-size: 0.9rem;
  color: var(--gray);
  flex-grow: 1;
  margin-bottom: 1rem;
}
.resource-item a.resource-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.resource-item a.resource-link:hover { color: var(--gold-dark); }

.hotline-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.hotline {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--sage);
  box-shadow: var(--shadow-soft);
}
.hotline h4 { color: var(--teal-dark); margin-bottom: 0.4rem; font-family: var(--font-sans); font-size: 1rem; }
.hotline .number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.02em;
}
.hotline p { font-size: 0.88rem; color: var(--gray); margin-bottom: 0; }
.hotline.crisis { border-left-color: #B45A4B; }
.hotline.crisis .number { color: #B45A4B; }

/* ===== Footer ===== */
.footer {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 700px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer .brand-name, .footer .brand-tag { color: var(--cream); }
.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer a {
  color: rgba(250, 247, 242, 0.75);
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}
.footer a:hover { color: var(--cream); }
.footer p { color: rgba(250, 247, 242, 0.75); font-size: 0.92rem; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.6);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-light);
}
.contact-method:last-child { border-bottom: none; }
.contact-method .icon {
  width: 44px; height: 44px;
  background: var(--sage-light);
  color: var(--teal-dark);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-method h4 { color: var(--teal-dark); font-family: var(--font-sans); font-size: 0.95rem; margin-bottom: 0.2rem; }
.contact-method a, .contact-method p { font-size: 0.95rem; margin: 0; color: var(--charcoal); }

/* ===== Recognition strip ===== */
.recognition {
  background: var(--cream-warm);
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  margin: 3rem 0;
  text-align: center;
}
.recognition .badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.badge {
  text-align: center;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 0.75rem;
}
.badge-seal {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.badge:hover .badge-seal { transform: scale(1.05); box-shadow: var(--shadow-medium); }
.badge-seal svg { width: 64px; height: 64px; }
.badge .badge-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--teal-dark);
}
.badge .badge-sub {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 0.1rem;
  letter-spacing: 0.04em;
}

/* ===== Founder section ===== */
.founder {
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--lavender-soft) 100%);
  border-radius: var(--radius-xl);
  padding: 4rem 2.5rem;
  margin: 3rem 0;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 800px) {
  .founder { grid-template-columns: 1fr; padding: 2.5rem 1.5rem; gap: 2rem; text-align: center; }
}
.founder-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  position: relative;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.6s ease, transform 0.6s ease;
}
.founder-photo:hover img { filter: grayscale(0%) contrast(1); transform: scale(1.02); }
.founder-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(44, 95, 93, 0.1) 100%);
  pointer-events: none;
}
.founder-name {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--teal-dark);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}
.founder-role {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.founder-quote {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--teal-dark);
  line-height: 1.4;
  margin-bottom: 1.25rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}
@media (max-width: 800px) {
  .founder-photo { max-width: 280px; margin: 0 auto; }
  .founder-quote { padding-left: 0; border-left: none; border-top: 2px solid var(--gold); padding-top: 1rem; }
}
.founder-bio p { color: var(--charcoal); margin-bottom: 0.85rem; }

/* ===== Origin story timeline ===== */
.origin {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  margin: 3rem 0;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.origin::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage), var(--gold), var(--lavender));
}
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 800px) { .origin-grid { grid-template-columns: 1fr; } }
.origin-pin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--sage-light);
  color: var(--teal-dark);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== Community photo strip ===== */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}
@media (max-width: 700px) { .photo-strip { grid-template-columns: 1fr; } }
.photo-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--sage-light), var(--lavender));
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.photo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-tile .photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1rem 0.75rem;
  background: linear-gradient(180deg, transparent, rgba(31, 69, 67, 0.85));
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* ===== Region map illustration ===== */
.region-map {
  background: var(--cream-warm);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin: 3rem 0;
}
@media (max-width: 800px) { .region-map { grid-template-columns: 1fr; } }
.region-map svg { width: 100%; height: auto; }

/* Legacy logo display */
.legacy-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  max-width: 380px;
  margin: 0 auto;
}
.legacy-logo-wrap img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

/* ===== Toast / success ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--teal-dark);
  color: var(--cream);
  padding: 1rem 1.75rem;
  border-radius: 999px;
  box-shadow: var(--shadow-strong);
  font-size: 0.95rem;
  font-weight: 500;
  z-index: 200;
  transition: var(--transition);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ===== Utility ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.hidden { display: none !important; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
