/* =============================================
   Helvetia Suisse – Central Website Styles
   ============================================= */

:root {
  --primary:   #6E1611;   /* Helvetia red */
  --accent:    #C8102E;   /* Swiss red */
  --gold:      #C0C5CE;   /* silver */
  --cream:     #F8F6F0;
  --dark:      #1A1A1A;
  --mid:       #555;
  --light:     #E8E4DA;
  --white:     #FFFFFF;
  --radius:    8px;
  --shadow:    0 4px 24px rgba(28,43,90,.12);
  --transition: .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

/* ── Typography ── */
h1,h2,h3,h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  color: var(--primary);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p  { color: var(--mid); }

a { color: inherit; text-decoration: none; }

/* ── Utilities ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 5rem 0; }
.section--cream { background: var(--cream); }
.text-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}

.section-title { margin-bottom: 1rem; }
.section-intro { font-size: 1.1rem; max-width: 680px; margin: 0 auto 3rem; }

.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--primary:hover { background: #a80d24; border-color: #a80d24; transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover { background: var(--white); color: var(--primary); }
.btn--navy {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn--navy:hover { background: #2d0908; transform: translateY(-1px); }
.btn--white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-weight: 700;
}
.btn--white:hover {
  background: rgba(255,255,255,.88);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ── HEADER / NAV ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  transition: box-shadow var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
}
.nav__logo svg { width: 40px; height: 40px; flex-shrink: 0; }
.nav__logo-text { font-family: 'Playfair Display', serif; font-size: 1rem; line-height: 1.2; }
.nav__logo-name { display: block; }
.nav__logo-tagline { display: block; font-size: .7rem; font-family: 'Inter', sans-serif; opacity: .8; letter-spacing: .05em; }

.nav__links {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}
.nav__links a {
  color: rgba(255,255,255,.88);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .02em;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--gold); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,.15);
  border-radius: 20px;
  overflow: hidden;
}
.lang-toggle button {
  padding: .3rem .8rem;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.lang-toggle button.active {
  background: var(--gold);
  color: var(--primary);
  border-radius: 20px;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .25rem;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.nav__mobile {
  display: none;
  flex-direction: column;
  background: var(--primary);
  padding: 1rem 1.5rem 1.5rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  color: rgba(255,255,255,.88);
  padding: .75rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 1rem;
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background-color: #1a0505;
  background-image:
    linear-gradient(155deg, #2d0908 0%, #6E1611 30%, #4a0e0b 55%, #0d0101 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Depth vignette with silver accents */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(192,197,206,.06) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 20%, rgba(192,197,206,.04) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(110,22,17,.35) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 110%, rgba(10,1,1,.85) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* Silver bottom border */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 5%, rgba(192,197,206,.4) 30%, rgba(220,223,228,.6) 50%, rgba(192,197,206,.4) 70%, transparent 95%);
  z-index: 2;
}

/* ── Hero pattern overlay ── */
.hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__pattern svg { width: 100%; height: 100%; }

.hero__inner {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding-top: 5rem;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(192,197,206,.12);
  border: 1px solid rgba(192,197,206,.35);
  border-radius: 30px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: #C0C5CE;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero__title {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero__motto {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: #C0C5CE;
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ── STATS BAR ── */
.stats {
  background: var(--primary);
  padding: 2.5rem 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stats__item { padding: .5rem 1rem; }
.stats__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
}
.stats__label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ── ABOUT ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__shield {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__shield svg { width: min(100%, 380px); filter: drop-shadow(0 8px 32px rgba(28,43,90,.2)); }

.about__content .section-label { display: block; text-align: left; }
.about__content h2 { margin-bottom: 1.25rem; }
.about__content p { margin-bottom: 1rem; }

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.value-item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--cream);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}
.value-item__icon { font-size: 1.5rem; margin-bottom: .5rem; display: block; }
.value-item__label {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--primary);
  font-weight: 600;
}

/* ── SECTIONS GRID ── */
.sections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.section-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,43,90,.18);
}

