/* =============================================================================
   FRANCO AJIDAUCEI – PLAYER PROFILE
   Main Stylesheet
   ============================================================================= */

/* -----------------------------------------------------------------------------
   CSS Custom Properties
   ----------------------------------------------------------------------------- */
:root {
  /* Colors */
  --fap-bg-primary:    #080A0A;
  --fap-bg-secondary:  #101313;
  --fap-bg-card:       #151919;
  --fap-bg-card-hover: #1A1F1F;
  --fap-text-primary:  #FFFFFF;
  --fap-text-secondary: #A8B0AD;
  --fap-text-muted:    #6B7571;
  --fap-accent:        #B6F238;
  --fap-accent-dim:    rgba(182, 242, 56, 0.12);
  --fap-accent-hover:  #C8FF4A;
  --fap-border:        rgba(255, 255, 255, 0.08);
  --fap-border-light:  rgba(255, 255, 255, 0.04);
  --fap-overlay:       rgba(8, 10, 10, 0.75);

  /* Whatsapp */
  --fap-whatsapp:      #25D366;

  /* Typography */
  --font-display: 'Barlow Condensed', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing */
  --fap-section-py:  clamp(60px, 8vw, 120px);
  --fap-container-px: clamp(20px, 5vw, 80px);
  --fap-max-width:   1360px;
  --fap-gap:         clamp(16px, 3vw, 32px);

  /* Borders */
  --fap-radius-sm:   4px;
  --fap-radius:      8px;
  --fap-radius-lg:   16px;
  --fap-radius-xl:   24px;

  /* Transitions */
  --fap-ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --fap-duration:    0.3s;

  /* Z-index scale */
  --z-header:  100;
  --z-mobile:  200;
  --z-modal:   300;
  --z-overlay: 400;
}

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

html, body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--fap-bg-primary);
  color: var(--fap-text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure no top offset from removed header */
.site-main,
.wp-site-blocks,
main,
.fap-hero-section {
  margin-top: 0;
  padding-top: 0;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--fap-accent); }

button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--fap-accent);
  outline-offset: 3px;
  border-radius: var(--fap-radius-sm);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fap-animate { opacity: 1 !important; transform: none !important; }
}

/* Skip link */
.fap-skip-link {
  position: absolute;
  top: -40px;
  left: 20px;
  background: var(--fap-accent);
  color: #000;
  padding: 8px 16px;
  border-radius: var(--fap-radius);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transition: top 0.2s;
}
.fap-skip-link:focus { top: 20px; }

/* -----------------------------------------------------------------------------
   Layout Utilities
   ----------------------------------------------------------------------------- */
.fap-container {
  max-width: var(--fap-max-width);
  margin: 0 auto;
  padding: 0 var(--fap-container-px);
}

.fap-section {
  padding: var(--fap-section-py) 0;
}

.fap-section-header {
  margin-bottom: clamp(40px, 6vw, 80px);
}

.fap-section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--fap-text-primary);
  margin-top: 12px;
  line-height: 1.05;
}

.fap-section-subtitle {
  font-size: 16px;
  color: var(--fap-text-secondary);
  margin-top: 16px;
  max-width: 600px;
  line-height: 1.7;
}

.fap-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fap-accent);
}
.fap-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--fap-accent);
}

/* -----------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------------- */
.fap-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  min-height: 48px;
  border-radius: var(--fap-radius);
  border: 1px solid transparent;
  transition: all var(--fap-duration) var(--fap-ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.fap-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.fap-btn--accent {
  background: var(--fap-accent);
  color: #000;
  border-color: var(--fap-accent);
}
.fap-btn--accent:hover {
  background: var(--fap-accent-hover);
  border-color: var(--fap-accent-hover);
  color: #000;
  transform: translateY(-1px);
}

.fap-btn--outline {
  background: transparent;
  color: var(--fap-text-primary);
  border-color: var(--fap-border);
}
.fap-btn--outline:hover {
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04);
  color: var(--fap-text-primary);
  transform: translateY(-1px);
}

