/* ============================================================
   MÉHARI 2CV CLUB DE NORMANDIE — Feuille de style partagée
   Style rétro années 50/60 — Aucune ressource externe
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --turquoise: #47B5C0;
  --turquoise-dark: #2E8A94;
  --rouge: #C8313A;
  --rouge-dark: #9E2229;
  --vert: #4A9040;
  --vert-dark: #316128;
  --soleil: #F2C94C;
  --creme: #F8F0DC;
  --sable: #E8D8B0;
  --encre: #2D1A0E;
  --blanc: #FFFFFF;
  --ombre: rgba(45,26,14,0.18);
  --radius: 4px;
  --font-display: Impact, 'Arial Black', 'Franklin Gothic Heavy', sans-serif;
  --font-title: Georgia, 'Times New Roman', serif;
  --font-body: 'Trebuchet MS', Geneva, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--creme);
  color: var(--encre);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); text-transform: uppercase; line-height: 1.1; letter-spacing: .04em; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: inline-block;
  position: relative;
  padding-bottom: .5rem;
}
.section-title::after {
  content: '';
  display: block;
  height: 5px;
  border-radius: 3px;
  margin-top: .5rem;
}
.section-title.rouge::after  { background: var(--rouge); }
.section-title.turquoise::after { background: var(--turquoise); }
.section-title.vert::after   { background: var(--vert); }
.section-title.soleil::after { background: var(--soleil); }

.text-rouge    { color: var(--rouge); }
.text-vert     { color: var(--vert); }
.text-turquoise{ color: var(--turquoise); }
.text-soleil   { color: var(--soleil); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  background: var(--encre);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 3px 0 var(--rouge);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav-logo img {
  height: 54px;
  width: auto;
  border-radius: 50%;
  border: 3px solid var(--turquoise);
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--creme);
  line-height: 1.25;
}
.nav-logo-text strong {
  display: block;
  font-size: 1rem;
  color: var(--turquoise);
}
.nav-links {
  display: flex;
  gap: .25rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--sable);
  padding: .45rem .8rem;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--turquoise);
  color: var(--encre);
}
.nav-links a.nav-cta {
  background: var(--rouge);
  color: #fff;
  margin-left: .5rem;
}
.nav-links a.nav-cta:hover { background: var(--rouge-dark); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
}
.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--sable);
  border-radius: 2px;
  transition: .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #1a0e06;
  padding: 1rem 1.5rem;
  border-top: 2px solid var(--turquoise);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sable);
  padding: .7rem 0;
  border-bottom: 1px solid #3a2510;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--turquoise); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 90dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--encre);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
  filter: saturate(1.2);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(45,26,14,.7) 0%, rgba(71,181,192,.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 2rem 1.5rem;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: var(--rouge);
  color: #fff;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  text-transform: uppercase;
  letter-spacing: .04em;
  text-shadow: 4px 4px 0 rgba(0,0,0,.5);
  line-height: 1;
  margin-bottom: .5rem;
}
.hero-title span { color: var(--turquoise); }
.hero-subtitle {
  font-family: var(--font-title);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-style: italic;
  color: var(--sable);
  margin-bottom: 2rem;
}
.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  border-radius: 50%;
  border: 5px solid var(--turquoise);
  box-shadow: 0 0 0 8px rgba(71,181,192,.2), 6px 6px 0 rgba(0,0,0,.4);
  margin: 0 auto 2rem;
  background: #fff;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .75rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 4px 4px 0 rgba(0,0,0,.35);
}
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 rgba(0,0,0,.35); }
.btn-rouge  { background: var(--rouge);  color: #fff; }
.btn-rouge:hover  { background: var(--rouge-dark); }
.btn-turquoise { background: var(--turquoise); color: var(--encre); }
.btn-turquoise:hover { background: var(--turquoise-dark); color: #fff; }
.btn-vert  { background: var(--vert); color: #fff; }
.btn-vert:hover { background: var(--vert-dark); }
.btn-creme { background: var(--creme); color: var(--encre); }
.btn-creme:hover { background: var(--sable); }
.btn-outline {
  background: transparent;
  border: 3px solid currentColor;
  box-shadow: none;
}

/* ---------- BANNER / MARQUEE ---------- */
.banner-strip {
  background: var(--rouge);
  color: #fff;
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .65rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.banner-strip.turquoise { background: var(--turquoise); color: var(--encre); }
.banner-strip.vert      { background: var(--vert); color: #fff; }
.marquee-track {
  display: inline-block;
  animation: marquee-scroll 30s linear infinite;
}
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }
.marquee-sep { margin: 0 1.5rem; color: var(--soleil); }

/* ---------- CARDS ---------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--encre);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translate(-2px,-3px); box-shadow: 7px 8px 0 var(--encre); }
.card-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card-body { padding: 1.25rem 1.5rem; }
.card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .7rem;
  border-radius: 2px;
  margin-bottom: .75rem;
}
.card-tag.rouge  { background: var(--rouge); color: #fff; }
.card-tag.turquoise { background: var(--turquoise); color: var(--encre); }
.card-tag.vert   { background: var(--vert); color: #fff; }
.card-title { font-size: 1.2rem; margin-bottom: .5rem; }
.card-text  { font-size: .9rem; color: #555; }

.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.75rem; }

/* ---------- STICKER/BADGE RETRO ---------- */
.retro-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--soleil);
  color: var(--encre);
  font-family: var(--font-display);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  box-shadow: 3px 3px 0 var(--encre);
  transform: rotate(-8deg);
  position: absolute;
  top: -20px;
  right: -15px;
}

