/* ================================================
   LuckyPulse – Main Stylesheet
   Palette: Indigo #1a1040 | Coral #ff5c5c | Gold #ffd166
   Font: system-ui stack (Nunito-like, zero CDN)
   ================================================ */

:root {
  --clr-bg:        #1a1040;
  --clr-bg2:       #231454;
  --clr-bg3:       #2d1a6e;
  --clr-coral:     #ff5c5c;
  --clr-coral-dk:  #e03e3e;
  --clr-gold:      #ffd166;
  --clr-gold-lt:   #ffe599;
  --clr-mint:      #6ef0d8;
  --clr-text:      #f0eeff;
  --clr-text-muted:#b0a8d8;
  --clr-white:     #ffffff;
  --clr-card:      #221353;
  --clr-border:    rgba(255,255,255,0.10);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --radius-xl:     32px;
  --shadow-sm:     0 2px 12px rgba(26,16,64,0.5);
  --shadow-md:     0 6px 30px rgba(26,16,64,0.7);
  --shadow-glow:   0 0 24px rgba(255,92,92,0.35);
  --shadow-gold:   0 0 20px rgba(255,209,102,0.3);
  --font:         'Nunito', 'Varela Round', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --transition:    0.28s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
  width: 100%;
}
body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--clr-coral); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-gold); }
ul { list-style: none; }
address { font-style: normal; }

/* ── Animations ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes pulseDot {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,92,92,0.5); }
  50%       { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(255,92,92,0); }
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(6deg); }
}
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
@keyframes spinIn {
  from { transform: rotate(-180deg) scale(0.5); opacity: 0; }
  to   { transform: rotate(0deg) scale(1); opacity: 1; }
}
@keyframes cardFlip {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(90deg); }
  100% { transform: rotateY(0deg); }
}
@keyframes growLine {
  from { width: 0; } to { width: 60px; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes goldGlow {
  0%, 100% { text-shadow: 0 0 8px rgba(255,209,102,0.4); }
  50%       { text-shadow: 0 0 22px rgba(255,209,102,0.9), 0 0 40px rgba(255,92,92,0.3); }
}

/* ── Scroll-reveal ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Layout helpers ─────────────────────────────── */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(255,209,102,0.10);
  border: 1px solid rgba(255,209,102,0.25);
  border-radius: 40px;
  padding: 4px 16px;
  margin-bottom: 14px;
  animation: pulseDot 2.4s ease-in-out infinite;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-lg);
  font-family: var(--font);
  font-size: .95rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn--primary {
  background: linear-gradient(135deg, var(--clr-coral), #ff3a6e);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #ff3a6e, var(--clr-coral));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,92,92,0.55);
  color: #fff;
}
.btn--outline {
  background: transparent;
  color: var(--clr-gold);
  border: 2px solid var(--clr-gold);
}
.btn--outline:hover {
  background: var(--clr-gold);
  color: var(--clr-bg);
  transform: translateY(-2px);
}

/* ── Header ─────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,16,64,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow var(--transition);
  overflow-x: clip;
  width: 100%;
}
.site-header.scrolled { box-shadow: 0 4px 32px rgba(26,16,64,0.9); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
  min-width: 0;
  width: 100%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
  flex-shrink: 1;
}
.logo__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.logo__text {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--clr-white);
  letter-spacing: -.01em;
}
.logo__text em {
  font-style: normal;
  color: var(--clr-coral);
}
.main-nav ul {
  display: flex;
  gap: 4px;
}
.main-nav a {
  font-size: .88rem;
  font-weight: 700;
  color: var(--clr-text-muted);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--clr-white);
  background: rgba(255,92,92,0.15);
}
.main-nav a.active { color: var(--clr-coral); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--clr-text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  margin-left: auto;
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--clr-bg);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.38;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,16,64,0.92) 0%, rgba(35,20,84,0.7) 60%, rgba(255,92,92,0.10) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  animation: fadeUp 0.9s ease both;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,209,102,0.12);
  border: 1px solid rgba(255,209,102,0.35);
  border-radius: 40px;
  padding: 6px 18px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 22px;
  animation: pulseDot 2.8s ease-in-out infinite;
}
.hero__badge::before { content: '★'; font-size: .9rem; }
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: goldGlow 3s ease-in-out infinite;
}
.hero h1 span { color: var(--clr-coral); }
.hero__sub {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.75;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--clr-text-muted);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll::after {
  content: '↓';
  font-size: 1.2rem;
}

/* ── Section commons ────────────────────────────── */
.section { padding: 96px 0; }
.section--alt { background: var(--clr-bg2); }
.section--dark { background: var(--clr-bg3); }
.section__head { text-align: center; margin-bottom: 56px; }
.section__head h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.25;
}
.section__head h2 span { color: var(--clr-coral); }
.section__head p {
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}
.accent-line {
  width: 0; height: 4px;
  background: linear-gradient(90deg, var(--clr-coral), var(--clr-gold));
  border-radius: 2px;
  margin: 14px auto 0;
  animation: growLine 0.8s ease 0.3s forwards;
}