.fap-btn--whatsapp {
  background: var(--fap-whatsapp);
  color: #fff;
  border-color: var(--fap-whatsapp);
}
.fap-btn--whatsapp:hover {
  background: #22c45e;
  border-color: #22c45e;
  color: #fff;
  transform: translateY(-1px);
}

.fap-btn--large { font-size: 15px; padding: 16px 36px; min-height: 56px; }
.fap-btn--disabled { opacity: 0.35; pointer-events: none; cursor: default; }

/* -----------------------------------------------------------------------------
   Header
   ----------------------------------------------------------------------------- */
.fap-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 24px 0;
  transition: background var(--fap-duration) var(--fap-ease),
              padding var(--fap-duration) var(--fap-ease),
              border-color var(--fap-duration) var(--fap-ease),
              backdrop-filter var(--fap-duration) var(--fap-ease);
  border-bottom: 1px solid transparent;
}

.fap-header.is-scrolled {
  background: rgba(8, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom-color: var(--fap-border);
}

.fap-header__inner {
  max-width: var(--fap-max-width);
  margin: 0 auto;
  padding: 0 var(--fap-container-px);
  display: flex;
  align-items: center;
  gap: 40px;
}

.fap-header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--fap-duration);
}
.fap-header__logo:hover { opacity: 0.8; color: inherit; }

.fap-header__monogram {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--fap-accent);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--fap-accent);
  border-radius: var(--fap-radius-sm);
}

.fap-header__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--fap-text-primary);
}

.fap-header__nav { flex: 1; }

.fap-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}

.fap-nav__list .menu-item a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fap-text-secondary);
  padding: 8px 12px;
  border-radius: var(--fap-radius-sm);
  transition: color var(--fap-duration), background var(--fap-duration);
  text-decoration: none;
  white-space: nowrap;
}
.fap-nav__list .menu-item a:hover,
.fap-nav__list .menu-item.current-menu-item a,
.fap-nav__list .menu-item.active a {
  color: var(--fap-text-primary);
  background: rgba(255,255,255,0.06);
}

.fap-header__cta { flex-shrink: 0; font-size: 13px; padding: 10px 20px; min-height: 40px; }
.fap-header__hamburger { display: none; }

/* -----------------------------------------------------------------------------
   Mobile Menu
   ----------------------------------------------------------------------------- */
.fap-mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fap-duration);
  z-index: calc(var(--z-mobile) - 1);
}

.fap-mobile-menu__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 90vw);
  background: var(--fap-bg-card);
  border-left: 1px solid var(--fap-border);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.35s var(--fap-ease);
  z-index: var(--z-mobile);
  overflow-y: auto;
}

.fap-mobile-menu.is-open .fap-mobile-menu__overlay {
  opacity: 1;
  pointer-events: auto;
}
.fap-mobile-menu.is-open .fap-mobile-menu__panel {
  transform: translateX(0);
}

.fap-mobile-menu__close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fap-radius);
  border: 1px solid var(--fap-border);
  color: var(--fap-text-secondary);
  transition: all var(--fap-duration);
}
.fap-mobile-menu__close:hover { color: var(--fap-text-primary); border-color: rgba(255,255,255,0.2); }
.fap-mobile-menu__close svg { width: 18px; height: 18px; }

.fap-mobile-menu__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.fap-mobile-nav__list { display: flex; flex-direction: column; gap: 4px; }
.fap-mobile-nav__list .menu-item a {
  display: block;
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fap-text-secondary);
  padding: 12px 16px;
  border-radius: var(--fap-radius);
  transition: all var(--fap-duration);
  text-decoration: none;
}
.fap-mobile-nav__list .menu-item a:hover { color: var(--fap-text-primary); background: rgba(255,255,255,0.06); }

.fap-mobile-menu__cta { margin-top: auto; width: 100%; justify-content: center; }

/* -----------------------------------------------------------------------------
   Hero Section
   ----------------------------------------------------------------------------- */