/* ---------- STRIPES / DECORATIVE ---------- */
.stripe-header {
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--rouge) 0 20px, var(--turquoise) 20px 40px, var(--vert) 40px 60px, var(--soleil) 60px 80px);
}
.zigzag-bottom {
  height: 30px;
  background: linear-gradient(135deg, var(--creme) 25%, transparent 25%) -20px 0,
              linear-gradient(225deg, var(--creme) 25%, transparent 25%) -20px 0,
              linear-gradient(315deg, var(--creme) 25%, transparent 25%),
              linear-gradient(45deg, var(--creme) 25%, transparent 25%);
  background-size: 40px 40px;
  background-color: var(--rouge);
}
.dots-bg {
  background-image: radial-gradient(var(--encre) 1.5px, transparent 1.6px);
  background-size: 18px 18px;
  background-color: var(--sable);
}
.checker-bg {
  background-image:
    linear-gradient(45deg, rgba(0,0,0,.07) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(0,0,0,.07) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(0,0,0,.07) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(0,0,0,.07) 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
}

/* ---------- SECTION BG ---------- */
.bg-encre    { background: var(--encre); color: var(--creme); }
.bg-turquoise{ background: var(--turquoise); }
.bg-creme    { background: var(--creme); }
.bg-sable    { background: var(--sable); }
.bg-rouge    { background: var(--rouge); color: #fff; }
.bg-vert     { background: var(--vert); color: #fff; }

/* ---------- EVENTS ---------- */
.event-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--encre);
  margin-bottom: 1.5rem;
  transition: transform .2s;
}
.event-card:hover { transform: translate(-2px,-2px); }
.event-date {
  background: var(--rouge);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem .75rem;
  font-family: var(--font-display);
  text-align: center;
}
.event-date .day { font-size: 2.5rem; line-height: 1; }
.event-date .month { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .2rem; }
.event-date .year  { font-size: .7rem; opacity: .8; }
.event-info { padding: 1.25rem 1.5rem; }
.event-info h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.event-info p  { font-size: .9rem; color: #666; margin-bottom: .5rem; }
.event-meta { display: flex; gap: .75rem; flex-wrap: wrap; font-size: .78rem; font-family: var(--font-display); letter-spacing: .05em; text-transform: uppercase; color: #888; }
.event-meta span { display: flex; align-items: center; gap: .3rem; }

/* ---------- FORMS ---------- */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 6px 6px 0 var(--encre);
  max-width: 620px;
  margin: 0 auto;
}
.form-card h2 { font-size: 1.6rem; margin-bottom: 1.5rem; color: var(--rouge); }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .4rem;
  color: var(--encre);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 2px solid var(--sable);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--creme);
  color: var(--encre);
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--turquoise); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group input[type="checkbox"] { width: auto; margin-right: .5rem; }
.form-check { display: flex; align-items: flex-start; gap: .5rem; font-size: .9rem; }
.form-check label { font-family: var(--font-body); text-transform: none; letter-spacing: 0; }

