/* ============================================
   GUUDSEED INITIATIVE — DESIGN TOKENS & STYLES
   "Rooted in Community, Growing Futures."
   ============================================ */

/* --- FONTS --- */
/* Zodiak (display/headings): organic, warm, wellness-rooted */
/* Work Sans (body): clean, professional, approachable */

/* --- TYPE SCALE --- */
:root {
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3rem,     0.5rem  + 7vw,    8rem);

  /* --- SPACING (4px base) --- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* --- FONTS --- */
  --font-display: 'Zodiak', 'Georgia', serif;
  --font-body: 'Work Sans', 'Helvetica Neue', sans-serif;

  /* --- RADIUS --- */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;

  /* --- TRANSITIONS --- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);

  /* --- CONTENT WIDTHS --- */
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
  --content-full: 100%;
}

/* ============================================
   GUUDSEED BRAND PALETTE
   Teal: trust, health, care
   Orange: warmth, energy, community
   Charcoal: grounding, strength
   ============================================ */

:root, [data-theme="light"] {
  /* Surfaces */
  --color-bg:             #faf9f6;
  --color-surface:        #ffffff;
  --color-surface-2:      #f5f3ef;
  --color-surface-offset: #efecea;
  --color-surface-dynamic: #e6e4df;
  --color-divider:        #dcd9d5;
  --color-border:         #d4d1ca;

  /* Text */
  --color-text:           #2D2D2D;
  --color-text-muted:     #6b6b6b;
  --color-text-faint:     #a3a3a3;
  --color-text-inverse:   #faf9f6;

  /* Primary (GuudSeed Teal) */
  --color-primary:        #2BAD96;
  --color-primary-hover:  #239382;
  --color-primary-active: #1b7a6b;
  --color-primary-highlight: #d9f0eb;

  /* Accent (GuudSeed Orange) */
  --color-accent:         #F4873B;
  --color-accent-hover:   #e07330;
  --color-accent-active:  #c96225;
  --color-accent-highlight: #fde8d5;

  /* Charcoal */
  --color-charcoal:       #2D2D2D;

  /* Success */
  --color-success:        #437a22;
  --color-error:          #c0392b;

  /* Shadows */
  --shadow-sm: 0 1px 2px oklch(0.2 0.01 80 / 0.06);
  --shadow-md: 0 4px 12px oklch(0.2 0.01 80 / 0.08);
  --shadow-lg: 0 12px 32px oklch(0.2 0.01 80 / 0.12);
}

/* --- DARK MODE --- */
[data-theme="dark"] {
  --color-bg:             #1a1918;
  --color-surface:        #222120;
  --color-surface-2:      #2a2928;
  --color-surface-offset: #1e1d1c;
  --color-surface-dynamic: #333231;
  --color-divider:        #3a3938;
  --color-border:         #444342;

  --color-text:           #e8e6e3;
  --color-text-muted:     #9a9896;
  --color-text-faint:     #6b6968;
  --color-text-inverse:   #1a1918;

  --color-primary:        #3fc4ab;
  --color-primary-hover:  #2fb89d;
  --color-primary-active: #259a84;
  --color-primary-highlight: #2a3b37;

  --color-accent:         #f69e5e;
  --color-accent-hover:   #f48b40;
  --color-accent-active:  #e87a2e;
  --color-accent-highlight: #3d3128;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
  --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
  --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #1a1918;
    --color-surface:        #222120;
    --color-surface-2:      #2a2928;
    --color-surface-offset: #1e1d1c;
    --color-surface-dynamic: #333231;
    --color-divider:        #3a3938;
    --color-border:         #444342;
    --color-text:           #e8e6e3;
    --color-text-muted:     #9a9896;
    --color-text-faint:     #6b6968;
    --color-text-inverse:   #1a1918;
    --color-primary:        #3fc4ab;
    --color-primary-hover:  #2fb89d;
    --color-primary-active: #259a84;
    --color-primary-highlight: #2a3b37;
    --color-accent:         #f69e5e;
    --color-accent-hover:   #f48b40;
    --color-accent-active:  #e87a2e;
    --color-accent-highlight: #3d3128;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.2);
    --shadow-md: 0 4px 12px oklch(0 0 0 / 0.3);
    --shadow-lg: 0 12px 32px oklch(0 0 0 / 0.4);
  }
}