/* ─── HERO ─────────────────────────────────────────────────────────── */
.fap-hero {
  position: relative;
  display: flex;
  background-color: var(--fap-bg-secondary);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.fap-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 10, 10, 0.2) 0%,
    rgba(8, 10, 10, 0.5) 50%,
    rgba(8, 10, 10, 0.92) 85%,
    var(--fap-bg-primary) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Decorative field lines */
.fap-hero__field-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.fap-hero__field-line {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.04);
}
.fap-hero__field-line--1 {
  top: 10%;
  left: 50%;
  width: 1px;
  height: 80%;
}
.fap-hero__field-line--2 {
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
}

/* Inner wrapper: full width, max-width centered */
.fap-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--fap-max-width);
  margin: 0 auto;
  padding: 0 0 0 var(--fap-container-px);
  display: flex;
}

/* Two-column grid: text left | photo right */
.fap-hero__layout {
  display: grid;
  grid-template-columns: 1fr 42%;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
}

/* Left column: content */
.fap-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px clamp(40px, 5vw, 80px) 80px 0;
}

/* Right column: photo */
.fap-hero__photo {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.fap-hero__photo-frame {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
}

.fap-hero__photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.fap-hero__photo-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--fap-accent);
  z-index: 2;
}

.fap-hero__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fap-accent);
  margin-bottom: 20px;
}

.fap-hero__title {
  font-family: var(--font-display);
  font-size: clamp(72px, 14vw, 160px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  line-height: 0.92;
  color: var(--fap-text-primary);
  margin-bottom: 24px;
}
.fap-hero__title-line1,
.fap-hero__title-line2 { display: block; }
.fap-hero__title-line2 { color: var(--fap-accent); }

.fap-hero__subtitle {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--fap-text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 520px;
}

/* Quick facts */
.fap-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.fap-hero__fact {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius);
  padding: 10px 16px;
  backdrop-filter: blur(8px);
}

.fap-hero__fact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fap-text-muted);
}

.fap-hero__fact-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--fap-text-primary);
}

.fap-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Scroll indicator */
.fap-hero__scroll {
  position: absolute;
  bottom: 40px;
  right: var(--fap-container-px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.fap-hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--fap-accent));
  animation: scrollLine 2s ease-in-out infinite;
}
.fap-hero__scroll-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fap-text-muted);
  writing-mode: vertical-rl;
}

@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* -----------------------------------------------------------------------------
   Introduction / Player Profile Section
   ----------------------------------------------------------------------------- */
.fap-intro { background: var(--fap-bg-primary); }

.fap-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.fap-intro__content .fap-label { margin-bottom: 20px; }

.fap-intro__text {
  font-size: 16px;
  color: var(--fap-text-secondary);
  line-height: 1.8;
  margin-top: 20px;
}

/* Player data card */
.fap-player-card {
  background: var(--fap-bg-card);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius-lg);
  overflow: hidden;
}

.fap-player-card__header {
  background: var(--fap-accent-dim);
  border-bottom: 1px solid var(--fap-border);
  padding: 20px 28px;
}

.fap-player-card__badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fap-accent);
}

.fap-player-card__list { padding: 0; }

.fap-player-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  border-bottom: 1px solid var(--fap-border-light);
}
.fap-player-card__row:last-child { border-bottom: none; }

.fap-player-card__row dt {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fap-text-muted);
  flex-shrink: 0;
  text-transform: uppercase;
}

.fap-player-card__row dd {
  font-size: 14px;
  font-weight: 600;
  color: var(--fap-text-primary);
  text-align: right;
}

/* -----------------------------------------------------------------------------
   Statistics Section
   ----------------------------------------------------------------------------- */
.fap-stats { background: var(--fap-bg-secondary); }

.fap-stats__seasons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fap-stats__season-btn {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  min-height: 44px;
  border-radius: var(--fap-radius);
  border: 1px solid var(--fap-border);
  color: var(--fap-text-secondary);
  background: transparent;
  transition: all var(--fap-duration);
  cursor: pointer;
}
.fap-stats__season-btn:hover {
  border-color: rgba(255,255,255,0.2);
  color: var(--fap-text-primary);
}
.fap-stats__season-btn.is-active {
  background: var(--fap-accent);
  border-color: var(--fap-accent);
  color: #000;
}

