/* ============================================
   1000 Days Foundation — Design Tokens & Styles
   Warm, nurturing palette for family & children
   ============================================ */

:root {
  /* Type Scale */
  --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);

  /* Spacing */
  --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;

  /* 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%;

  /* Font families — PingFang Light per brand guidelines, Noto Sans TC as web fallback */
  --font-display: 'PingFang TC', 'PingFang HK', 'PingFang SC', 'Noto Sans TC', -apple-system, 'Microsoft JhengHei', sans-serif;
  --font-body: 'PingFang TC', 'PingFang HK', 'PingFang SC', 'Noto Sans TC', -apple-system, 'Microsoft JhengHei', sans-serif;
  --font-weight-light: 300;
}

/* ============================================
   Color Palette — Warm Nurturing Theme
   Coral-peach accent, soft cream surfaces
   ============================================ */

:root, [data-theme="light"] {
  /* Surfaces — warm light background complementing brand coral */
  --color-bg:             #fdf9f8;
  --color-surface:        #ffffff;
  --color-surface-2:      #fefcfb;
  --color-surface-offset: #f7f1ef;
  --color-surface-offset-2: #f0e9e6;
  --color-surface-dynamic: #e8dfdc;
  --color-divider:        #e0d6d3;
  --color-border:         #d6ccc8;

  /* Text */
  --color-text:           #2a2524;
  --color-text-muted:     #6e6462;
  --color-text-faint:     #b0a5a2;
  --color-text-inverse:   #ffffff;

  /* Primary — Brand Coral #ff6f61 */
  --color-primary:        #ff6f61;
  --color-primary-hover:  #e85d50;
  --color-primary-active: #d04a3e;
  --color-primary-highlight: #fff0ee;

  /* Secondary — Brand Mint #98d8c4 */
  --color-secondary:      #98d8c4;
  --color-secondary-hover: #7cc9b0;
  --color-secondary-active: #62b89c;

  /* Accent — Brand Gold #ffce54 */
  --color-accent:         #ffce54;
  --color-accent-hover:   #f0bf3e;

  /* Semantic */
  --color-success:        #6aba6e;
  --color-warning:        #f0a830;
  --color-error:          #e05050;

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

/* Dark Mode */
[data-theme="dark"] {
  --color-bg:             #1c1918;
  --color-surface:        #222020;
  --color-surface-2:      #282525;
  --color-surface-offset: #201d1c;
  --color-surface-offset-2: #2a2625;
  --color-surface-dynamic: #363130;
  --color-divider:        #302c2a;
  --color-border:         #433e3c;
  --color-text:           #e0d8d5;
  --color-text-muted:     #8e8582;
  --color-text-faint:     #5e5755;
  --color-text-inverse:   #1c1918;
  --color-primary:        #ff8577;
  --color-primary-hover:  #ff6f61;
  --color-primary-active: #e85d50;
  --color-primary-highlight: #3d2a27;
  --color-secondary:      #a8e4d0;
  --color-secondary-hover: #98d8c4;
  --color-secondary-active: #7cc9b0;
  --color-accent:         #ffd76a;
  --color-accent-hover:   #ffce54;
  --color-success:        #7ec882;
  --color-warning:        #ffd76a;
  --color-error:          #e86868;
  --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:             #1c1918;
    --color-surface:        #222020;
    --color-surface-2:      #282525;
    --color-surface-offset: #201d1c;
    --color-surface-offset-2: #2a2625;
    --color-surface-dynamic: #363130;
    --color-divider:        #302c2a;
    --color-border:         #433e3c;
    --color-text:           #e0d8d5;
    --color-text-muted:     #8e8582;
    --color-text-faint:     #5e5755;
    --color-text-inverse:   #1c1918;
    --color-primary:        #ff8577;
    --color-primary-hover:  #ff6f61;
    --color-primary-active: #e85d50;
    --color-primary-highlight: #3d2a27;
    --color-secondary:      #a8e4d0;
    --color-secondary-hover: #98d8c4;
    --color-secondary-active: #7cc9b0;
    --color-accent:         #ffd76a;
    --color-accent-hover:   #ffce54;
    --color-success:        #7ec882;
    --color-warning:        #ffd76a;
    --color-error:          #e86868;
    --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);
  }
}

/* ============================================
   Global Styles
   ============================================ */

body {
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

main { flex: 1; }

a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover {
  color: var(--color-primary-hover);
}

/* ============================================
   Header & Navigation
   ============================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid oklch(from var(--color-text) l c h / 0.08);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-3) var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.logo-link svg {
  width: 40px;
  height: 40px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
  color: var(--color-text);
}

.logo-text span {
  display: block;
  font-size: var(--text-xs);
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text-muted);
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-1);
  }
}

.nav-desktop a {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  text-decoration: none;
  white-space: nowrap;
  transition: color var(--transition-interactive), background var(--transition-interactive);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--color-text);
  background: var(--color-surface-offset);
}

.nav-desktop a.nav-cta {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-weight: 500;
}

.nav-desktop a.nav-cta:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-inverse);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* Theme toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  transition: background var(--transition-interactive), color var(--transition-interactive);
}
.theme-toggle:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

/* Mobile hamburger */
.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text);
}
.hamburger:hover {
  background: var(--color-surface-offset);
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: var(--color-bg);
  padding: var(--space-4);
}

.mobile-nav.open {
  display: flex;
  flex-direction: column;
}

.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: var(--space-8);
}

.mobile-nav-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text);
}

.mobile-nav a {
  display: block;
  font-size: var(--text-lg);
  font-family: var(--font-display);
  color: var(--color-text);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-divider);
  text-decoration: none;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav a.nav-cta {
  display: inline-block;
  margin-top: var(--space-6);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  text-align: center;
  border-bottom: none;
  font-size: var(--text-base);
  font-family: var(--font-body);
  font-weight: 500;
}