/* ============================================
   COMPONENT STYLES
   ============================================ */

/* --- HEADER / NAV --- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-4) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
}
.logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}
.logo-tagline {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.nav { display: flex; align-items: center; gap: var(--space-6); }
.nav a {
  font-size: var(--text-sm);
  text-decoration: none;
  color: var(--color-text-muted);
  font-weight: 500;
  transition: color var(--transition-interactive);
}
.nav a:hover { color: var(--color-primary); }
.nav-donate {
  background: var(--color-accent);
  color: var(--color-text-inverse) !important;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  display: inline-block;
}
.nav-donate:hover {
  background: var(--color-accent-hover);
}
.theme-toggle {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-muted);
  border-radius: var(--radius-md);
  cursor: pointer;
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-offset); }
.mobile-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--color-text);
  border-radius: var(--radius-md);
}
.mobile-nav {
  display: none;
  padding: var(--space-4);
  border-top: 1px solid var(--color-divider);
  background: var(--color-bg);
}
.mobile-nav.active { display: block; }
.mobile-nav a {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  text-decoration: none;
  color: var(--color-text);
  font-weight: 500;
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.mobile-nav a:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-toggle { display: flex; }
}

/* --- HERO --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    oklch(0.15 0.01 80 / 0.85) 0%,
    oklch(0.15 0.01 80 / 0.6) 50%,
    oklch(0.15 0.01 80 / 0.4) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-16) var(--space-4);
  color: #fff;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: oklch(1 0 0 / 0.12);
  backdrop-filter: blur(8px);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 600;
  line-height: 1.05;
  max-width: 16ch;
  margin-bottom: var(--space-6);
}
.hero p {
  font-size: var(--text-lg);
  line-height: 1.6;
  max-width: 48ch;
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-8);
}
.hero-ctas {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-interactive);
  min-height: 48px;
}
.btn-primary {
  background: var(--color-accent);
  color: #fff;
}
.btn-primary:hover { background: var(--color-accent-hover); transform: translateY(-1px); }
.btn-primary:active { background: var(--color-accent-active); transform: translateY(0); }
.btn-secondary {
  background: oklch(1 0 0 / 0.15);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid oklch(1 0 0 / 0.2);
}
.btn-secondary:hover { background: oklch(1 0 0 / 0.25); }
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: var(--color-text-inverse); }
.btn-teal {
  background: var(--color-primary);
  color: #fff;
}
.btn-teal:hover { background: var(--color-primary-hover); transform: translateY(-1px); }

/* --- SECTIONS --- */
.section {
  padding: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-4);
}
.section-alt {
  background: var(--color-surface-2);
}
.container {
  max-width: var(--content-wide);
  margin-inline: auto;
}
.section-header {
  text-align: left;
  margin-bottom: var(--space-12);
  max-width: 640px;
}
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-3);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.section-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* --- IMPACT STATS --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
}
.stat-card {
  background: var(--color-surface);
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}
.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* --- PROGRAMS --- */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .programs-grid { grid-template-columns: 1fr 1fr; }
}
.program-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  transition: box-shadow var(--transition-interactive), transform var(--transition-interactive);
}
.program-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.program-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--color-surface-offset);
}
.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.program-card:hover .program-image img {
  transform: scale(1.03);
}

/* Logo image in header */
.logo-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  object-fit: contain;
  flex-shrink: 0;
}

.program-body {
  padding: var(--space-6);
}
.program-badge {
  display: inline-block;
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.program-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-text);
}
.program-body p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.program-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.program-features li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
}
.program-features li::before {
  content: '';
  width: 6px; height: 6px;
  min-width: 6px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  margin-top: 0.55em;
}