.fap-stats__panel { display: none; }
.fap-stats__panel.is-active { display: block; }

.fap-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--fap-gap);
}

.fap-stat-card {
  background: var(--fap-bg-card);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius-lg);
  padding: clamp(24px, 4vw, 48px) 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: border-color var(--fap-duration), background var(--fap-duration);
}
.fap-stat-card:hover {
  border-color: var(--fap-accent);
  background: var(--fap-bg-card-hover);
}

.fap-stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fap-text-primary);
  line-height: 1;
}

.fap-stat-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fap-text-muted);
}

.fap-stats__empty {
  font-size: 14px;
  color: var(--fap-text-muted);
  text-align: center;
  padding: 40px;
  border: 1px dashed var(--fap-border);
  border-radius: var(--fap-radius-lg);
}

/* -----------------------------------------------------------------------------
   Playing Style / Spielerprofil Section
   ----------------------------------------------------------------------------- */
.fap-playing-style { background: var(--fap-bg-primary); }

.fap-strengths__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fap-gap);
  margin-bottom: clamp(40px, 6vw, 80px);
}

.fap-strength-card {
  background: var(--fap-bg-card);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius-lg);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
  transition: border-color var(--fap-duration), transform var(--fap-duration);
}
.fap-strength-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fap-accent);
  opacity: 0;
  transition: opacity var(--fap-duration);
}
.fap-strength-card:hover {
  border-color: rgba(182, 242, 56, 0.3);
  transform: translateY(-4px);
}
.fap-strength-card:hover::before { opacity: 1; }

.fap-strength-card__icon {
  width: 48px;
  height: 48px;
  color: var(--fap-accent);
  margin-bottom: 20px;
}
.fap-strength-card__icon svg { width: 48px; height: 48px; }

.fap-strength-card__number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}

.fap-strength-card__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fap-text-primary);
  margin-bottom: 14px;
}

.fap-strength-card__text {
  font-size: 14px;
  color: var(--fap-text-secondary);
  line-height: 1.7;
}

/* Technical potential */
.fap-tech-potential {
  background: var(--fap-bg-card);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius-lg);
  padding: clamp(32px, 4vw, 56px);
}

.fap-tech-potential__header {
  margin-bottom: 32px;
}

.fap-tech-potential__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fap-text-primary);
  margin-bottom: 8px;
}

.fap-tech-potential__subtitle {
  font-size: 14px;
  color: var(--fap-text-secondary);
  line-height: 1.6;
}

.fap-tech-potential__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fap-tech-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--fap-bg-secondary);
  border: 1px solid var(--fap-border-light);
  border-radius: var(--fap-radius);
  transition: border-color var(--fap-duration);
}
.fap-tech-item:hover { border-color: var(--fap-accent); }

.fap-tech-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fap-accent);
  flex-shrink: 0;
}

.fap-tech-item__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fap-text-primary);
}

/* -----------------------------------------------------------------------------
   Career Timeline
   ----------------------------------------------------------------------------- */
.fap-career { background: var(--fap-bg-secondary); }

.fap-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.fap-timeline__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 24px;
  padding-bottom: 0;
}
.fap-timeline__item:last-child .fap-timeline__line { display: none; }

.fap-timeline__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}

.fap-timeline__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--fap-accent);
  border: 3px solid var(--fap-bg-secondary);
  box-shadow: 0 0 0 2px var(--fap-accent);
  flex-shrink: 0;
  z-index: 1;
}

.fap-timeline__line {
  width: 1px;
  flex: 1;
  min-height: 40px;
  background: linear-gradient(to bottom, var(--fap-accent), var(--fap-border));
  margin-top: 6px;
}

.fap-timeline__content {
  padding-bottom: 40px;
}

.fap-timeline__period {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fap-accent);
  display: block;
  margin-bottom: 6px;
}

.fap-timeline__club {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fap-text-primary);
  margin-bottom: 10px;
}

