:root {
  --color-primary:        #1a4f7a;
  --color-primary-dark:   #153e61;
  --color-primary-light:  #e8f0f8;
  --color-accent:         #f0a500;
  --color-accent-dark:    #c88a00;
  --color-accent-light:   #fef6e0;
  --color-white:          #ffffff;
  --color-bg:             #f7f9fc;
  --color-text:           #1c2b3a;
  --color-text-muted:     #5a6a7a;
  --color-border:         #c8d8e8;
  --font-body:   'Inter', sans-serif;
  --font-heading:'Merriweather', serif;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 4px rgba(26,79,122,0.08);
  --shadow-md:   0 4px 16px rgba(26,79,122,0.12);
  --shadow-lg:   0 8px 32px rgba(26,79,122,0.16);
  --container-max: 1200px;
  --header-h: 68px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}
h1, h2, h3, h4 { line-height: 1.25; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.text-right   { text-align: right; }
.mt-2         { margin-top: 0.5rem; }
.mt-4         { margin-top: 1rem; }
.mt-8         { margin-top: 2rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-primary);
  box-shadow: var(--shadow-md);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
.brand-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
  display: none;
}
.main-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover,
.nav-link.active {
  color: var(--color-white);
  background: rgba(255,255,255,0.15);
}
.nav-link.active {
  border-bottom: 2px solid var(--color-accent);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}
.nav-toggle:hover { background: rgba(255,255,255,0.15); }
.burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-open .burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger-bar:nth-child(2) { opacity: 0; }
.nav-open .burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, #226098 60%, var(--color-primary-dark) 100%);
  padding: 100px 0 140px;
  overflow: hidden;
}
.hero-bg-shape {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: rgba(240, 165, 0, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(240,165,0,0.2);
  color: var(--color-accent);
  border: 1px solid rgba(240,165,0,0.4);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-cta-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 60px; }
.page-hero {
  background: var(--color-primary);
  padding: 56px 0;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: -0.02em;
}
.page-hero-sub {
  margin-top: 10px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
}
.section { padding: 80px 0; }
.section-white { background: var(--color-white); }
.section-light  { background: var(--color-bg); }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.cards-grid {
  display: grid;
  gap: 24px;
}
.three-col { grid-template-columns: repeat(3, 1fr); }
.feature-card {
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}
.feature-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.feature-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-accent);
}
.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 0;
}
.stats-banner {
  background: var(--color-primary);
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  text-align: center;
}
.stat-item { padding: 0 24px; }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
}
.info-card {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.info-card-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-border);
}
.info-card-row:last-child { border-bottom: none; }
.info-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-primary);
  flex-shrink: 0;
}
.info-value {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  text-align: right;
}
.news-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.news-card-top {
  height: 6px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}