.thanks-message {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.thanks-message.visible { display: block; }
.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--vert);
  color: #fff;
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.thanks-message h3 { font-size: 1.8rem; color: var(--vert); margin-bottom: .75rem; }

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 3px solid var(--encre);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(45,26,14,.85));
  color: #fff;
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 1.5rem .75rem .5rem;
}

/* ---------- YEAR TABS ---------- */
.year-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2rem;
}
.year-tab {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .45rem 1.1rem;
  border: 2px solid var(--encre);
  border-radius: 2px;
  background: var(--creme);
  color: var(--encre);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.year-tab.active, .year-tab:hover { background: var(--rouge); color: #fff; border-color: var(--rouge); }

/* ---------- MEMBERS TABLE ---------- */
.members-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 5px 5px 0 var(--encre);
  border-radius: var(--radius);
  overflow: hidden;
}
.members-table th {
  background: var(--encre);
  color: var(--turquoise);
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 1.1rem;
  text-align: left;
}
.members-table td {
  padding: .75rem 1.1rem;
  border-bottom: 1px solid var(--sable);
  font-size: .9rem;
}
.members-table tr:last-child td { border-bottom: none; }
.members-table tr:nth-child(even) td { background: var(--creme); }

/* ---------- INFO BOX ---------- */
.info-box {
  background: #fff;
  border-left: 6px solid var(--turquoise);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem 1.75rem;
  box-shadow: 4px 4px 0 var(--encre);
  margin-bottom: 1.5rem;
}
.info-box.rouge  { border-color: var(--rouge); }
.info-box.vert   { border-color: var(--vert); }
.info-box.soleil { border-color: var(--soleil); }
.info-box h3 { font-size: 1.1rem; margin-bottom: .6rem; }
.info-box p  { font-size: .9rem; color: #555; }

/* ---------- CONTACT INFO ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.contact-info-card {
  background: var(--encre);
  color: var(--creme);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 6px 6px 0 var(--rouge);
}
.contact-info-card h2 { font-size: 1.5rem; color: var(--turquoise); margin-bottom: 1.5rem; }
.contact-row { display: flex; align-items: flex-start; gap: .9rem; margin-bottom: 1.25rem; font-size: .9rem; line-height: 1.5; }
.contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--turquoise);
  color: var(--encre);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}
.contact-row a { color: var(--turquoise); }
.contact-row a:hover { text-decoration: underline; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--encre);
  color: var(--creme);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand { max-width: 320px; }
.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid var(--turquoise);
  margin-bottom: 1rem;
  background: #fff;
}
.footer-brand h3 { font-size: 1.1rem; color: var(--turquoise); margin-bottom: .75rem; }
.footer-brand p  { font-size: .85rem; color: #aaa; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--turquoise);
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p { display: block; font-size: .85rem; color: #aaa; padding: .3rem 0; }
.footer-col a:hover { color: var(--turquoise); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .78rem;
  color: #777;
}
.footer-stripes {
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--rouge) 0 20px, var(--turquoise) 20px 40px, var(--vert) 40px 60px, var(--soleil) 60px 80px);
  margin-top: 0;
}

/* ---------- HERO SCROLL INDICATOR ---------- */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.7);
  font-size: .7rem;
  font-family: var(--font-display);
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
.scroll-hint svg { width: 24px; height: 24px; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ---------- PAGE HEADER ---------- */
.page-header {
  background: var(--encre);
  padding: 4rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(71,181,192,.04) 40px, rgba(71,181,192,.04) 80px);
}
.page-header-inner { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: #fff;
  text-shadow: 4px 4px 0 rgba(0,0,0,.4);
  margin-bottom: .5rem;
}
.page-header h1 span { color: var(--turquoise); }
.page-header p { font-size: 1.1rem; color: var(--sable); font-family: var(--font-title); font-style: italic; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb {
  padding: .75rem 0;
  font-size: .82rem;
  color: #888;
  display: flex;
  gap: .5rem;
  align-items: center;
}
.breadcrumb a { color: var(--turquoise); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #bbb; }

/* ---------- STAT BAND ---------- */
.stat-band { padding: 3rem 0; }
.stat-band .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--turquoise);
  display: block;
}
.stat-label { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--sable); }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img  { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .stat-band .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .event-card { grid-template-columns: 90px 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .stat-band .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-logo { width: 120px; height: 120px; }
}