.fap-timeline__description {
  font-size: 14px;
  color: var(--fap-text-secondary);
  line-height: 1.7;
}

.fap-career__note {
  border-left: 2px solid var(--fap-border);
  padding: 16px 20px;
  background: var(--fap-bg-card);
  border-radius: 0 var(--fap-radius) var(--fap-radius) 0;
  max-width: 680px;
}

.fap-career__note-text {
  font-size: 13px;
  color: var(--fap-text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* -----------------------------------------------------------------------------
   Videos Section
   ----------------------------------------------------------------------------- */
.fap-videos { background: var(--fap-bg-primary); }

.fap-videos__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: var(--fap-gap);
  align-items: start;
}

.fap-video-card {
  background: var(--fap-bg-card);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius-lg);
  overflow: hidden;
  transition: border-color var(--fap-duration), transform var(--fap-duration);
}
.fap-video-card:hover {
  border-color: rgba(182, 242, 56, 0.3);
  transform: translateY(-4px);
}

.fap-video-card__trigger {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.fap-video-card__thumbnail {
  position: relative;
  padding-top: 56.25%; /* 16:9 default */
  overflow: hidden;
  background: var(--fap-bg-secondary);
}
.fap-video-card--portrait .fap-video-card__thumbnail {
  padding-top: 177.78%; /* 9:16 */
}
.fap-video-card__thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--fap-ease);
}
.fap-video-card:hover .fap-video-card__thumbnail img { transform: scale(1.04); }

.fap-video-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background var(--fap-duration);
}
.fap-video-card:hover .fap-video-card__overlay { background: rgba(0,0,0,0.15); }

.fap-video-card__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  transition: background-image 0.3s;
}

.fap-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--fap-accent);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--fap-duration), background var(--fap-duration);
  pointer-events: none;
}
.fap-video-card__play svg { width: 24px; height: 24px; margin-left: 3px; }
.fap-video-card:hover .fap-video-card__play { transform: translate(-50%, -50%) scale(1.1); background: var(--fap-accent-hover); }

.fap-video-card__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 3px 8px;
  border-radius: var(--fap-radius-sm);
  pointer-events: none;
}

.fap-video-card__placeholder-full {
  padding-top: 56.25%;
  position: relative;
  background: var(--fap-bg-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.fap-video-card__placeholder-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: var(--fap-text-muted);
  white-space: nowrap;
}

.fap-video-card__info {
  padding: 20px 24px;
}

.fap-video-card__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fap-accent);
  display: block;
  margin-bottom: 6px;
}

.fap-video-card__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fap-text-primary);
}

/* Video Modal */
.fap-video-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fap-duration);
}
.fap-video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fap-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.9);
}

.fap-video-modal__container {
  position: relative;
  z-index: 1;
  width: min(900px, 95vw);
  background: #000;
  border-radius: var(--fap-radius-lg);
  overflow: hidden;
}

.fap-video-modal__close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fap-duration);
  z-index: 2;
}
.fap-video-modal__close:hover { background: rgba(255,255,255,0.2); }
.fap-video-modal__close svg { width: 16px; height: 16px; }

.fap-video-modal__player { position: relative; padding-top: 56.25%; }
.fap-video-modal__player iframe,
.fap-video-modal__player video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* -----------------------------------------------------------------------------
   Gallery Section
   ----------------------------------------------------------------------------- */
.fap-gallery { background: var(--fap-bg-secondary); }

.fap-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}

.fap-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--fap-radius);
  background: var(--fap-bg-card);
  cursor: pointer;
  border: 1px solid var(--fap-border);
  padding: 0;
}

.fap-gallery__item--wide { grid-column: span 2; }
.fap-gallery__item--tall { grid-row: span 2; }

.fap-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--fap-ease);
}
.fap-gallery__item:hover img { transform: scale(1.06); }

.fap-gallery__item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--fap-duration);
  pointer-events: none;
}
.fap-gallery__item:hover .fap-gallery__item-overlay { background: rgba(182, 242, 56, 0.08); }

