/* ===== MAX GLOGOWSKI - OFFICIAL WEBSITE ===== */
/* Design: Editorial Football Magazine | Dark + Gold */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,900;1,700&family=Barlow:wght@300;400;500;600&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --black: #080a0d;
  --dark: #0d1117;
  --dark-2: #161b22;
  --dark-3: #1c2128;
  --gold: #d4a843;
  --gold-light: #f0c96a;
  --gold-dim: rgba(212, 168, 67, 0.15);
  --white: #f5f5f0;
  --gray: #8b949e;
  --gray-light: #c9d1d9;
  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --max-w: 1280px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section--sm { padding: 60px 0; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(212,168,67,0.3);
  padding: 20px 24px; z-index: 10000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-size: 0.875rem; color: var(--gray-light); flex: 1; min-width: 200px; }
#cookie-banner p a { color: var(--gold); }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.btn-cookie-accept {
  background: var(--gold); color: var(--black); border: none;
  padding: 10px 24px; font-family: var(--font-heading); font-weight: 700;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline {
  background: transparent; color: var(--gray); border: 1px solid var(--dark-3);
  padding: 10px 24px; font-family: var(--font-heading); font-weight: 600;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; transition: var(--transition);
}
.btn-cookie-decline:hover { border-color: var(--gray); color: var(--white); }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background var(--transition), border-bottom var(--transition);
}
.nav.scrolled {
  background: rgba(8, 10, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,67,0.2);
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.6rem; letter-spacing: 0.05em;
  color: var(--white); display: flex; align-items: center; gap: 10px;
}
.nav-logo span { color: var(--gold); }
.nav-logo-badge {
  width: 8px; height: 8px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-light);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important; color: var(--black) !important;
  padding: 8px 20px; font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.nav-mobile-btn {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav-mobile-btn span { width: 26px; height: 2px; background: var(--white); display: block; transition: var(--transition); }
.nav-mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-mobile-menu.open { transform: translateX(0); }
.nav-mobile-menu a {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--white); letter-spacing: 0.05em; transition: color var(--transition);
}
.nav-mobile-menu a:hover { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 14px 32px; cursor: pointer; border: none;
  transition: var(--transition);
}
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

/* ===== SECTION LABELS ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--gold); margin-bottom: 20px;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--gold); }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--black); }
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-img.loaded { opacity: 1; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(8,10,13,0.2) 0%, rgba(8,10,13,0.1) 30%,
    rgba(8,10,13,0.6) 60%, rgba(8,10,13,0.95) 85%, var(--black) 100%);
}
.hero-gradient-side {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,10,13,0.7) 0%, transparent 50%);
}
.hero-content {
  position: relative; z-index: 2; padding: 0 24px 80px;
  max-width: var(--max-w); margin: 0 auto; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--black);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 6px 14px; margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
}
.hero-name {
  font-family: var(--font-display); font-size: clamp(5rem, 12vw, 11rem);
  line-height: 0.85; color: var(--white);
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-name span { color: var(--gold); }
.hero-tagline {
  font-family: var(--font-heading); font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300; color: var(--gray-light); margin-top: 16px; max-width: 600px;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-wanted { margin-top: 32px; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-wanted-label {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 12px;
}
.hero-clubs { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-club-tag {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 16px; color: var(--gray-light);
}
.hero-chosen {
  background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.5);
  color: var(--gold) !important;
}
.hero-actions {
  display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-stats {
  display: flex; gap: 48px; margin-top: 60px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeInUp 0.8s ease 0.5s both;
}
.hero-stat-number { font-family: var(--font-display); font-size: 3rem; color: var(--gold); line-height: 1; }
.hero-stat-label {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-top: 4px;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== TICKER ===== */
.ticker { background: var(--gold); padding: 12px 0; overflow: hidden; }
.ticker-inner {
  display: flex; gap: 48px; white-space: nowrap;
  animation: ticker 25s linear infinite;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--black);
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.ticker-dot { width: 4px; height: 4px; background: rgba(0,0,0,0.4); border-radius: 50%; }

/* ===== STATS GRID ===== */
.stats-section { background: var(--dark); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255,255,255,0.06); }
.stat-card { background: var(--dark); padding: 48px 32px; text-align: center; transition: background var(--transition); }
.stat-card:hover { background: var(--dark-2); }
.stat-card-number { font-family: var(--font-display); font-size: 4rem; color: var(--gold); line-height: 1; }
.stat-card-label {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-top: 8px;
}
.stat-card-sub { font-size: 0.8rem; color: var(--gray); margin-top: 6px; }