/* --- ABOUT / FOUNDER --- */
.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 768px) {
  .about-layout { grid-template-columns: 5fr 7fr; }
}
.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--color-surface-offset);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}
.about-content .founder-title {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.about-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-4);
}
.about-content blockquote {
  border-left: 3px solid var(--color-accent);
  padding-left: var(--space-5);
  margin: var(--space-6) 0;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  color: var(--color-text);
  font-style: italic;
  line-height: 1.5;
}
.credentials-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}
.credential {
  background: var(--color-surface-2);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* --- FULL-BLEED IMAGE BREAK --- */
.image-break {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  position: relative;
}
.image-break img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, oklch(0.15 0.06 180 / 0.6), oklch(0.15 0.06 180 / 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-break-text {
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  text-align: center;
  padding: var(--space-4);
  max-width: 18ch;
}

/* --- AWARDS --- */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}
.award-card {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.award-content h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.award-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* --- SERVICE AREAS --- */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}
.area-tag {
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
}

/* --- CTA BANNER --- */
.cta-banner {
  background: linear-gradient(135deg, #2BAD96, #1b7a6b);
  padding: clamp(var(--space-12), 8vw, var(--space-20)) var(--space-4);
  text-align: center;
  color: #fff;
}
[data-theme="dark"] .cta-banner {
  background: linear-gradient(135deg, #1b7a6b, #145a4f);
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-4);
}
.cta-banner p {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
  max-width: 52ch;
  margin-inline: auto;
  margin-bottom: var(--space-8);
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: #fff;
  color: var(--color-primary-active);
  font-weight: 600;
}
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid oklch(1 0 0 / 0.4);
}
.btn-ghost:hover { border-color: #fff; background: oklch(1 0 0 / 0.1); }

/* --- CONTACT / FOOTER --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.contact-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-primary-highlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.contact-details h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.contact-details p, .contact-details a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  line-height: 1.6;
}
.contact-details a:hover { color: var(--color-primary); }

.contact-form {
  background: var(--color-surface);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid oklch(from var(--color-text) l c h / 0.06);
}
.form-group {
  margin-bottom: var(--space-5);
}
.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--transition-interactive);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-highlight);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* --- FOOTER --- */
.footer {
  background: var(--color-charcoal);
  color: rgba(255,255,255,0.7);
  padding: var(--space-12) var(--space-4) var(--space-6);
}
[data-theme="dark"] .footer {
  background: #111110;
}
.footer-grid {
  max-width: var(--content-wide);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--space-4);
  color: rgba(255,255,255,0.6);
  max-width: 36ch;
}
.footer-brand .logo-name { color: #fff; }
.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: #fff;
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  padding: var(--space-1) 0;
  transition: color var(--transition-interactive);
}
.footer-col a:hover { color: var(--color-primary); }
.footer-bottom {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}
.footer-bottom p, .footer-bottom a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--color-primary); }

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* --- AWARDS WITH PHOTOS --- */
.award-image {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
}
.award-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.award-icon-block {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--color-accent-highlight);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin-bottom: var(--space-4);
}

/* --- GALLERY --- */
.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}
.gallery-tab {
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--transition-interactive);
}
.gallery-tab:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.gallery-tab.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-item-wide {
    grid-column: span 2;
  }
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface-offset);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  display: block;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--space-4) var(--space-4);
  background: linear-gradient(to top, oklch(0 0 0 / 0.75) 0%, oklch(0 0 0 / 0) 100%);
  color: #fff;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}
.gallery-caption strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.gallery-caption span {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

/* --- LIGHTBOX --- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: oklch(0 0 0 / 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius-lg);
  object-fit: contain;
}
.lightbox-caption {
  color: rgba(255,255,255,0.9);
  padding: var(--space-4) 0;
  font-size: var(--text-sm);
  max-width: 600px;
}
.lightbox-caption strong {
  display: block;
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}
.lightbox-caption span {
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.lightbox-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  background: oklch(0 0 0 / 0.4);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-interactive);
  z-index: 1001;
}
.lightbox-close:hover {
  background: oklch(0 0 0 / 0.7);
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.mx-auto { margin-inline: auto; }