.fap-gallery__count {
  margin-top: 20px;
  text-align: right;
  font-size: 12px;
  color: var(--fap-text-muted);
  letter-spacing: 0.06em;
}

.fap-gallery__empty {
  text-align: center;
  padding: 80px 20px;
  border: 1px dashed var(--fap-border);
  border-radius: var(--fap-radius-lg);
  color: var(--fap-text-muted);
  font-size: 14px;
}

/* Lightbox */
.fap-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--fap-duration);
}
.fap-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.fap-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.95);
}

.fap-lightbox__container {
  position: relative;
  z-index: 1;
  width: min(1100px, 95vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.fap-lightbox__close,
.fap-lightbox__prev,
.fap-lightbox__next {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--fap-duration);
  border: 1px solid rgba(255,255,255,0.12);
}
.fap-lightbox__close:hover,
.fap-lightbox__prev:hover,
.fap-lightbox__next:hover { background: rgba(255,255,255,0.18); }

.fap-lightbox__close { top: -60px; right: 0; }
.fap-lightbox__prev { left: -60px; top: 50%; transform: translateY(-50%); }
.fap-lightbox__next { right: -60px; top: 50%; transform: translateY(-50%); }
.fap-lightbox__close svg,
.fap-lightbox__prev svg,
.fap-lightbox__next svg { width: 18px; height: 18px; }

.fap-lightbox__image-wrap {
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fap-lightbox__image {
  max-height: 75vh;
  max-width: 100%;
  object-fit: contain;
  border-radius: var(--fap-radius);
}

.fap-lightbox__caption {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.fap-lightbox__counter { font-variant-numeric: tabular-nums; }

/* -----------------------------------------------------------------------------
   References & Documents Section
   ----------------------------------------------------------------------------- */
.fap-references { background: var(--fap-bg-primary); }

.fap-references__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fap-gap);
}

.fap-reference-card {
  background: var(--fap-bg-card);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius-lg);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--fap-duration);
}
.fap-reference-card:hover { border-color: rgba(255,255,255,0.2); }

.fap-reference-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fap-reference-card__badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fap-text-muted);
}

.fap-reference-card__icon { color: var(--fap-accent); }
.fap-reference-card__icon svg { width: 24px; height: 24px; }

.fap-reference-card__club {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fap-text-primary);
}

.fap-reference-card__description {
  font-size: 14px;
  color: var(--fap-text-secondary);
  line-height: 1.7;
  flex: 1;
}

.fap-reference-card__btn { margin-top: auto; align-self: flex-start; }

.fap-references__empty {
  font-size: 14px;
  color: var(--fap-text-muted);
  text-align: center;
  padding: 40px;
  border: 1px dashed var(--fap-border);
  border-radius: var(--fap-radius-lg);
  margin-top: 20px;
}

/* -----------------------------------------------------------------------------
   Development Goals Section
   ----------------------------------------------------------------------------- */
.fap-development { background: var(--fap-bg-secondary); }

.fap-development__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.fap-development__intro {
  font-size: 16px;
  color: var(--fap-text-secondary);
  line-height: 1.7;
  margin-top: 20px;
}

.fap-development__goals {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fap-development__goal {
  position: relative;
  padding: 28px 0;
  border-bottom: 1px solid var(--fap-border-light);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  transition: background var(--fap-duration);
}
.fap-development__goal:first-child { border-top: 1px solid var(--fap-border-light); }

.fap-development__goal-number {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--fap-accent);
  padding-top: 3px;
}

.fap-development__goal-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fap-text-primary);
  margin-bottom: 6px;
}

.fap-development__goal-text {
  font-size: 14px;
  color: var(--fap-text-secondary);
  line-height: 1.7;
}

.fap-development__goal-line {
  display: none;
}

/* -----------------------------------------------------------------------------
   PDF CTA Section
   ----------------------------------------------------------------------------- */
.fap-pdf-cta {
  background: var(--fap-bg-card);
  border-top: 1px solid var(--fap-border);
  border-bottom: 1px solid var(--fap-border);
}