/* ── Features grid ──────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,92,92,0.35);
  box-shadow: var(--shadow-glow);
}
.feature-card__icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  display: block;
  animation: floatIcon 3s ease-in-out infinite;
}
.feature-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; }
.feature-card p  { font-size: .88rem; color: var(--clr-text-muted); line-height: 1.65; }

/* ── Game preview cards ─────────────────────────── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 28px;
}
.game-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
  border-color: rgba(255,92,92,0.4);
}
.game-card__art {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
}
/* Memory Match art */
.game-card__art--memory {
  background: linear-gradient(135deg, #2d1a6e 0%, #1a1040 100%);
}
.gca-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 6px;
  padding: 0 20px;
}
.gca-tile {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--clr-coral), #ff3a6e);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(255,92,92,0.4);
  animation: floatIcon 2.5s ease-in-out infinite;
}
.gca-tile:nth-child(odd)  { animation-delay: 0.2s; }
.gca-tile:nth-child(3n)   { animation-delay: 0.5s; }
.gca-tile--face {
  background: linear-gradient(135deg, #ffd166, #ff9f43);
  box-shadow: 0 2px 8px rgba(255,209,102,0.5);
}
/* Higher/Lower art */
.game-card__art--hilo {
  background: linear-gradient(135deg, #231454 0%, #1a1040 100%);
}
.gca-hilo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.gca-num {
  width: 56px; height: 72px;
  background: linear-gradient(160deg, var(--clr-bg3), #1a1040);
  border: 2px solid var(--clr-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
  animation: floatIcon 3.2s ease-in-out infinite;
}
.gca-arrow {
  font-size: 2rem;
  color: var(--clr-coral);
  animation: floatIcon 2.4s ease-in-out infinite 0.3s;
}
.gca-num2 {
  width: 56px; height: 72px;
  background: linear-gradient(160deg, var(--clr-coral-dk), #c02020);
  border: 2px solid var(--clr-coral);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  box-shadow: var(--shadow-glow);
  animation: floatIcon 2.8s ease-in-out infinite 0.6s;
}

.gca-label {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: 6px;
}
.game-card__body { padding: 22px 24px; }
.game-card__body h3 { font-size: 1.12rem; font-weight: 900; margin-bottom: 8px; }
.game-card__body p  { font-size: .87rem; color: var(--clr-text-muted); margin-bottom: 18px; }
.game-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: rgba(255,209,102,0.12);
  border: 1px solid rgba(255,209,102,0.25);
  border-radius: 20px;
  padding: 3px 12px;
  margin-right: 6px;
  margin-bottom: 14px;
}

/* ── Responsible gaming ─────────────────────────── */
.rg-section { background: var(--clr-bg2); }
.rg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: 20px;
  margin-top: 10px;
}
.rg-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.rg-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,209,102,0.35);
  box-shadow: var(--shadow-gold);
}
.rg-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.rg-card__logo { height: 52px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.rg-card__name { font-size: .88rem; font-weight: 800; margin-bottom: 6px; color: var(--clr-white); }
.rg-card__desc { font-size: .78rem; color: var(--clr-text-muted); line-height: 1.55; }
.rg-notice {
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(255,92,92,0.08), rgba(255,209,102,0.08));
  border: 1px solid rgba(255,92,92,0.2);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  text-align: center;
}
.rg-notice p { font-size: .9rem; color: var(--clr-text-muted); line-height: 1.8; }
.rg-notice strong { color: var(--clr-coral); }

/* ── Page hero (inner pages) ────────────────────── */
.page-hero {
  padding: 140px 0 64px;
  background: linear-gradient(160deg, var(--clr-bg3) 0%, var(--clr-bg) 100%);
  text-align: center;
  border-bottom: 1px solid var(--clr-border);
}
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; margin-bottom: 12px; }
.page-hero p  { color: var(--clr-text-muted); max-width: 560px; margin: 0 auto; }

