/* ═══════════════════════════════════════════
   PIERRE CARNET RACING — Stylesheet
   Modern & clean motorsport athlete site
═══════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:       #E8132A;
  --red-dark:  #B50F21;
  --black:     #0A0A0A;
  --dark:      #111111;
  --dark-2:    #181818;
  --dark-3:    #1F1F1F;
  --gray:      #F4F4F4;
  --gray-2:    #EBEBEB;
  --mid-gray:  #888888;
  --white:     #FFFFFF;
  --text:      #1A1A1A;
  --text-soft: #555555;

  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius:    12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 48px rgba(0,0,0,0.12);

  --nav-h: 70px;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Sections ── */
section { padding: 100px 0; }
.section-dark  { background: var(--dark);  color: var(--white); }
.section-gray  { background: var(--gray); }

.section-header { text-align: center; margin-bottom: 60px; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label--light { color: #ff4d63; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text);
}
.section-title--light { color: var(--white); }

.section-intro {
  margin-top: 16px;
  font-size: 17px;
  color: var(--text-soft);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-intro--light { color: rgba(255,255,255,0.65); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Placeholder images ── */
.img-placeholder {
  background: var(--gray-2);
  border: 2px dashed #CCC;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  min-height: 200px;
}

/* ═══════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
#navbar.scrolled .nav-logo .logo-name,
#navbar.scrolled .nav-logo .logo-surname,
#navbar.scrolled .nav-logo .logo-badge { color: var(--text); }
#navbar.scrolled .nav-links a { color: var(--text); }
#navbar.scrolled .nav-links a:hover { color: var(--red); }
#navbar.scrolled .nav-cta { color: var(--white) !important; background: var(--red); }
#navbar.scrolled .nav-toggle span { background: var(--text); }

.nav-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-logo .logo-name    { font-size: 20px; color: var(--white); transition: color var(--transition); }
.nav-logo .logo-surname { font-size: 20px; color: var(--red); }
.nav-logo .logo-badge   { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.5); margin-left: 6px; letter-spacing: 0.1em; transition: color var(--transition); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Language Switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
#navbar.scrolled .lang-switcher { border-left-color: rgba(0,0,0,0.1); }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn img { border-radius: 2px; display: block; }
.lang-btn:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.lang-btn--active {
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
}
#navbar.scrolled .lang-btn { color: rgba(0,0,0,0.45); }
#navbar.scrolled .lang-btn:hover { color: var(--text); background: rgba(0,0,0,0.05); }
#navbar.scrolled .lang-btn--active {
  color: var(--text) !important;
  border-color: rgba(0,0,0,0.2);
  background: rgba(0,0,0,0.04);
}

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
  padding: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(232,19,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(20,20,20,0.9) 0%, transparent 70%);
  z-index: 1;
}
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.tag-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 3px rgba(232,19,42,0.25);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(232,19,42,0.25); }
  50%       { box-shadow: 0 0 0 6px rgba(232,19,42,0.1); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(64px, 9vw, 110px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title-line { display: block; }
.hero-title .accent { color: var(--red); }

.hero-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-subtitle strong { color: var(--white); }

.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  padding: 0 28px 0 0;
}
.hero-stat:first-child { padding-left: 0; }
.stat-number {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.12);
  margin-right: 28px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.hero-img-placeholder {
  background: #0d0d0d;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
}
.hero-img-placeholder img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  display: block;
  /* Blend dark portrait background seamlessly */
  mix-blend-mode: normal;
}
.placeholder-driver {
  color: rgba(255,255,255,0.08);
  width: 140px;
}
.placeholder-hint {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}

/* Kart badge on hero image */
.hero-kart-badge {
  position: absolute;
  top: 20px;
  right: -16px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.kart-num {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.kart-team {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,19,42,0.2);
  pointer-events: none;
}
.deco-ring-1 {
  width: 120%; padding-top: 120%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: spin-slow 20s linear infinite;
}
.deco-ring-2 {
  width: 135%; padding-top: 135%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(232,19,42,0.1);
  animation: spin-slow 30s linear infinite reverse;
}
@keyframes spin-slow { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-flag {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 40px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.hero-flag img { border-radius: 3px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
  animation: fade-in-up 1.5s ease 1s both;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 0.8; }
}

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-media { position: relative; }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
}
.about-main-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  display: block;
}
.about-sub-img {
  width: 70%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}
.img-placeholder--about {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  width: 90px; height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  box-shadow: 0 8px 30px rgba(232,19,42,0.35);
}
.about-badge strong { font-size: 26px; font-weight: 900; line-height: 1; }
.about-badge small  { font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.85; }

.about-sub-img-wrap {
  margin-top: 28px;
}
.img-placeholder--kart {
  width: 70%;
  aspect-ratio: 4/3;
}

.about-text .section-label { display: block; margin-bottom: 10px; }
.about-text .section-title { margin-bottom: 20px; }

.about-lead {
  font-size: 19px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-soft);
  margin-bottom: 14px;
  font-size: 15.5px;
}
.about-text strong { color: var(--text); }

.about-pillars {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--gray);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--red);
}
.pillar-icon { font-size: 20px; flex-shrink: 0; }
.pillar > div { display: flex; flex-direction: column; gap: 2px; }
.pillar strong { font-size: 14px; font-weight: 700; }
.pillar span   { font-size: 13px; color: var(--text-soft); }