.fap-pdf-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.fap-pdf-cta__text {
  font-size: 15px;
  color: var(--fap-text-secondary);
  line-height: 1.7;
  margin-top: 12px;
  max-width: 560px;
}

.fap-pdf-cta__action { flex-shrink: 0; }

.fap-pdf-cta__pending {
  font-size: 14px;
  color: var(--fap-text-muted);
  font-style: italic;
}

/* -----------------------------------------------------------------------------
   Contact Section
   ----------------------------------------------------------------------------- */
.fap-contact { background: var(--fap-bg-primary); }

.fap-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fap-gap);
  align-items: start;
}

.fap-contact__card {
  background: var(--fap-bg-card);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius-lg);
  padding: clamp(28px, 4vw, 48px);
}

.fap-contact__list { display: flex; flex-direction: column; gap: 0; margin-bottom: 32px; }

.fap-contact__item {
  padding: 16px 0;
  border-bottom: 1px solid var(--fap-border-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fap-contact__item:last-child { border-bottom: none; }

.fap-contact__item dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fap-text-muted);
}

.fap-contact__icon { display: flex; flex-shrink: 0; }
.fap-contact__icon svg { width: 14px; height: 14px; }

.fap-contact__item dd {
  font-size: 15px;
  font-weight: 500;
  color: var(--fap-text-primary);
  padding-left: 22px;
}
.fap-contact__item dd a {
  color: var(--fap-text-primary);
  text-decoration: none;
  transition: color var(--fap-duration);
}
.fap-contact__item dd a:hover { color: var(--fap-accent); }

.fap-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fap-contact__graphic {
  background: var(--fap-bg-card);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius-lg);
  padding: clamp(40px, 6vw, 80px) 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}
.fap-contact__graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, var(--fap-accent-dim), transparent 70%);
}

.fap-contact__graphic-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fap-contact__monogram {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fap-accent);
  line-height: 1;
}

.fap-contact__tagline {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fap-text-muted);
}

.fap-contact__club {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--fap-text-secondary);
}

/* -----------------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------------- */
.fap-footer {
  background: var(--fap-bg-secondary);
  border-top: 1px solid var(--fap-border);
  padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px);
}

.fap-footer__inner {
  max-width: var(--fap-max-width);
  margin: 0 auto;
  padding: 0 var(--fap-container-px);
}

.fap-footer__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--fap-border);
}

.fap-footer__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.fap-footer__logo:hover { opacity: 0.8; color: inherit; }

.fap-footer__monogram {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: var(--fap-accent);
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--fap-accent);
  border-radius: var(--fap-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fap-footer__brand-text { display: flex; flex-direction: column; gap: 2px; }

.fap-footer__brand-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--fap-text-primary);
}

.fap-footer__brand-subtitle {
  font-size: 12px;
  color: var(--fap-text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fap-footer__nav {
  display: flex;
  justify-content: center;
}

.fap-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.fap-footer__nav-list .menu-item a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fap-text-muted);
  padding: 6px 12px;
  border-radius: var(--fap-radius-sm);
  transition: color var(--fap-duration);
  text-decoration: none;
}
.fap-footer__nav-list .menu-item a:hover { color: var(--fap-text-primary); }

.fap-footer__social {
  display: flex;
  gap: 8px;
  align-items: center;
}

.fap-footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--fap-radius);
  border: 1px solid var(--fap-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fap-text-muted);
  transition: all var(--fap-duration);
  text-decoration: none;
}
.fap-footer__social-link:hover {
  color: var(--fap-accent);
  border-color: var(--fap-accent);
  background: var(--fap-accent-dim);
}

.fap-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fap-footer__copyright {
  font-size: 13px;
  color: var(--fap-text-muted);
}

.fap-footer__legal {
  display: flex;
  gap: 16px;
}

.fap-footer__legal a {
  font-size: 13px;
  color: var(--fap-text-muted);
  text-decoration: none;
  transition: color var(--fap-duration);
}
.fap-footer__legal a:hover { color: var(--fap-text-primary); }