/* ===== PROFILE ===== */
.profile-section { background: var(--dark); }
.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.profile-title { font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5rem); line-height: 0.9; margin-bottom: 24px; }
.profile-text { color: var(--gray-light); font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.profile-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.profile-info-item { padding: 16px; background: var(--dark-2); border-left: 3px solid var(--gold); }
.profile-info-label {
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 4px;
}
.profile-info-value { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--white); }
.skills-list { display: flex; flex-direction: column; gap: 20px; }
.skill-header { display: flex; justify-content: space-between; margin-bottom: 8px; }
.skill-name { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.skill-pct { font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; color: var(--gold); }
.skill-bar { height: 4px; background: rgba(255,255,255,0.08); position: relative; }
.skill-fill { position: absolute; top: 0; left: 0; height: 100%; background: var(--gold); width: 0; transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1); }

/* ===== JOURNEY PATH ===== */
.journey-section { background: var(--black); }
.journey-path {
  position: relative; display: flex; align-items: stretch; gap: 0; margin-top: 60px;
}
.journey-path::before {
  content: ''; position: absolute; top: 60px; left: 0; right: 0;
  height: 2px; background: linear-gradient(to right, var(--gold) 0%, rgba(212,168,67,0.3) 100%);
}
.journey-step { flex: 1; padding-top: 100px; padding-right: 32px; position: relative; }
.journey-step:last-child { padding-right: 0; }
.journey-dot {
  position: absolute; top: 52px; left: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--black);
  box-shadow: 0 0 0 2px var(--gold);
}
.journey-step.future .journey-dot { background: var(--dark-3); border-color: var(--dark-3); box-shadow: 0 0 0 2px rgba(212,168,67,0.3); }
.journey-period {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 10px;
}
.journey-title { font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; line-height: 1.2; }
.journey-club { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; color: var(--gold); margin-bottom: 12px; }
.journey-text { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }
.journey-step.future .journey-title, .journey-step.future .journey-text { opacity: 0.5; }
.journey-arrow {
  font-family: var(--font-display); font-size: 3rem; color: var(--gold);
  opacity: 0.4; align-self: center; padding: 0 16px; margin-top: -40px; flex-shrink: 0;
}

/* ===== ACHIEVEMENTS ===== */
.achievements-section { background: var(--dark); }
.achievements-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.achievement-card {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.06);
  padding: 32px; transition: var(--transition); position: relative; overflow: hidden;
}
.achievement-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--gold); transition: height 0.4s ease;
}
.achievement-card:hover::before { height: 100%; }
.achievement-card:hover { border-color: rgba(212,168,67,0.3); transform: translateY(-4px); }
.achievement-flag { font-size: 1.5rem; margin-bottom: 12px; }
.achievement-tournament {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px;
}
.achievement-location {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 20px;
}
.achievement-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.badge {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 4px 10px; border-radius: 2px;
}
.badge-gold { background: var(--gold); color: var(--black); }
.badge-silver { background: rgba(255,255,255,0.1); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }
.badge-outline { background: transparent; color: var(--gold); border: 1px solid rgba(212,168,67,0.4); }
.achievement-detail { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

/* ===== SEASONS TABLE ===== */
.seasons-section { background: var(--black); }
.season-block { margin-bottom: 60px; }
.season-title { font-family: var(--font-display); font-size: 2rem; color: var(--gold); margin-bottom: 6px; }
.season-sub {
  font-family: var(--font-heading); font-size: 0.85rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 24px;
}
.stats-table { width: 100%; border-collapse: collapse; }
.stats-table th {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold);
  padding: 12px 16px; text-align: left; border-bottom: 1px solid rgba(212,168,67,0.3);
}
.stats-table td {
  padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem; color: var(--gray-light);
}
.stats-table tr:hover td { background: rgba(255,255,255,0.03); }
.stats-table td.goals { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--gold); }
.season-total {
  display: flex; gap: 32px; padding: 20px;
  background: var(--dark-2); margin-top: 12px; border-left: 3px solid var(--gold);
}
.season-total-num { font-family: var(--font-display); font-size: 2rem; color: var(--gold); }
.season-total-label {
  font-family: var(--font-heading); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray);
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--dark); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 8px; margin-top: 48px; }
.gallery-item { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; background: var(--dark-3); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item img.loaded { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,10,13,0.8) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--white);
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95);
  z-index: 9999; display: none; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: fixed; top: 24px; right: 24px; background: none; border: none;
  color: var(--white); font-size: 2rem; cursor: pointer;
  font-family: var(--font-display); opacity: 0.7; transition: opacity var(--transition);
}
.lightbox-close:hover { opacity: 1; }

/* ===== VIDEO GALLERY ===== */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 24px; margin-top: 48px; }
.video-placeholder {
  aspect-ratio: 16/9; background: var(--dark-2);
  border: 2px dashed rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--gray);
}
.video-placeholder-icon { font-size: 3rem; opacity: 0.3; }
.video-placeholder p {
  font-family: var(--font-heading); font-size: 0.8rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
}
.video-embed { aspect-ratio: 16/9; background: var(--dark-2); position: relative; overflow: hidden; }
.video-embed iframe { width: 100%; height: 100%; border: none; }