.news-card-body { padding: 24px; }
.news-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
}
.news-excerpt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}
.text-block p {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.quote-card {
  background: var(--color-white);
  border-left: 5px solid var(--color-accent);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
}
.quote-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0;
}
.trustee-card {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.trustee-card:hover { box-shadow: var(--shadow-md); }
.trustee-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--color-accent);
}
.trustee-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.trustee-role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.table-wrapper { overflow-x: auto; margin-bottom: 16px; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.data-table thead tr {
  background: var(--color-primary);
  color: var(--color-white);
}
.data-table th,
.data-table td {
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  text-align: left;
}
.data-table th { font-weight: 600; letter-spacing: 0.02em; }
.data-table tbody tr:nth-child(even)  { background: var(--color-bg); }
.data-table tbody tr:nth-child(odd)   { background: var(--color-white); }
.data-table tbody tr:hover            { background: var(--color-primary-light); }
.table-footnote {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.table-footnote a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}
.timeline-container {
  max-width: 740px;
  margin: 0 auto;
}
.timeline-item {
  display: flex;
  gap: 24px;
}
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--color-accent);
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--color-accent), rgba(240,165,0,0.2));
  margin: 8px 0;
  min-height: 60px;
}
.timeline-content {
  padding-bottom: 36px;
  flex: 1;
}
.timeline-item-last .timeline-content { padding-bottom: 0; }
.timeline-year {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.timeline-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.timeline-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: 0;
}
.alert-banner {
  background: var(--color-accent-light);
  border-bottom: 4px solid var(--color-primary);
}
.alert-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 24px;
  color: var(--color-text);
}
.alert-inner svg { flex-shrink: 0; margin-top: 2px; color: var(--color-accent-dark); }
.alert-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.alert-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}
.alert-text:last-child { margin-bottom: 0; }
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 680px;
}
.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-number {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.step-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
.form-container-narrow { max-width: 720px; margin: 0 auto; }
.form-card {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.form-card-header {
  background: var(--color-primary);
  padding: 20px 28px;
}
.form-card-header h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}
.form-card-body { padding: 28px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(26,79,122,0.12);
}
.form-select { appearance: none; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 120px; }
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
}
.form-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-primary);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--color-primary);
}
.form-checkbox-label {
  font-size: 0.875rem;
  color: var(--color-text);
  cursor: pointer;
  line-height: 1.6;
}
.responsible-note {
  background: rgba(240,165,0,0.08);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
}
.responsible-note p { margin-bottom: 0; }
.raffle-total-display {
  background: var(--color-bg);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 500;
}
.form-footnote {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.6;
}
.form-success-msg {
  background: #e6f4ec;
  border: 2px solid #27ae60;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #1a7a40;
  margin-top: 12px;
  font-weight: 500;
}
.inline-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.accordion { display: flex; flex-direction: column; gap: 8px; }
.accordion-item {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  font-family: var(--font-body);
  background: var(--color-white);
  transition: background 0.15s;
}
.accordion-trigger:hover { background: var(--color-bg); }
.accordion-icon {
  transition: transform 0.3s;
  flex-shrink: 0;
}
.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(180deg);
}
.accordion-panel {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}
.accordion-panel.open { display: block; }
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}
.amount-btn {
  padding: 10px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  background: var(--color-bg);
  transition: background 0.15s, border-color 0.15s;
  font-family: var(--font-body);
}
.amount-btn:hover,
.amount-btn.selected {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
}
.donation-list {
  padding-left: 0;
  margin-bottom: 24px;
}
.donation-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  line-height: 1.6;
}
.donation-list li svg { flex-shrink: 0; color: var(--color-accent); margin-top: 3px; }
.gift-aid-box {
  background: var(--color-accent-light);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 8px;
}
.gift-aid-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.gift-aid-box p { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 0; }
.donation-summary {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  text-align: center;
  margin-bottom: 16px;
}
.donation-summary-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.donation-summary-amount {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}
.resp-list { display: flex; flex-direction: column; gap: 14px; }
.resp-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.resp-item svg { flex-shrink: 0; margin-top: 2px; color: var(--color-accent); }
.resp-item p { margin-bottom: 0; }
.support-card {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
}
.support-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 12px;
}
.support-card p { font-size: 0.92rem; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.support-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-white);
  margin-bottom: 16px;
}
.support-card-link {
  display: block;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.support-card-link:hover { color: var(--color-accent-dark); }
.contact-details-body { display: flex; flex-direction: column; gap: 20px; }
.contact-detail-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-detail-item svg { flex-shrink: 0; margin-top: 2px; color: var(--color-accent); }
.contact-detail-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}
.contact-detail-value { font-size: 0.875rem; color: var(--color-text-muted); margin-bottom: 0; line-height: 1.7; }
.contact-detail-link { font-size: 0.875rem; color: var(--color-primary); font-weight: 600; text-decoration: underline; }
.contact-useful-links { padding-top: 16px; border-top: 2px solid var(--color-border); }
.useful-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 0;
  transition: color 0.2s;
}
.useful-link:hover { color: var(--color-accent); }
.map-placeholder {
  background: var(--color-bg);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  color: var(--color-text-muted);
}
.map-placeholder svg { opacity: 0.4; }
.map-placeholder p { font-size: 0.9rem; max-width: 340px; margin: 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border: 2px solid var(--color-primary);
}
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); }
.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.btn-outline:hover { background: var(--color-accent); color: var(--color-white); }
.btn-lg { font-size: 1rem; padding: 14px 28px; }
.btn-md { font-size: 0.9rem; padding: 10px 22px; }
.btn-sm { font-size: 0.825rem; padding: 7px 16px; }
.btn-full { width: 100%; }
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.site-footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  padding-bottom: 40px;
}
.footer-col { font-size: 0.82rem; line-height: 1.9; }
.footer-col p { margin-bottom: 2px; }
.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-link {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  padding: 3px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--color-accent); }
.footer-mt { margin-top: 12px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 8px;
}
.footer-contact-item svg { flex-shrink: 0; }
.footer-sessions { margin-top: 14px; }
.footer-sessions-label { font-weight: 600; color: var(--color-white); margin-bottom: 2px; }
.footer-resp-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
}
.footer-resp-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-resp-item p { margin-bottom: 0; }
.footer-gamble-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.gamble-badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--color-accent);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  transition: background 0.2s;
}
.gamble-badge:hover { background: var(--color-accent-dark); }
.footer-promoted {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
  margin-bottom: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .three-col { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .brand-tagline { display: none; }
  .main-nav {
    display: none;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--color-primary-dark);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .nav-link {
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    width: 100%;
  }
  .nav-link.active {
    border-bottom: none;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
  }
  .site-header { position: relative; }
  .nav-toggle {
    display: flex;
  }
  .hero { padding: 64px 0 100px; }
  .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
  .three-col { grid-template-columns: 1fr; }
  .cards-grid.three-col { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .section { padding: 56px 0; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .amount-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .hero-cta-group .btn { justify-content: center; }
}
@media (min-width: 769px) {
  .brand-tagline { display: block; }
}