/* -----------------------------------------------------------------------------
   Page (inner pages: Datenschutz, Impressum)
   ----------------------------------------------------------------------------- */
.fap-page-wrapper {
  padding-top: 120px;
  min-height: 60vh;
}

.fap-page-content {
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.fap-page {
  max-width: 720px;
}

.fap-page__header {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--fap-border);
}

.fap-page__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--fap-text-primary);
}

.fap-content { color: var(--fap-text-secondary); line-height: 1.8; }
.fap-content h1, .fap-content h2, .fap-content h3 {
  font-family: var(--font-display);
  color: var(--fap-text-primary);
  text-transform: uppercase;
  margin: 32px 0 16px;
}
.fap-content h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; }
.fap-content h3 { font-size: clamp(18px, 2vw, 24px); font-weight: 700; }
.fap-content p { margin-bottom: 16px; }
.fap-content a { color: var(--fap-accent); text-decoration: underline; }
.fap-content ul, .fap-content ol { padding-left: 20px; margin-bottom: 16px; }
.fap-content ul li { list-style: disc; }
.fap-content ol li { list-style: decimal; }

/* -----------------------------------------------------------------------------
   404 Page
   ----------------------------------------------------------------------------- */
.fap-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px var(--fap-container-px);
}

.fap-404__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.fap-404__code {
  font-family: var(--font-display);
  font-size: clamp(120px, 20vw, 240px);
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--fap-accent);
  line-height: 1;
  opacity: 0.6;
}

.fap-404__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--fap-text-primary);
}

.fap-404__text {
  font-size: 16px;
  color: var(--fap-text-secondary);
  max-width: 400px;
  line-height: 1.6;
}

/* -----------------------------------------------------------------------------
   Scroll animations
   ----------------------------------------------------------------------------- */
.fap-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--fap-ease), transform 0.6s var(--fap-ease);
}
.fap-animate[data-delay="100"] { transition-delay: 0.1s; }
.fap-animate[data-delay="150"] { transition-delay: 0.15s; }
.fap-animate[data-delay="200"] { transition-delay: 0.2s; }
.fap-animate[data-delay="250"] { transition-delay: 0.25s; }
.fap-animate[data-delay="300"] { transition-delay: 0.3s; }
.fap-animate[data-delay="400"] { transition-delay: 0.4s; }

.fap-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================================
   PALMARES
   ============================================================================= */

.fap-palmares__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.fap-palmares__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--fap-bg-card);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.fap-palmares__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fap-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--fap-ease);
}

.fap-palmares__item:hover { border-color: rgba(182,242,56,0.25); transform: translateY(-3px); }
.fap-palmares__item:hover::before { transform: scaleX(1); }

.fap-palmares__icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  background: rgba(182,242,56,0.08);
  border: 1px solid rgba(182,242,56,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fap-accent);
  flex-shrink: 0;
  overflow: hidden;
}

.fap-palmares__icon svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  display: block;
}

.fap-palmares__season {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fap-accent);
  margin: 0 0 6px;
}

.fap-palmares__title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fap-text-primary);
  margin: 0;
  line-height: 1.2;
}

/* =============================================================================
   CONTACT SIMPLE
   ============================================================================= */

.fap-contact-simple {
  border-top: 1px solid var(--fap-border);
}

.fap-contact-simple__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.fap-contact-simple__header {
  margin-bottom: 48px;
}

.fap-contact-simple__sub {
  color: var(--fap-text-secondary);
  font-size: 16px;
  max-width: 520px;
  margin: 16px auto 0;
}

.fap-contact-simple__card {
  background: var(--fap-bg-card);
  border: 1px solid var(--fap-border);
  border-radius: var(--fap-radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.fap-contact-simple__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(182,242,56,0.1);
  border: 2px solid rgba(182,242,56,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--fap-accent);
}

.fap-contact-simple__role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fap-text-muted);
  margin: 0 0 6px;
}

.fap-contact-simple__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fap-text-primary);
  margin: 0;
}

.fap-contact-simple__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.fap-contact-simple__btn {
  font-size: 13px;
}