/* ============================================
   Hero Section
   ============================================ */

.hero {
  position: relative;
  min-height: 70vh;
  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(to right,
    oklch(from var(--color-bg) l c h / 0.88) 0%,
    oklch(from var(--color-bg) l c h / 0.6) 50%,
    oklch(from var(--color-bg) l c h / 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-16) var(--space-4);
  width: 100%;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  max-width: 18ch;
}

.hero p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 42ch;
  margin-bottom: var(--space-6);
}

.hero-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* Page hero (smaller, for interior pages) */
.page-hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-overlay {
  background: linear-gradient(to right,
    oklch(from var(--color-bg) l c h / 0.9) 0%,
    oklch(from var(--color-bg) l c h / 0.7) 50%,
    oklch(from var(--color-bg) l c h / 0.3) 100%);
}

.page-hero .hero-content {
  padding: var(--space-12) var(--space-4);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.page-hero p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 50ch;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  transition: background var(--transition-interactive), color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  color: var(--color-text-inverse);
}

.btn-secondary {
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid oklch(from var(--color-text) l c h / 0.12);
}
.btn-secondary:hover {
  background: var(--color-surface-offset);
  color: var(--color-text);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}

/* ============================================
   Section Styles
   ============================================ */

.section {
  padding: clamp(var(--space-12), 6vw, var(--space-24)) var(--space-4);
}

.section-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}

.section-header {
  margin-bottom: var(--space-8);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.section-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 55ch;
}

.section-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.section-alt {
  background: var(--color-surface-offset);
}

/* ============================================
   Card Grid
   ============================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: var(--space-6);
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-interactive), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-surface-offset);
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover .card-img img {
  transform: scale(1.03);
}

.card-body {
  padding: var(--space-5);
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.card-body p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-3);
}

.card-meta {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* ============================================
   Stats Bar
   ============================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-6);
  padding: var(--space-8) 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: var(--space-1);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   Timeline
   ============================================ */

.timeline {
  position: relative;
  padding-left: var(--space-8);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-divider);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-8);
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: calc(-1 * var(--space-8) + 6px);
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  border: 3px solid var(--color-bg);
}

.timeline-date {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.timeline-item h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.timeline-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   Feature List (two-column text+icon)
   ============================================ */

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

.feature-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-lg);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.feature-item h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.feature-item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   Two-Column Layout
   ============================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
  .two-col.reverse {
    direction: rtl;
  }
  .two-col.reverse > * {
    direction: ltr;
  }
}

.two-col-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-surface-offset);
}

.two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   Contact Form
   ============================================ */

.form-group {
  margin-bottom: var(--space-4);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid oklch(from var(--color-text) l c h / 0.12);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  font-size: var(--text-base);
  color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px oklch(from var(--color-primary) l c h / 0.15);
}

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

/* ============================================
   Donation Tiers
   ============================================ */

.donation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: var(--space-6);
}

.donation-card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: border-color var(--transition-interactive), box-shadow var(--transition-interactive);
}

.donation-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.donation-card.featured {
  border-color: var(--color-primary);
  background: var(--color-primary-highlight);
}

.donation-amount {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.donation-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.donation-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.donation-card .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: var(--color-surface-offset);
  border-top: 1px solid var(--color-divider);
  padding: var(--space-12) var(--space-4) var(--space-6);
}

.footer-inner {
  max-width: var(--content-wide);
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-brand p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: 32ch;
}

.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.footer-col a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-1) 0;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid var(--color-divider);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer-bottom p,
.footer-bottom a {
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

/* ============================================
   CTA Banner
   ============================================ */

.cta-banner {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding: clamp(var(--space-10), 5vw, var(--space-16)) var(--space-4);
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--color-text-inverse);
}

.cta-banner p {
  font-size: var(--text-base);
  opacity: 0.9;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  max-width: 50ch;
}

.cta-banner .btn {
  background: var(--color-text-inverse);
  color: var(--color-primary);
}

.cta-banner .btn:hover {
  background: #fff;
  color: var(--color-primary-hover);
}

/* ============================================
   Info Box / Callout
   ============================================ */

.info-box {
  background: var(--color-primary-highlight);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  margin-bottom: var(--space-6);
}

.info-box h3 {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.info-box p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   Contact Info Cards
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
  gap: var(--space-4);
}

.contact-card {
  background: var(--color-surface);
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--color-primary-highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.contact-card h3 {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.contact-card p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================
   Scroll animations
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================================
   Policy support badge
   ============================================ */

.policy-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--color-secondary);
  color: #2a2524;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

/* ============================================
   Workshop schedule table
   ============================================ */

.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid oklch(from var(--color-text) l c h / 0.08);
}

.schedule-table th {
  background: var(--color-surface-offset);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: left;
  padding: var(--space-3) var(--space-4);
  color: var(--color-text);
}

.schedule-table td {
  font-size: var(--text-sm);
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-muted);
  border-top: 1px solid oklch(from var(--color-text) l c h / 0.06);
}

.schedule-table tr:hover td {
  background: var(--color-surface-offset);
}

/* ============================================
   Prose content
   ============================================ */

.prose h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-3);
  margin-top: var(--space-6);
}

.prose h3:first-child {
  margin-top: 0;
}

.prose p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.prose ul {
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
}

.prose ul li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

/* ============================================
   Responsive adjustments
   ============================================ */

@media (max-width: 480px) {
  .hero h1 {
    font-size: clamp(1.5rem, 1rem + 3vw, 2rem);
  }
  .hero {
    min-height: 50vh;
  }
  .page-hero {
    min-height: 30vh;
  }
}
