/* =============================================================================
   MY BENTO CAKE — landing.php styles
   Tokens HSL extraits de src/index.css (palette festive bento)
============================================================================= */
:root {
  --background: 26 100% 96%;
  --foreground: 20 50% 12%;
  --card: 0 0% 100%;
  --primary: 335 100% 62%;
  --primary-fg: 0 0% 100%;
  --secondary: 22 100% 65%;
  --muted: 26 60% 92%;
  --muted-fg: 20 25% 35%;
  --accent: 335 100% 95%;
  --accent-fg: 335 80% 35%;
  --chocolate: 20 60% 14%;
  --cream-soft: 30 100% 98%;
  --gradient-festive: linear-gradient(135deg, hsl(335 100% 62%), hsl(22 100% 65%));
  --gradient-cream: linear-gradient(180deg, hsl(26 100% 97%), hsl(26 100% 93%));
  --shadow-soft: 0 8px 24px -12px hsl(335 60% 50% / .25);
  --shadow-card: 0 4px 16px -8px hsl(20 50% 20% / .15);
  --border: 1px solid hsl(var(--primary) / .14);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body {
  font-family: 'Quicksand', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: hsl(var(--chocolate));
  letter-spacing: -.01em;
  font-weight: 900;
  line-height: 1;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
strong { font-weight: 800; }

/* Helpers */
.italic { font-style: italic; }
.primary { color: hsl(var(--primary)); }
.secondary { color: hsl(var(--secondary)); }
.chocolate { color: hsl(var(--chocolate)); }
.fill { fill: currentColor; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-8 { margin-bottom: 2rem; }
.icon, .icon-sm, .icon-xs { display: inline-block; vertical-align: middle; }
.icon { width: 24px; height: 24px; }
.icon-sm { width: 16px; height: 16px; }
.icon-xs { width: 12px; height: 12px; }

/* ============== Sticker / chips ============== */
.sticker {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1rem; border-radius: 9999px;
  font-size: .72rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase;
  border: var(--border); box-shadow: var(--shadow-soft);
  transform: rotate(var(--rot, 0deg));
}
.sticker.tone-card    { background: hsl(var(--card));      color: hsl(var(--chocolate)); }
.sticker.tone-accent  { background: hsl(var(--accent));    color: hsl(var(--accent-fg)); }
.sticker.tone-muted   { background: hsl(var(--muted));     color: hsl(var(--muted-fg)); }
.sticker.tone-cream   { background: hsl(var(--cream-soft));color: hsl(var(--chocolate)); }

/* ============== Buttons ============== */
.btn-festive {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .7rem 1.4rem; border-radius: 9999px;
  background: var(--gradient-festive); color: hsl(var(--primary-fg));
  font-size: .75rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; box-shadow: var(--shadow-soft);
  transition: transform .2s ease;
}
.btn-festive:hover { transform: scale(1.05); }
.btn-festive.btn-lg { padding: 1rem 1.75rem; font-size: .85rem; }
.btn-card {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 1.25rem; border-radius: 9999px;
  background: hsl(var(--card)); border: var(--border);
  color: hsl(var(--chocolate)); font-size: .75rem; font-weight: 800;
  box-shadow: var(--shadow-card); transition: transform .2s ease;
}
.btn-card:hover { transform: scale(1.05); }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: hsl(var(--background) / .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid hsl(var(--primary) / .1);
  padding: .75rem 1.25rem;
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo img { height: 40px; width: auto; }
@media (min-width: 768px) {
  .nav { padding: .75rem 2.5rem; }
  .nav-logo img { height: 48px; }
}

/* ============== HERO ============== */
.hero {
  position: relative; overflow: hidden;
  padding: 2rem 1.25rem 7rem;
}
.hero-bg-stripe-1 {
  position: absolute; left: 0; top: 4rem;
  width: 100%; height: 6rem; opacity: .7;
  background: var(--gradient-cream);
  border-top: 1px solid hsl(var(--primary)/.1);
  border-bottom: 1px solid hsl(var(--primary)/.1);
  transform: rotate(-3deg); pointer-events: none;
}
.hero-bg-stripe-2 {
  position: absolute; right: -6rem; top: 18rem;
  width: 120%; height: 5rem; opacity: .8;
  background: hsl(var(--accent));
  border-top: 1px solid hsl(var(--primary)/.1);
  border-bottom: 1px solid hsl(var(--primary)/.1);
  transform: rotate(6deg); pointer-events: none;
}
.hero-grid {
  position: relative; max-width: 1280px; margin: 0 auto;
  display: grid; gap: 2rem;
}
.hero-text { position: relative; z-index: 10; }
.hero-logo { width: 11rem; margin-bottom: 1.25rem; }
.hero-logo img { width: 100%; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: .84; font-weight: 900;
  margin-bottom: 1.5rem; color: hsl(var(--chocolate));
}
.hero-title .reveal { display: block; }
.hero-title .primary { color: hsl(var(--primary)); }
.hero-lead {
  max-width: 36rem; margin-bottom: 2rem;
  font-size: 1rem; font-weight: 500;
  color: hsl(var(--foreground) / .75);
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

/* Hero visual: orbites + image centrale */
.hero-visual {
  position: relative; height: 460px;
}
.orbit-ring {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  animation: orbit-spin 40s linear infinite;
}
.orbit-stage {
  position: relative; width: 20rem; height: 20rem;
}
.orbit-icon {
  position: absolute;
  left: 50%; top: 50%;
  width: 56px; height: 56px;
  border-radius: 9999px;
  border: var(--border); box-shadow: var(--shadow-card);
  overflow: hidden;
  transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
  animation: orbit-counter-spin 40s linear infinite;
  will-change: transform;
}
.orbit-icon.tone-card    { background: hsl(var(--card)); }
.orbit-icon.tone-accent  { background: hsl(var(--accent)); }
.orbit-icon.tone-muted   { background: hsl(var(--muted)); }
.orbit-icon.tone-cream   { background: hsl(var(--cream-soft)); }
.orbit-icon .layer {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 1.1s ease-in-out, transform 1.1s ease-in-out;
  backface-visibility: hidden;
}
.layer.is-active { opacity: 1; transform: scale(1); }
.layer.is-hidden { opacity: 0; transform: scale(1.045); }

.hero-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.hero-center-inner {
  position: relative;
  width: 13rem; height: 13rem;
  border-radius: 9999px;
  border: var(--border); background: hsl(var(--card));
  box-shadow: var(--shadow-soft); overflow: hidden;
  padding: .5rem;
}
.hero-center-inner .layer {
  position: absolute; inset: .5rem; width: calc(100% - 1rem); height: calc(100% - 1rem);
  border-radius: 9999px; object-fit: cover;
  transition: opacity 1.1s ease-in-out;
}

.float-sticker { position: absolute; z-index: 11; }
.float-tr { right: .5rem; top: 1rem; animation: float-y 3s ease-in-out infinite; }
.float-bl { left: 0;     bottom: 1.5rem; animation: float-y 3s ease-in-out .5s infinite; }
.float-tl { left: .5rem; top: 2.5rem; animation: float-xy 4s ease-in-out infinite; }

@media (min-width: 768px) {
  .hero { padding: 3.5rem 2.5rem 9rem; }
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 2.5rem; align-items: center; }
  .hero-logo { width: 14rem; }
  .hero-lead { font-size: 1.25rem; }
  .hero-visual { height: 640px; }
  .orbit-stage { width: 26rem; height: 26rem; }
  .orbit-icon { width: 68px; height: 68px; }
  .hero-center-inner { width: 16rem; height: 16rem; }
  .float-tr { right: 0; top: 0; }
  .float-bl { bottom: 2rem; }
  .float-tl { left: 0; top: 4rem; }
}

@keyframes orbit-spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes orbit-counter-spin {
  from { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(0); }
  to   { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))) rotate(-360deg); }
}
@keyframes float-y  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes float-xy { 0%,100% { transform: translate(0,0); } 50% { transform: translate(8px,-6px); } }

/* Ticker */
.ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  overflow: hidden; background: hsl(var(--card));
  border-top: 1px solid hsl(var(--primary)/.1);
  border-bottom: 1px solid hsl(var(--primary)/.1);
  box-shadow: var(--shadow-card); padding: .75rem 0;
}
.ticker-track {
  display: flex; gap: 2rem; white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em;
}
.ticker-group { display: flex; gap: 2rem; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============== BADGES ============== */
.badges {
  max-width: 1280px; margin: 0 auto;
  padding: 2.5rem 1.25rem;
  display: grid; gap: 1rem;
}
.badge {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem; border-radius: 1.5rem;
  border: var(--border); box-shadow: var(--shadow-card);
}
.badge.tone-accent { background: hsl(var(--accent)); }
.badge.tone-cream  { background: hsl(var(--cream-soft)); }
.badge.tone-muted  { background: hsl(var(--muted)); }
.badge-icon {
  flex-shrink: 0; width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  background: hsl(var(--card)); color: hsl(var(--primary));
  border-radius: 1rem;
}
.badge h3 { font-size: 1.1rem; }
.badge p  { font-size: .8rem; font-weight: 500; color: hsl(var(--foreground)/.7); }
@media (min-width: 768px) {
  .badges { padding: 3.5rem 2.5rem; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
  .badge { padding: 1.5rem; }
  .badge-icon { width: 3.5rem; height: 3.5rem; }
  .badge h3 { font-size: 1.25rem; }
  .badge p  { font-size: .9rem; }
}

/* ============== COUNTER ============== */
.counter {
  position: relative; overflow: hidden;
  padding: 6rem 1.25rem; text-align: center;
  background: var(--gradient-festive);
  border-top: 1px solid hsl(var(--primary)/.1);
  border-bottom: 1px solid hsl(var(--primary)/.1);
  color: hsl(var(--primary-fg));
}
.counter-pretitle {
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 700;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.counter-wrap { position: relative; }
.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 900; line-height: 1;
}
.counter-bubble {
  position: absolute; top: -2.5rem; right: .5rem;
  background: hsl(var(--card)); color: hsl(var(--chocolate));
  border: var(--border); box-shadow: var(--shadow-card);
  padding: .5rem 1rem; border-radius: 9999px;
  font-size: .75rem; font-weight: 800; text-transform: uppercase;
  transform: rotate(10deg);
}
.counter-tagline {
  margin-top: 1.5rem;
  font-family: 'Playfair Display', serif; font-style: italic; font-weight: 900;
  font-size: clamp(1.5rem, 5vw, 3rem);
}
.counter-tagline .chocolate { color: hsl(var(--chocolate)); }
.counter-sub { margin-top: 1rem; font-size: 1.25rem; font-weight: 700; opacity: .9; }
@media (min-width: 768px) {
  .counter { padding: 8rem 2.5rem; }
  .counter-pretitle { font-size: 2.25rem; }
  .counter-bubble { top: -1rem; right: 5rem; font-size: 1rem; padding: .6rem 1.2rem; }
  .counter-sub { font-size: 1.875rem; }
}

/* ============== STEPS ============== */
.steps {
  max-width: 1280px; margin: 0 auto;
  padding: 5rem 1.25rem;
}
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.steps-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
.step-card {
  position: relative; overflow: hidden;
  padding: 1.25rem; border-radius: 1.5rem;
  border: var(--border); box-shadow: var(--shadow-card);
  transform: rotate(var(--rot, 0deg));
  transition: transform .25s ease;
  cursor: pointer;
}
.step-card:hover { transform: translateY(-8px) rotate(0); }
.step-card.tone-card { background: hsl(var(--card)); }
.step-card.tone-accent { background: hsl(var(--accent)); }
.step-card.tone-muted { background: hsl(var(--muted)); }
.step-card.tone-cream { background: hsl(var(--cream-soft)); }
.step-emoji { font-size: 3rem; margin-bottom: .75rem; }
.step-num { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--foreground)/.5); margin-bottom: .25rem; }
.step-card h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.step-card p { font-size: .85rem; color: hsl(var(--foreground)/.7); margin-bottom: 1rem; }
.step-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .9rem; border-radius: 9999px;
  font-size: .75rem; font-weight: 800;
  color: hsl(var(--primary-fg));
}
.step-pill em { opacity: .8; font-style: normal; }
.step-pill.accent-primary   { background: hsl(var(--primary)); }
.step-pill.accent-secondary { background: hsl(var(--secondary)); }
.step-pill.accent-accent-fg { background: hsl(var(--accent-fg)); }
@media (min-width: 768px) {
  .steps { padding: 7rem 2.5rem; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
  .step-card { padding: 1.5rem; }
  .step-emoji { font-size: 3.5rem; }
  .step-card h3 { font-size: 1.75rem; }
}

/* Equation */
.equation {
  margin-top: 2.5rem; padding: 1.5rem;
  background: hsl(var(--card)); border-radius: 1.5rem;
  border: 1px solid hsl(var(--primary)/.1); box-shadow: var(--shadow-soft);
  text-align: center;
}
.eq-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--muted-fg)); margin-bottom: .75rem; }
.eq-line {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: .5rem; font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 900; color: hsl(var(--chocolate));
}
.eq-cell { display: inline-flex; align-items: center; gap: .5rem; }
.eq-num { position: relative; cursor: help; text-decoration: underline dotted; text-decoration-thickness: 2px; text-underline-offset: 4px; outline: none; }
.eq-num.accent-primary   { color: hsl(var(--primary)); }
.eq-num.accent-secondary { color: hsl(var(--secondary)); }
.eq-num.accent-accent-fg { color: hsl(var(--accent-fg)); }
.eq-tip {
  position: absolute; left: 50%; top: -3.5rem; z-index: 20;
  width: 15rem; transform: translateX(-50%);
  background: hsl(var(--chocolate)); color: hsl(var(--primary-fg));
  padding: .5rem .75rem; border-radius: .75rem;
  font-family: 'Quicksand', sans-serif; font-size: .7rem; font-weight: 600;
  text-transform: none; line-height: 1.3;
  opacity: 0; pointer-events: none; transition: opacity .2s;
  box-shadow: 0 6px 20px hsl(0 0 0 / .25);
}
.eq-num:hover .eq-tip, .eq-num:focus .eq-tip { opacity: 1; }
.eq-op { color: hsl(var(--foreground)/.3); }
.eq-total { color: hsl(var(--primary)); }
@media (min-width: 768px) {
  .equation { padding: 2rem; }
  .eq-line { font-size: 2.25rem; gap: .75rem; }
}