/* ===== CONTACT ===== */
.contact-section { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; align-items: center; gap: 20px; padding: 24px; background: var(--dark-2); }
.contact-icon {
  width: 48px; height: 48px; background: var(--gold-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-item-label {
  font-family: var(--font-heading); font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 4px;
}
.contact-item-value { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold);
}
.form-input, .form-select, .form-textarea {
  background: var(--dark-2); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); padding: 14px 16px; font-family: var(--font-body);
  font-size: 1rem; transition: border-color var(--transition); outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select option { background: var(--dark-2); }
.form-textarea { resize: vertical; min-height: 120px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 2px; margin-top: 48px; }
.faq-item { background: var(--dark-2); border: 1px solid rgba(255,255,255,0.05); }
.faq-question {
  width: 100%; background: none; border: none; color: var(--white); text-align: left;
  padding: 20px 24px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; transition: color var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-icon { font-size: 1.2rem; color: var(--gold); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.95rem; color: var(--gray-light); line-height: 1.7; }

/* ===== NOTICE BANNER ===== */
.notice-banner {
  background: linear-gradient(135deg, rgba(212,168,67,0.1), rgba(212,168,67,0.05));
  border: 1px solid rgba(212,168,67,0.3);
  padding: 24px 32px; display: flex; align-items: flex-start; gap: 16px; margin-top: 48px;
}
.notice-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.notice-text { font-size: 0.9rem; color: var(--gray-light); line-height: 1.6; }
.notice-text strong { color: var(--gold); font-family: var(--font-heading); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 140px 0 80px; background: var(--dark);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: attr(data-text); position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%); font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 18rem); color: rgba(255,255,255,0.02);
  line-height: 1; pointer-events: none; white-space: nowrap;
}
.page-hero-title { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 7rem); line-height: 0.9; }
.page-hero-title span { color: var(--gold); }
.page-hero-sub {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 300;
  color: var(--gray-light); margin-top: 20px; max-width: 600px;
}

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { padding: 32px; background: var(--dark-2); border-top: 2px solid var(--gold); }
.value-icon { font-size: 1.8rem; margin-bottom: 16px; }
.value-title {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px;
}
.value-text { font-size: 0.875rem; color: var(--gray); line-height: 1.7; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-2); border-top: 1px solid rgba(255,255,255,0.06); padding: 60px 0 32px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 32px;
}
.footer-logo { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.05em; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--gold); }
.footer-bio { font-size: 0.875rem; color: var(--gray); line-height: 1.7; max-width: 280px; }
.footer-col-title {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--gold); margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.875rem; color: var(--gray); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.8rem; color: var(--gray); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.8rem; color: var(--gray); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ===== LEGAL PAGES ===== */
.legal-section { background: var(--black); padding: 120px 0 80px; }
.legal-content { max-width: 800px; }
.legal-content h2 {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem;
  color: var(--gold); margin: 40px 0 16px; text-transform: uppercase; letter-spacing: 0.05em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li {
  font-size: 0.95rem; color: var(--gray-light); line-height: 1.8; margin-bottom: 12px;
}
.legal-content ul { list-style: disc; padding-left: 24px; }
.legal-content a { color: var(--gold); }
.legal-content strong { color: var(--white); }
.legal-date {
  font-family: var(--font-heading); font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 32px;
}

.legal-content h3 {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--white);
  margin: 24px 0 12px;
}
.legal-table {
  width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.85rem;
}
.legal-table th {
  background: rgba(212,168,67,0.15); color: var(--gold); font-family: var(--font-heading);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 10px 14px; text-align: left; border: 1px solid rgba(255,255,255,0.08);
}
.legal-table td {
  padding: 9px 14px; border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.75); vertical-align: top;
}
.legal-table tr:hover td { background: rgba(255,255,255,0.03); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .profile-grid { grid-template-columns: 1fr; gap: 48px; }
  .achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-btn { display: flex; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .achievements-grid { grid-template-columns: 1fr; }
  .journey-path { flex-direction: column; }
  .journey-path::before { display: none; }
  .journey-step { padding-top: 0; padding-left: 32px; padding-right: 0; border-left: 2px solid rgba(212,168,67,0.3); padding-bottom: 32px; }
  .journey-step:last-child { padding-bottom: 0; }
  .journey-dot { left: -9px; top: 0; }
  .journey-arrow { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .hero-name { font-size: clamp(4rem, 15vw, 8rem); }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .profile-info-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .container { padding: 0 16px; }
}