/* ═══════════════════════════════════════════
   ACHIEVEMENTS
═══════════════════════════════════════════ */
#achievements { background: var(--dark); }

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.achievement-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition);
}
.achievement-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-3px);
}
.achievement-card--featured {
  background: linear-gradient(135deg, rgba(232,19,42,0.18), rgba(232,19,42,0.06));
  border-color: rgba(232,19,42,0.4);
}
.ach-icon   { font-size: 28px; margin-bottom: 16px; }
.ach-position {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.achievement-card--featured .ach-position { color: #ff4d63; }
.ach-event  { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.ach-desc   { font-size: 12.5px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.ach-year   {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.05em;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: rgba(255,255,255,0.03);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-big {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   SEASON 2026
═══════════════════════════════════════════ */
#season { background: var(--white); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.calendar-card {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 28px 22px;
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.calendar-card:hover {
  border-top-color: var(--red);
  box-shadow: var(--shadow-md);
}
.calendar-card--highlight {
  background: var(--dark);
  border-top-color: var(--red);
}
.calendar-card--highlight .cal-month,
.calendar-card--highlight .cal-event,
.calendar-card--highlight .cal-detail { color: var(--white); }
.calendar-card--highlight .cal-detail { color: rgba(255,255,255,0.6); }

.cal-flag   { font-size: 24px; margin-bottom: 12px; }
.cal-month  { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.cal-event  { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.cal-detail { font-size: 13px; color: var(--text-soft); }

.calendar-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-soft);
}
.calendar-note a { color: var(--red); font-weight: 600; }
.calendar-note a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
#gallery { background: var(--gray); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
  margin-bottom: 32px;
}
.gallery-item {
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--gray-2);
  border: none;
  display: block;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover { box-shadow: var(--shadow-md); }
.gallery-item--wide { grid-column: span 2; }

/* Gallery video */
.gallery-video {
  margin-top: 40px;
}
.gallery-video-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.video-wrap {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/9;
  background: var(--dark);
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.gallery-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 6px;
  border: 1.5px solid #DDD;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(232,19,42,0.04);
}
.social-link svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════
   SPONSORS
═══════════════════════════════════════════ */
#sponsors { background: var(--dark-2); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 70px;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 28px 22px;
}
.why-icon { font-size: 28px; margin-bottom: 14px; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-card p  { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }

.packages-title {
  text-align: center;
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.package-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: var(--transition);
}
.package-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.package-card--featured {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.03);
}
.package-card--featured:hover {
  background: var(--red-dark);
  transform: scale(1.03) translateY(-4px);
}
.pkg-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
}
.pkg-tier {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.package-card--featured .pkg-tier { color: rgba(255,255,255,0.7); }
.pkg-price {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.pkg-list {
  flex: 1;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  padding-left: 20px;
  position: relative;
}
.pkg-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: 12px;
}
.package-card--featured .pkg-list li::before { color: rgba(255,255,255,0.8); }
.package-card--featured .pkg-list li { color: rgba(255,255,255,0.9); }

.packages-note {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 60px;
}
.packages-note a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.packages-note a:hover { color: var(--white); }

.current-sponsors { text-align: center; }
.current-sponsors-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.sponsor-slots {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.sponsor-slot {
  background: rgba(255,255,255,0.04);
  border: 1.5px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 24px 36px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
  min-width: 160px;
}

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
#contact { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label { display: block; margin-bottom: 10px; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-info > p { color: var(--text-soft); margin-bottom: 28px; font-size: 15.5px; line-height: 1.7; }

.contact-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 14.5px; }
.contact-icon { font-size: 18px; }
.contact-item a { color: var(--red); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

.contact-social { display: flex; gap: 10px; margin-bottom: 28px; }
.social-icon-btn {
  width: 42px; height: 42px;
  border-radius: 8px;
  border: 1.5px solid #E0E0E0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: var(--transition);
}
.social-icon-btn:hover { border-color: var(--red); color: var(--red); }
.social-icon-btn svg { width: 16px; height: 16px; }

.gofundme-btn { width: fit-content; }

/* Form */
.contact-form {
  background: var(--gray);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1.5px solid #E0E0E0;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #BDBDBD; }

.form-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--mid-gray);
  margin-top: 12px;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--black);
  padding: 48px 0;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-logo .logo-name    { color: var(--white); }
.footer-logo .logo-surname { color: var(--red); }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}
.footer-nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding: 4px 10px;
  border-radius: 4px;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fade-in-up 0.7s ease both;
}
.hero-tag      { animation-delay: 0.1s; }
.hero-title    { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.35s; }
.hero-stat-row { animation-delay: 0.5s; }
.hero-actions  { animation-delay: 0.65s; }
.hero-visual   { animation: fade-in-up 0.9s ease 0.3s both; }

/* Scroll-reveal base */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .achievements-grid,
  .stats-row,
  .why-grid,
  .calendar-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .package-card--featured { transform: none; }
  .hero-container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(10,10,10,0.98); padding: 20px 24px 32px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; border-radius: 6px; font-size: 15px; }
  .nav-toggle { display: flex; }
  #navbar.scrolled .nav-links { background: rgba(255,255,255,0.98); }
  .lang-switcher { margin-left: 6px; padding-left: 8px; }
  .lang-btn span { display: none; }
  .lang-btn { padding: 5px 7px; }

  .hero-container { padding-top: calc(var(--nav-h) + 24px); padding-bottom: 60px; }
  .hero-title { font-size: clamp(52px, 14vw, 80px); }
  .hero-stat-row { gap: 0; }
  .stat-number { font-size: 28px; }

  .achievements-grid,
  .why-grid,
  .calendar-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--wide { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .sponsor-slots { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .stats-row { grid-template-columns: 1fr; }
}