/* ── Prose (legal pages) ────────────────────────── */
.prose-section { padding: 64px 0 96px; }
.prose-wrap {
  max-width: 780px;
  width: 100%;
  min-width: 0;
  margin: 0 auto;
  overflow-wrap: break-word;
  word-break: break-word;
}
.prose-wrap h2 {
  font-size: 1.4rem;
  font-weight: 900;
  margin: 40px 0 14px;
  color: var(--clr-gold);
  border-bottom: 1px solid rgba(255,209,102,0.15);
  padding-bottom: 8px;
}
.prose-wrap h3 { font-size: 1.05rem; font-weight: 800; margin: 24px 0 10px; color: var(--clr-coral); }
.prose-wrap p  { margin-bottom: 14px; font-size: .95rem; line-height: 1.8; color: var(--clr-text-muted); }
.prose-wrap ul { margin: 10px 0 18px 20px; list-style: disc; }
.prose-wrap ul li { font-size: .93rem; color: var(--clr-text-muted); margin-bottom: 7px; line-height: 1.7; }
.prose-wrap a    { color: var(--clr-coral); }
.prose-wrap a:hover { color: var(--clr-gold); }
.prose-wrap address { background: var(--clr-card); border-radius: var(--radius-sm); padding: 14px 18px; display: inline-block; font-style: normal; margin: 10px 0 20px; border: 1px solid var(--clr-border); font-size: .9rem; line-height: 1.8; }
.prose-wrap code { background: rgba(255,92,92,0.12); color: var(--clr-coral); border-radius: 4px; padding: 2px 7px; font-family: monospace; font-size: .9em; }
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  margin: 1rem 0 1.5rem;
}
.table-scroll table { min-width: 480px; margin: 0; }

/* ── Team / value cards (about) ─────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 22px;
}
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--clr-card);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
}
.stat-card__icon { font-size: 2rem; margin-bottom: 8px; }
.stat-card__value { font-size: 1.4rem; font-weight: 900; }
.stat-card__label {
  font-size: .8rem;
  color: var(--clr-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
}
.stat-card--coral { border: 1px solid rgba(255,92,92,0.2); }
.stat-card--coral .stat-card__value { color: var(--clr-coral); }
.stat-card--gold { border: 1px solid rgba(255,209,102,0.2); }
.stat-card--gold .stat-card__value { color: var(--clr-gold); }
.stat-card--mint { border: 1px solid rgba(110,240,216,0.2); }
.stat-card--mint .stat-card__value { color: var(--clr-mint); }
.team-card {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,92,92,0.35);
  box-shadow: var(--shadow-glow);
}
.team-card__avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-coral), #ff3a6e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow);
}
.team-card h3  { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.team-card span{ font-size: .78rem; color: var(--clr-coral); font-weight: 700; display: block; margin-bottom: 12px; }
.team-card p   { font-size: .84rem; color: var(--clr-text-muted); line-height: 1.6; }

/* ── Contact form ───────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: 1.6rem; font-weight: 900; margin-bottom: 16px; }
.contact-info p  { font-size: .93rem; color: var(--clr-text-muted); margin-bottom: 28px; line-height: 1.75; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail__icon {
  width: 42px; height: 42px;
  background: rgba(255,92,92,0.12);
  border: 1px solid rgba(255,92,92,0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail__label { font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--clr-coral); margin-bottom: 2px; }
.contact-detail__value { font-size: .9rem; color: var(--clr-text-muted); }
.form-wrap {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--clr-text-muted); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-family: var(--font);
  font-size: .93rem;
  padding: 12px 16px;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--clr-coral);
  background: rgba(255,92,92,0.06);
}
.form-group select option { background: var(--clr-bg2); }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--clr-border);
}
.footer-tagline { font-size: .85rem; color: var(--clr-text-muted); margin-top: 12px; line-height: 1.7; }
.footer-nav h4  { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--clr-gold); margin-bottom: 14px; }
.footer-nav ul li { margin-bottom: 9px; }
.footer-nav a { font-size: .87rem; color: var(--clr-text-muted); transition: var(--transition); }
.footer-nav a:hover { color: var(--clr-coral); }
.footer-bottom { padding: 24px 0 32px; text-align: center; }
.footer-disclaimer { font-size: .78rem; color: var(--clr-text-muted); max-width: 700px; margin: 0 auto 10px; line-height: 1.75; }
.footer-copy { font-size: .75rem; color: rgba(176,168,216,0.55); }
.footer-logo { margin-bottom: 10px; }

/* ── Cookie banner ──────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--clr-bg2);
  border: 1px solid rgba(255,209,102,0.3);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-md);
  max-width: 640px;
  width: calc(100% - 48px);
  animation: fadeUp 0.5s ease;
}
.cookie-banner p { font-size: .85rem; color: var(--clr-text-muted); flex: 1; }
.cookie-banner a { color: var(--clr-coral); }
.cookie-banner button {
  background: var(--clr-coral);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 20px;
  font-family: var(--font);
  font-size: .83rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.cookie-banner button:hover { background: var(--clr-coral-dk); }

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--clr-bg2);
    border-bottom: 1px solid var(--clr-border);
    padding: 20px 24px;
    display: none;
    z-index: 999;
  }
  .main-nav.open { display: block; }
  .main-nav ul   { flex-direction: column; gap: 4px; }
  .main-nav a    { display: block; padding: 10px 16px; }
}
@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: 2.2rem; }
  .about-mission { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .btn { justify-content: center; }
  .cookie-banner { flex-direction: column; gap: 12px; text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 18px 14px; }
}