/* ============== GALLERY ============== */
.gallery {
  padding: 5rem 1.25rem;
  background: var(--gradient-cream);
}
.masonry {
  max-width: 1100px; margin: 0 auto;
  column-count: 2; column-gap: .75rem;
}
.masonry-item {
  break-inside: avoid; margin-bottom: .75rem;
  border-radius: 1.5rem; padding: .25rem;
  background: hsl(var(--card)); border: var(--border);
  box-shadow: var(--shadow-card); overflow: hidden;
  transition: transform .25s ease;
  cursor: pointer;
}
.masonry-item:hover { transform: scale(1.04); }
.masonry-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 1.25rem; }
@media (min-width: 768px) {
  .gallery { padding: 7rem 2.5rem; }
  .masonry { column-count: 4; column-gap: 1rem; }
  .masonry-item { margin-bottom: 1rem; }
}

/* ============== CLUB ============== */
.club {
  position: relative; overflow: hidden;
  padding: 5rem 1.25rem;
  background: hsl(var(--accent));
  border-top: 1px solid hsl(var(--primary)/.1);
  border-bottom: 1px solid hsl(var(--primary)/.1);
}
.club-deco {
  position: absolute; font-size: 5rem; opacity: .2;
  animation: float-y 6s ease-in-out infinite;
}
.club-deco-1 { left: 1rem; top: 2rem; }
.club-deco-2 { right: 2rem; bottom: 2rem; animation-delay: 1s; }
.club-grid {
  position: relative; max-width: 1100px; margin: 0 auto;
  display: grid; gap: 3rem; align-items: center;
}
.club-photo-wrap { position: relative; }
.club-photo {
  aspect-ratio: 3/4; overflow: hidden;
  background: hsl(var(--card)); border: var(--border);
  border-radius: 1.5rem; padding: .5rem; box-shadow: var(--shadow-soft);
}
.club-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 1.25rem; }
.club-card {
  position: absolute; bottom: -1.5rem; right: -.5rem;
  width: 16rem; padding: 1.25rem;
  background: hsl(var(--card)); border: var(--border);
  border-radius: 1.5rem; box-shadow: var(--shadow-card);
  transform: rotate(-6deg);
}
.club-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--muted-fg)); }
.club-card-name { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; margin-bottom: .75rem; color: hsl(var(--chocolate)); }
.club-card-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: .35rem; margin-bottom: .75rem; }
.club-stamp {
  width: 1.5rem; height: 1.5rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid hsl(var(--primary)/.2);
}
.club-stamp.on  { background: var(--gradient-festive); color: hsl(var(--primary-fg)); }
.club-stamp.off { background: hsl(var(--muted)); color: hsl(var(--muted-fg)/.4); }
.club-card-foot { font-size: .72rem; font-weight: 800; color: hsl(var(--foreground)/.65); }
.club-badge {
  position: absolute; left: -1rem; top: -1rem;
  width: 6rem; height: 6rem; border-radius: 9999px;
  background: var(--gradient-festive); color: hsl(var(--primary-fg));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: var(--shadow-soft);
  transform: rotate(13deg);
  animation: float-y 4s ease-in-out infinite;
}
.club-badge-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 900; line-height: 1; }
.club-badge-sub { font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.club-text h2 { font-size: clamp(2.5rem, 6vw, 4.5rem); margin-bottom: 1.25rem; }
.club-text p { margin-bottom: 2rem; font-size: 1rem; color: hsl(var(--foreground)/.75); }
.club-bullets { margin-bottom: 2rem; display: flex; flex-direction: column; gap: .75rem; }
.club-bullets li { display: flex; align-items: center; gap: .75rem; font-size: 1rem; font-weight: 800; color: hsl(var(--chocolate)); }
.club-bullets .emoji { font-size: 1.5rem; }
@media (min-width: 768px) {
  .club { padding: 7rem 2.5rem; }
  .club-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .club-card { width: 18rem; right: -2.5rem; }
  .club-badge { width: 7rem; height: 7rem; }
  .club-badge-num { font-size: 1.875rem; }
}

/* ============== FINAL CTA ============== */
.final-cta {
  position: relative; overflow: hidden; text-align: center;
  padding: 6rem 1.25rem;
  background: var(--gradient-cream);
}
.final-deco { position: absolute; right: -5rem; top: -5rem; font-size: 18rem; opacity: .1; animation: spin 30s linear infinite; }
@keyframes spin { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.final-pre { font-style: italic; font-weight: 700; color: hsl(var(--secondary)); font-size: 1.875rem; margin-bottom: .75rem; }
.final-cta h2 { font-size: clamp(3rem, 8vw, 6rem); max-width: 48rem; margin: 0 auto 2.5rem; line-height: .9; }
.final-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
@media (min-width: 768px) {
  .final-cta { padding: 8rem 2.5rem; }
  .final-pre { font-size: 3rem; }
}

/* ============== FOOTER ============== */
.footer {
  background: hsl(var(--chocolate)); color: hsl(var(--primary-fg));
  padding: 3.5rem 1.25rem; border-top: 1px solid hsl(var(--primary)/.1);
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2.5rem;
}
.footer-brand { max-width: 24rem; display: flex; flex-direction: column; gap: 1rem; }
.footer-logo {
  display: inline-block; background: hsl(var(--background) / .95);
  padding: .75rem; border-radius: 1.5rem;
  box-shadow: var(--shadow-soft); width: max-content;
}
.footer-logo img { width: 11rem; }
.footer-tag { font-size: .9rem; font-weight: 800; opacity: .9; }
.footer-line { display: flex; gap: .5rem; align-items: flex-start; font-size: .9rem; opacity: .85; }
.footer-line svg { color: hsl(var(--primary)); margin-top: .15rem; flex-shrink: 0; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.footer-cols h4 { font-family: 'Quicksand', sans-serif; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: hsl(var(--primary)); margin-bottom: .75rem; }
.footer-cols ul { display: flex; flex-direction: column; gap: .5rem; font-size: .85rem; opacity: .85; }
.footer-cols a { display: inline-flex; align-items: center; gap: .35rem; transition: opacity .2s; }
.footer-cols a:hover { opacity: 1; color: hsl(var(--primary)); }
.socials { display: flex; flex-wrap: wrap; gap: .5rem; }
.soc {
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 900;
}
.soc.bg-primary   { background: hsl(var(--primary));   color: hsl(var(--primary-fg)); }
.soc.bg-secondary { background: hsl(var(--secondary)); color: hsl(var(--primary-fg)); }
.soc.bg-card      { background: hsl(var(--card)); }
.soc.chocolate    { color: hsl(var(--chocolate)); }
.soc.primary      { color: hsl(var(--primary)); }
.footer-bottom {
  max-width: 1100px; margin: 2.5rem auto 0;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.5rem; border-top: 1px solid hsl(var(--primary-fg)/.2);
  font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .15em;
  opacity: .75;
}
@media (min-width: 768px) {
  .footer { padding: 3.5rem 2.5rem; }
  .footer-grid { flex-direction: row; justify-content: space-between; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

/* ============== Reveal animation (GSAP fallback) ============== */
.reveal { opacity: 0; transform: translateY(30px); }
.reveal.visible { opacity: 1; transform: translateY(0); transition: opacity .8s, transform .8s; }

@media (prefers-reduced-motion: reduce) {
  .orbit-ring, .orbit-icon, .float-sticker, .ticker-track, .club-deco, .club-badge, .final-deco { animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