.section-card__header {
  padding: 2rem 1.75rem 1.25rem;
  position: relative;
}
.section-card__flag {
  width: 72px;
  height: 48px;
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
  flex-shrink: 0;
}
.section-card__flag svg { width: 100%; height: 100%; display: block; }
.section-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: .25rem;
}
.section-card__city {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
}
.section-card__accent {
  position: absolute;
  top: 0; right: 0;
  width: 5px;
  height: 100%;
  border-radius: 0 12px 12px 0;
}

.section-card__body {
  padding: 0 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.section-card__body p { font-size: .9rem; margin-bottom: 1.25rem; flex: 1; }

.section-card__meta {
  display: flex;
  gap: .75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.meta-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--cream);
  border-radius: 20px;
  padding: .2rem .7rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--primary);
}

.section-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}
.section-card__link:hover { color: var(--accent); }
.section-card__link svg { width: 14px; height: 14px; }

/* Canton accent colors */
.accent--vaud   { background: #009B3A; }
.accent--ge     { background: #F4B800; }
.accent--bern   { background: #E30613; }
.accent--basel  { background: #960018; }
.accent--zurich { background: #1E5FAD; }

.flag--vaud   { background: linear-gradient(135deg,#009B3A,#00c44b); }
.flag--ge     { background: linear-gradient(135deg,#F4B800,#ffd740); }
.flag--bern   { background: linear-gradient(135deg,#E30613,#ff2233); }
.flag--basel  { background: linear-gradient(135deg,#960018,#c0001f); }
.flag--zurich { background: linear-gradient(135deg,#1E5FAD,#2575d0); }

/* Five cards: flex, two rows, centered */
.sections-grid--5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── ZENTRALFEST ── */
.zentralfest {
  background: linear-gradient(135deg, var(--primary) 0%, #2d0908 100%);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.zentralfest::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(192,197,206,.12) 0%, transparent 60%);
}
.zentralfest .container { position: relative; z-index: 1; }
.zentralfest__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.zentralfest .section-label { color: var(--gold); }
.zentralfest h2 { color: var(--white); margin-bottom: 1.25rem; }
.zentralfest p  { color: rgba(255,255,255,.78); margin-bottom: 1rem; }

.zentralfest__features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.zentralfest__features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
}
.zentralfest__features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: .6rem;
  flex-shrink: 0;
}

.zentralfest__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.zf-emblem {
  width: min(100%, 340px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(192,197,206,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.zf-emblem svg { width: 55%; }

/* ── MOTTO BAND ── */
.motto-band {
  background: var(--primary);
  padding: 3rem 0;
  text-align: center;
}
.motto-band__text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-style: italic;
  color: var(--white);
  letter-spacing: .04em;
}
.motto-band__sub {
  margin-top: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.75);
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── JOIN ── */
.join__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.join__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0 2rem;
}
.join__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step-num {
  width: 36px; height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.step-text strong { display: block; color: var(--primary); margin-bottom: .2rem; font-size: .95rem; }
.step-text span   { font-size: .875rem; color: var(--mid); }

.join__form {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.join__form h3 { margin-bottom: 1.5rem; font-size: 1.4rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

/* ── CONTACT PANEL ── */
.contact-panel {
  background: var(--white);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-panel h3 { margin-bottom: 1.5rem; font-size: 1.4rem; }

.contact-national {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  transition: opacity var(--transition), transform var(--transition);
}
.contact-national:hover { opacity: .9; transform: translateX(3px); }
.contact-national__icon {
  width: 46px; height: 46px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-national > div {
  min-width: 0;
  overflow: hidden;
}
.contact-national__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .72;
  margin-bottom: .2rem;
}
.contact-national__email {
  font-weight: 700;
  font-size: 1rem;
}
.contact-national__arrow { margin-left: auto; opacity: .7; flex-shrink: 0; width: 14px; height: 14px; }

.contact-sections-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: .75rem;
}

.contact-section-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .85rem 1rem;
  border-radius: 12px;
  border: 1.5px solid var(--light);
  margin-bottom: .5rem;
  color: var(--dark);
  transition: border-color .25s, background .25s, transform .35s cubic-bezier(.34,1.4,.64,1);
}
.contact-section-card:last-child { margin-bottom: 0; }
.contact-section-card:hover {
  border-color: var(--primary);
  background: var(--cream);
  transform: translateX(5px);
}
.contact-section-flag {
  width: 48px; height: 32px;
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
}
.contact-section-flag img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #f5f3ee;
  padding: 2px;
  display: block;
}
.contact-section-name {
  flex: 1;
  font-weight: 600;
  font-size: .95rem;
}
.contact-section-card svg {
  color: var(--mid);
  flex-shrink: 0;
  width: 14px; height: 14px;
  transition: color .25s, transform .25s;
}
.contact-section-card:hover svg { color: var(--primary); transform: translateX(2px); }

/* ── INSTAGRAM SECTION ── */
.insta-section { background: var(--white); }

.insta-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 1.5rem;
}

.insta-card {
  flex: 1 1 0;
  min-width: 0;
  background: var(--white);
  border-radius: 20px;
  border: 1.5px solid var(--light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: var(--dark);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease, border-color .3s ease;
  cursor: pointer;
}
.insta-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 56px rgba(110,22,17,.14);
  border-color: transparent;
}

.insta-card__header {
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem .9rem .7rem;
}

.insta-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888) border-box;
  flex-shrink: 0;
}
.insta-card__avatar img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 2px;
  background: #f5f3ee;
  display: block;
}

.insta-card__info { flex: 1; min-width: 0; }
.insta-card__name {
  font-weight: 700;
  font-size: .78rem;
  color: var(--primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.insta-card__handle {
  font-size: .7rem;
  color: var(--mid);
}

.insta-card__ig-badge {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.insta-card__posts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.insta-post {
  aspect-ratio: 1;
  width: 100%;
}

.insta-card__follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  margin: .7rem .8rem .8rem;
  padding: .5rem .75rem;
  background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 60%, #bc1888 100%);
  border-radius: 50px;
  color: white;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .02em;
}

/* Instagram link on section cards */
.section-card__ig-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  font-weight: 600;
  color: #c13584;
  margin-top: .5rem;
  transition: opacity var(--transition);
}
.section-card__ig-link:hover { opacity: .72; }

/* ── FOOTER ── */
footer {
  background: #2d0908;
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand { max-width: 300px; }
.footer__brand p { font-size: .875rem; margin-top: 1rem; line-height: 1.6; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer__logo svg { width: 36px; height: 36px; }
.footer__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.2;
}

.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer__col a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__motto {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .about__grid,
  .zentralfest__grid,
  .join__grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about__visual { order: -1; }
  .about__shield svg { max-width: 280px; }

  .sections-grid--5 .section-card { flex: 0 1 calc(50% - 1rem); min-width: 240px; }

  .insta-grid { flex-wrap: wrap; }
  .insta-card { flex: 0 1 calc(33% - 1rem); min-width: 150px; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; max-width: 100%; }
}

@media (max-width: 600px) {
  .section { padding: 3.5rem 0; }
  .sections-grid--5 .section-card { flex: 0 1 100%; }
  .insta-card { flex: 0 1 calc(50% - .75rem); }
  .values { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .join__form { padding: 1.5rem; }
  .contact-panel { padding: 1.5rem; border-radius: 20px; }
  .contact-national { padding: 1rem 1.25rem; gap: .75rem; }
  .contact-national__icon { width: 38px; height: 38px; }
  .contact-national__email { font-size: .875rem; word-break: break-all; overflow-wrap: anywhere; }
  .contact-section-card { padding: .75rem .875rem; gap: .75rem; }
}

@media (hover: none) and (pointer: coarse) {
  .contact-national:hover { opacity: 1; transform: none; }
  .contact-section-card:hover { border-color: var(--light); background: transparent; transform: none; }
  .contact-section-card:hover svg { color: var(--mid); transform: none; }
}

/* =============================================
   LIQUID UI
   ============================================= */

/* ── Keyframes ── */
@keyframes blob-drift {
  0%,100% { border-radius:60% 40% 30% 70%/60% 30% 70% 40%; transform:translate(0,0) scale(1); }
  25%     { border-radius:30% 60% 70% 40%/50% 60% 30% 60%; transform:translate(15px,-20px) scale(1.03); }
  50%     { border-radius:50% 40% 60% 30%/40% 70% 30% 60%; transform:translate(-10px,12px) scale(0.97); }
  75%     { border-radius:40% 60% 30% 70%/60% 40% 70% 30%; transform:translate(8px,-8px) scale(1.01); }
}
@keyframes float-gentle {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-14px); }
}

/* ── Solid official-color header ── */
header {
  background: var(--primary) !important;
  border-bottom: 1px solid rgba(0,0,0,.15);
  box-shadow: 0 2px 20px rgba(0,0,0,.22);
}
header.scrolled {
  background: var(--primary) !important;
  box-shadow: 0 4px 28px rgba(0,0,0,.32) !important;
}

/* ── Pill buttons ── */
.btn { border-radius: 50px !important; letter-spacing: .03em; }

/* ── Liquid cards ── */
.section-card {
  border-radius: 24px !important;
  border: 1px solid rgba(110,22,17,.06);
  transition: transform .45s cubic-bezier(.34,1.56,.64,1), box-shadow .4s ease !important;
}
.section-card:hover {
  transform: translateY(-10px) scale(1.015) !important;
  box-shadow: 0 24px 64px rgba(110,22,17,.18) !important;
}
.section-card__accent { border-radius: 0 24px 24px 0 !important; }

/* ── Flag image sizing ── */
.section-card__flag {
  border-radius: 8px !important;
  width: 80px !important;
  height: 54px !important;
}
.section-card__flag img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  padding: 4px;
  background: #f5f3ee;
}

/* ── Sections grid: flex two-row centered ── */
.sections-grid--5 {
  gap: 2rem;
}
.sections-grid--5 .section-card {
  flex: 0 1 320px;
  min-width: 260px;
}

/* ── Card staggered entrance animation ── */
@keyframes card-rise {
  from { opacity: 0; transform: translateY(48px) scale(0.93); filter: blur(4px); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    filter: blur(0); }
}
.sections-grid--5 .fade-up {
  opacity: 0;
  transition: none !important;
}
.sections-grid--5 .fade-up.visible {
  animation: card-rise .65s cubic-bezier(.34,1.4,.64,1) forwards;
}
.sections-grid--5 .section-card:nth-child(1).visible { animation-delay: 0s; }
.sections-grid--5 .section-card:nth-child(2).visible { animation-delay: .12s; }
.sections-grid--5 .section-card:nth-child(3).visible { animation-delay: .24s; }
.sections-grid--5 .section-card:nth-child(4).visible { animation-delay: .18s; }
.sections-grid--5 .section-card:nth-child(5).visible { animation-delay: .30s; }

/* ── Beer bubble animation ── */
@keyframes bubble-rise {
  0%   { transform: translateY(0);     opacity: .55; }
  80%  { opacity: .15; }
  100% { transform: translateY(-28px); opacity: 0; }
}
.beer-bub { animation: bubble-rise 2.6s ease-in infinite; }
.beer-bub:nth-child(1)  { animation-delay: 0s;    animation-duration: 2.2s; }
.beer-bub:nth-child(2)  { animation-delay: .9s;   animation-duration: 2.8s; }
.beer-bub:nth-child(3)  { animation-delay: 1.7s;  animation-duration: 2.4s; }
.beer-bub:nth-child(4)  { animation-delay: .4s;   animation-duration: 3s;   }
.beer-bub:nth-child(5)  { animation-delay: 1.2s;  animation-duration: 2.6s; }
.beer-bub:nth-child(6)  { animation-delay: 2s;    animation-duration: 2.3s; }

/* ── Beer sparkle pulse ── */
@keyframes sparkle-pop {
  0%,100% { opacity: .85; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.15); }
}
.beer-sparkle { animation: sparkle-pop 2s ease-in-out infinite; }

/* ── Value items (icon-less) ── */
.value-item {
  border-radius: 20px !important;
  padding: 1.6rem 1.2rem !important;
  background: var(--white) !important;
  box-shadow: 0 2px 16px rgba(110,22,17,.06);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
}
.value-item:hover { transform: translateY(-6px); box-shadow: 0 10px 28px rgba(110,22,17,.12); }
.value-item__label { font-size: 1.1rem !important; }

/* ── Wave dividers ── */
.wave-divider { line-height: 0; position: relative; z-index: 2; margin-top: -2px; }
.wave-divider svg { display: block; width: 100%; }

/* ── Hero blobs (silver tones) ── */
.hero__blob--1 {
  position: absolute; width: 520px; height: 520px;
  background: rgba(192,197,206,.05);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  animation: blob-drift 16s ease-in-out infinite;
  top: 8%; right: -80px; filter: blur(60px); pointer-events: none;
}
.hero__blob--2 {
  position: absolute; width: 360px; height: 360px;
  background: rgba(110,22,17,.08);
  border-radius: 40% 60% 70% 30%/40% 70% 30% 60%;
  animation: blob-drift 11s ease-in-out infinite reverse;
  bottom: 12%; left: -60px; filter: blur(50px); pointer-events: none;
}

/* ── About logo float ── */
.about__shield img { animation: float-gentle 7s ease-in-out infinite; }

/* ── About section blob ── */
#about { position: relative; overflow: hidden; }
#about::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(110,22,17,.04) 0%, transparent 70%);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  animation: blob-drift 20s ease-in-out infinite;
  top: -150px; right: -150px; pointer-events: none;
}

/* ── Cream section blobs ── */
.section--cream { position: relative; overflow: hidden; -webkit-transform: translateZ(0); transform: translateZ(0); }
.section--cream::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(110,22,17,.04) 0%, transparent 70%);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  animation: blob-drift 18s ease-in-out infinite;
  top: -100px; right: -100px; pointer-events: none; z-index: 0;
}
.section--cream::after {
  content: ''; position: absolute;
  width: 350px; height: 350px;
  background: radial-gradient(ellipse, rgba(192,197,206,.05) 0%, transparent 70%);
  border-radius: 40% 60% 70% 30%/40% 70% 30% 60%;
  animation: blob-drift 14s ease-in-out infinite reverse;
  bottom: -100px; left: -80px; pointer-events: none; z-index: 0;
}
.section--cream .container { position: relative; z-index: 1; }

/* ── Stats blob ── */
.stats { position: relative; overflow: hidden; }
.stats::after {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: rgba(255,255,255,.04);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  animation: blob-drift 15s ease-in-out infinite reverse;
  bottom: -150px; right: 10%; pointer-events: none;
}

/* ── ZentralFest features glass ── */
.zentralfest__features li {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px !important;
  padding: .75rem 1.1rem;
  backdrop-filter: blur(6px);
  align-items: center !important;
  transition: background .3s ease, transform .3s ease;
}
.zentralfest__features li:hover { background: rgba(255,255,255,.12); transform: translateX(6px); }
.zentralfest__features li::before { margin-top: 0 !important; width: 8px !important; height: 8px !important; }

/* ── ZF emblem float ── */
.zf-emblem { animation: float-gentle 5s ease-in-out infinite; }

/* ── Motto band blob ── */
.motto-band { position: relative; overflow: hidden; }
.motto-band::before {
  content: ''; position: absolute;
  width: 600px; height: 300px;
  background: rgba(192,197,206,.07);
  border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  animation: blob-drift 14s ease-in-out infinite;
  top: -100px; left: 50%; transform: translateX(-50%); pointer-events: none;
}

/* ── Form liquid ── */
.form-group input,
.form-group select,
.form-group textarea { border-radius: 14px !important; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { box-shadow: 0 0 0 3px rgba(110,22,17,.12) !important; }
.join__form { border-radius: 28px !important; }
.step-num {
  border-radius: 14px !important;
  width: 42px !important; height: 42px !important;
  box-shadow: 0 4px 14px rgba(110,22,17,.22);
}
.meta-tag { border-radius: 50px !important; }
