/* ============================================================
   SINAN GÜLER — sinanguler.com
   Palette: Concrete Purple on White
   Fonts: Fjalla One (display) + Inter (body)
   ============================================================ */

/* ── PALETTE ──────────────────────────────────────────────── */
:root {
  --bg:            #FAFAF8;
  --bg-secondary:  #F2F0ED;
  --bg-light:      #FFFFFF;
  --text-primary:  #0A0A0A;
  --text-secondary:#5A5A5A;
  --accent:        #5B2D8E;
  --accent-hover:  #4A2278;
  --surface:       #ECEAE6;
  --border:        #E0DDD8;
  --transition:    background-color .35s ease, color .3s ease, border-color .3s ease;
}

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 0;
  outline: none;
  transition: border-color .25s ease;
}
input:focus, textarea:focus, select:focus { border-color: var(--accent); }
::selection { background: var(--accent); color: var(--bg); }

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3 { font-family: 'Fjalla One', sans-serif; letter-spacing: .02em; line-height: 1.05; }
h2 { font-size: clamp(2.4rem, 5vw, 4rem); text-transform: uppercase; }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); text-transform: uppercase; }

/* ── LAYOUT ───────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.center-tag { text-align: center; }
.section-sub { color: var(--text-secondary); font-size: 1.05rem; margin-top: .75rem; max-width: 520px; }
.section-header { margin-bottom: 3rem; }

/* ── SCROLL ANIMATIONS ────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .85rem 2rem;
  font-family: 'Fjalla One', sans-serif;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 2px solid var(--accent);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-fill { background: var(--accent); color: var(--bg-light); }
.btn-fill:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.btn-outline { background: transparent; color: var(--text-primary); }
.btn-outline:hover { background: var(--accent); color: var(--bg-light); border-color: var(--accent); }
.btn-sm { padding: .55rem 1.25rem; font-size: .8rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ──────────────────────────────────────────────────── */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2.5rem;
  transition: background .35s ease, padding .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
#main-nav.scrolled {
  background: var(--bg);
  padding: 1rem 2.5rem;
  border-bottom-color: var(--border);
}
.nav-logo {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1.5rem;
  letter-spacing: .12em;
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--text-primary); }
.nav-lang {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin-left: 1.25rem;
}
.nav-lang .lang-link { color: var(--text-secondary); transition: color .2s; }
.nav-lang .lang-link:hover { color: var(--accent); }
.nav-lang .lang-active { color: var(--accent); }
.nav-lang .lang-sep { color: var(--border); }
.nav-cta {
  color: var(--accent) !important;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: background .2s ease;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 2.5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .18;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 900px; }
.hero-identity { display: flex; flex-direction: column; margin-bottom: 1.5rem; }
.identity-line {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: block;
}
.identity-line.accent { color: var(--accent); }
.identity-line:nth-child(2) { margin-left: clamp(2rem, 4vw, 4.5rem); }
.identity-line:nth-child(3) { margin-left: clamp(4rem, 8vw, 9rem); }
.hero-punch {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 1;
}
.hero-scroll-hint span {
  font-size: .6rem;
  letter-spacing: .2em;
  color: var(--text-secondary);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0% { top: -100%; } 100% { top: 100%; } }

/* ── PRESS BAR ────────────────────────────────────────────── */
.press-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 2.5rem;
  overflow: hidden;
}
.press-bar-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.press-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text-secondary);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.press-logos {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
}
.press-logos::-webkit-scrollbar { display: none; }
.press-logo-item {
  font-family: 'Fjalla One', sans-serif;
  font-size: .85rem;
  letter-spacing: .1em;
  color: var(--text-secondary);
  white-space: nowrap;
  transition: color .2s ease;
}
.press-logo-item:hover { color: var(--text-primary); }

/* ── PATH OF THE ATHLETE ──────────────────────────────────── */
.section-talk { padding: 7rem 0; }
.talk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.talk-content { display: flex; flex-direction: column; gap: 1.25rem; }
.talk-title { font-size: clamp(3rem, 6vw, 5.5rem); line-height: .92; margin-bottom: .5rem; }
.talk-desc { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }
.talk-bullets { display: flex; flex-direction: column; gap: .65rem; margin: .5rem 0; }
.talk-bullets li {
  padding-left: 1.25rem;
  position: relative;
  color: var(--text-secondary);
  font-size: .95rem;
}
.talk-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.talk-visual { position: relative; }
.talk-img { width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: grayscale(20%); }
.talk-quote-block {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  background: var(--accent);
  color: var(--bg-light);
  padding: 1.5rem;
  max-width: 320px;
  z-index: 2;
}
.talk-quote-block blockquote {
  font-family: 'Fjalla One', sans-serif;
  font-size: 1rem;
  line-height: 1.4;
  text-transform: uppercase;
}
.talk-quote-block cite {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  margin-top: .75rem;
  font-style: normal;
  opacity: .75;
}

/* ── THE NUMBERS ──────────────────────────────────────────── */
.section-numbers {
  background: var(--accent);
  padding: 3rem 2.5rem;
  overflow: hidden;
}
.numbers-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.stat-block {
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  text-align: center;
}
.stat-num {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1;
  color: var(--bg-light);
  letter-spacing: -.02em;
}
.stat-label {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bg-light);
  opacity: .7;
  margin-top: .4rem;
}
.stat-divider {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3rem;
  color: var(--bg-light);
  opacity: .25;
  flex-shrink: 0;
  padding: 0 .5rem;
}

/* ── THE STORY ────────────────────────────────────────────── */
.section-story { padding: 7rem 0; }
.story-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
  margin-bottom: 5rem;
}
.story-meta h2 { font-size: clamp(2rem, 4vw, 3rem); }
.story-body { display: flex; flex-direction: column; gap: 1.25rem; }
.story-body p { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.75; }

/* CAREER TIMELINE */
.career-timeline { margin-bottom: 4rem; }
.career-timeline-dual { display: flex; flex-direction: column; gap: 2.5rem; margin-bottom: 3rem; }
.timeline-heading { font-size: .7rem; font-weight: 700; letter-spacing: .2em; color: var(--accent); margin-bottom: 2rem; }
.timeline-section-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.timeline-section-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.timeline-track {
  display: flex;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.timeline-club {
  flex: 1 0 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .75rem;
  position: relative;
}
.timeline-club::before {
  content: '';
  position: absolute;
  top: 24px; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.timeline-club:first-child::before { left: 50%; }
.timeline-club:last-child::before  { right: 50%; }
.club-year { font-size: .62rem; letter-spacing: .08em; color: var(--text-secondary); margin-bottom: .75rem; }
.club-marker {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--bg);
  position: relative; z-index: 1;
  flex-shrink: 0; margin-bottom: .75rem;
}
.accent-marker { background: var(--accent); }
.club-logo {
  width: 40px; height: 40px;
  object-fit: contain;
  margin: 0 auto .5rem;
  filter: grayscale(1) brightness(0.6);
  transition: filter .25s ease;
}
.timeline-club:hover .club-logo { filter: none; }
.club-name { font-family: 'Fjalla One', sans-serif; font-size: .65rem; letter-spacing: .07em; color: var(--text-secondary); }
.club-text-logo {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fjalla One', sans-serif;
  font-size: .6rem; letter-spacing: .04em;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin: 0 auto .5rem;
}
.national-track {
  display: flex; gap: 0; overflow-x: auto;
  padding-bottom: 1rem; position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.national-track::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 8px;
  height: 1px; background: var(--border);
  pointer-events: none;
}
.nat-event {
  flex: 0 0 130px;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 .5rem; position: relative; z-index: 1;
}
.nat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--bg);
  flex-shrink: 0; margin-bottom: .5rem;
  position: relative; z-index: 1;
}
.nat-dot.is-medal { background: var(--accent); }
.nat-year { font-family: 'Fjalla One', sans-serif; font-size: .8rem; color: var(--accent); margin-bottom: .3rem; }
.nat-name { font-size: .6rem; color: var(--text-secondary); line-height: 1.35; }
.nat-medal {
  display: inline-block;
  font-size: .55rem; font-weight: 700; letter-spacing: .06em;
  color: var(--bg-light);
  background: var(--accent);
  padding: .1rem .35rem;
  border-radius: 2px;
  margin-top: .35rem;
}

/* ── VIDEO HUB ────────────────────────────────────────────── */
.section-dark {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-media { padding: 7rem 0; }
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
  margin-bottom: 2.5rem;
}
.video-card {
  background: var(--surface);
  display: flex; flex-direction: column;
  transition: background .25s ease;
}
.video-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  filter: grayscale(20%);
}
.video-card:hover .video-thumb img { transform: scale(1.04); filter: grayscale(0); }
.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3);
  transition: background .25s ease;
}
.play-btn:hover { background: rgba(0,0,0,.1); }
.play-btn svg {
  width: 44px; height: 44px;
  color: var(--accent);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
  transition: transform .2s ease;
}
.play-btn:hover svg { transform: scale(1.1); }
.video-meta { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.video-tag { font-size: .65rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); }
.video-meta h3 { font-size: .95rem; }
.video-meta p { font-size: .85rem; color: var(--text-secondary); }
.media-more { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.podcast-note { font-size: .85rem; color: var(--text-secondary); display: flex; gap: .4rem; align-items: center; }
.podcast-note strong { color: var(--text-primary); }
.video-modal {
  position: fixed; inset: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: center;
}
.video-modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.85); cursor: pointer; }
.modal-content { position: relative; z-index: 1; width: min(900px, 90vw); }
.modal-close {
  position: absolute; top: -2.5rem; right: 0;
  color: white; font-size: 1.25rem; opacity: .7;
  transition: opacity .2s ease;
}
.modal-close:hover { opacity: 1; }
.iframe-wrap { aspect-ratio: 16/9; }
.iframe-wrap iframe { width: 100%; height: 100%; }

/* ── INVESTMENT PORTFOLIO ─────────────────────────────────── */
.section-invest { padding: 7rem 0; }
.invest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin-bottom: 3rem;
}
.invest-card {
  background: var(--surface);
  padding: 2rem;
  display: flex; align-items: center; gap: 1rem;
  transition: background .25s ease;
}
.invest-card:hover { background: var(--bg-secondary); }
.invest-logo {
  width: 40px; height: 40px;
  object-fit: contain; flex-shrink: 0;
  filter: grayscale(1) brightness(0.5);
  transition: filter .25s ease;
}
.invest-card:hover .invest-logo { filter: none; }
.invest-info { display: flex; flex-direction: column; gap: .2rem; }
.invest-name { font-family: 'Fjalla One', sans-serif; font-size: .85rem; letter-spacing: .08em; }
.invest-sector { font-size: .75rem; color: var(--text-secondary); }
.invest-footer { display: flex; align-items: flex-start; gap: 3rem; flex-wrap: wrap; }
.invest-guler-legacy {
  display: flex; gap: 1.5rem; align-items: flex-start;
  flex: 1; min-width: 300px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 1.75rem;
}
.legacy-logo { width: 56px; height: 56px; object-fit: contain; flex-shrink: 0; }
.legacy-text { display: flex; flex-direction: column; gap: .5rem; }
.legacy-text strong {
  font-family: 'Fjalla One', sans-serif;
  font-size: .9rem; letter-spacing: .08em; display: block;
}
.legacy-text p { font-size: .9rem; color: var(--text-secondary); }

/* ── SPEAKING TOPICS ──────────────────────────────────────── */
.section-topics { padding: 7rem 0; }
.topics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: var(--border);
  margin: 2.5rem 0;
}
.topic-card {
  background: var(--bg);
  padding: 2.25rem 1.75rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: background .25s ease;
}
.topic-card:hover { background: var(--surface); }
.topic-icon {
  font-family: 'Fjalla One', sans-serif;
  font-size: 3rem; color: var(--accent);
  opacity: .25; line-height: 1;
}
.topic-card h3 { font-size: .9rem; }
.topic-card p { font-size: .9rem; color: var(--text-secondary); flex: 1; }
.topic-format {
  font-size: .65rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--accent);
  border-top: 1px solid var(--border);
  padding-top: .75rem; margin-top: auto;
}
.topics-cta { text-align: center; }

/* ── BLOG PLACEHOLDERS ────────────────────────────────────── */
.section-blog { padding: 7rem 0; }
.blog-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap;
}
.blog-header-left h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.blog-all-btn { align-self: flex-end; }
.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5px;
  background: var(--border);
}
.blog-card {
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: background .25s ease;
}
.blog-card:hover { background: var(--surface); }
.blog-card-featured { grid-column: span 1; }
.blog-card-img {
  position: relative;
  aspect-ratio: 16/9; overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(20%);
  transition: transform .4s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-img--placeholder {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}
.blog-placeholder-inner {
  width: 100%; height: 100%;
  min-height: 200px;
  display: flex; align-items: center; justify-content: center;
}
.blog-placeholder-inner--sm { min-height: 140px; }
.blog-coming-label {
  font-family: 'Fjalla One', sans-serif;
  font-size: .75rem;
  letter-spacing: .2em;
  color: var(--text-secondary);
  opacity: .5;
  text-transform: uppercase;
}
.blog-tag {
  position: absolute; top: 1rem; left: 1rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase;
  background: var(--accent); color: var(--bg-light);
  padding: .25rem .6rem;
}
.blog-card-body {
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .6rem; flex: 1;
}
.blog-date { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-secondary); }
.blog-title {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  line-height: 1.25; text-transform: uppercase;
  letter-spacing: .02em; color: var(--text-primary);
}
.blog-card-featured .blog-title { font-size: clamp(1.1rem, 2vw, 1.5rem); }
.blog-excerpt { font-size: .9rem; color: var(--text-secondary); line-height: 1.65; flex: 1; }
.blog-read-more {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: auto; padding-top: .75rem;
  border-top: 1px solid var(--border);
  transition: gap .2s ease;
}
.blog-read-more:hover { gap: .6rem; }

/* ── NEWSLETTER ───────────────────────────────────────────── */
.section-newsletter { padding: 7rem 0; }
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.newsletter-copy h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: .75rem; }
.newsletter-copy p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }
.newsletter-tally { display: flex; flex-direction: column; gap: .75rem; }
.form-note { font-size: .75rem; color: var(--text-secondary); letter-spacing: .04em; }

/* ── SPONSORS ─────────────────────────────────────────────── */
.section-sponsors { padding: 4rem 0; }
.sponsors-strip {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .75rem 1.25rem; justify-content: center; margin-top: 1.5rem;
}
.sponsor-text {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-secondary);
  transition: color .2s ease;
}
.sponsor-text:hover { color: var(--text-primary); }
.sponsor-sep { color: var(--border); font-size: .9rem; }

/* ── CONTACT ──────────────────────────────────────────────── */
.section-contact { padding: 7rem 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.contact-left { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-left h2 { font-size: clamp(3rem, 7vw, 6rem); line-height: .9; }
.contact-left p { color: var(--text-secondary); font-size: 1rem; max-width: 320px; }
.contact-email {
  font-family: 'Fjalla One', sans-serif;
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  letter-spacing: .04em; color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px; width: fit-content;
  transition: opacity .2s ease;
}
.contact-email:hover { opacity: .75; }
.social-links { display: flex; gap: 1rem; margin-top: .5rem; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: border-color .2s ease, color .2s ease;
}
.social-links a:hover { border-color: var(--accent); color: var(--accent); }
.social-links svg { width: 18px; height: 18px; }
.contact-form-wrap { min-height: 400px; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-grid {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: .4rem; }
.footer-logo { font-family: 'Fjalla One', sans-serif; font-size: 1.75rem; color: var(--accent); letter-spacing: .1em; }
.footer-brand p { font-size: .85rem; color: var(--text-secondary); }
.footer-sub { font-size: .75rem; color: var(--text-secondary); opacity: .6; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.footer-nav a { font-size: .8rem; color: var(--text-secondary); transition: color .2s ease; }
.footer-nav a:hover { color: var(--text-primary); }
.footer-legal { display: flex; gap: 1.25rem; align-items: center; }
.footer-legal a { font-size: .75rem; color: var(--text-secondary); transition: color .2s ease; }
.footer-legal a:hover { color: var(--text-primary); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .talk-grid { grid-template-columns: 1fr; gap: 3rem; }
  .talk-visual { order: -1; }
  .talk-quote-block { left: 0; bottom: -1rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2rem; }
  .topics-grid { grid-template-columns: 1fr 1fr; }
  .invest-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-card-featured { grid-column: span 2; }
  .newsletter-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .invest-footer { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); padding: 1.5rem 2.5rem;
    gap: 1.25rem; border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  #main-nav { padding: 1.25rem 1.5rem; }
  .hero { padding: 0 1.5rem; }
  .container { padding: 0 1.5rem; }
  .press-bar { padding: 1rem 1.5rem; }
  .section-talk, .section-story, .section-media,
  .section-invest, .section-topics, .section-blog,
  .section-newsletter, .section-contact { padding: 4rem 0; }
  .video-grid, .invest-grid, .topics-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-featured { grid-column: span 1; }
  .numbers-strip { flex-direction: column; gap: 0; }
  .stat-divider { display: none; }
  .stat-block { border-bottom: 1px solid rgba(255,255,255,.15); }
  .talk-quote-block { position: static; margin-top: 1rem; max-width: 100%; }
  .talk-img { aspect-ratio: 16/9; }
  .footer-grid { flex-direction: column; gap: 1.5rem; }
  .invest-guler-legacy { flex-direction: column; }
}
@media (max-width: 480px) {
  .identity-line { font-size: clamp(3rem, 14vw, 5rem); }
  .identity-line:nth-child(2),
  .identity-line:nth-child(3) { margin-left: 0; }
  .hero-ctas { flex-direction: column; }
  .hero-scroll-hint { display: none; }
  .press-bar-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}


/* ── SPONSOR LOGOS ────────────────────────────────────────── */
.sponsor-logo-wrap {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sponsor-img {
  height: 28px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.4);
  opacity: .55;
  transition: opacity .25s ease, filter .25s ease;
}
.sponsor-img:hover {
  opacity: 1;
  filter: grayscale(0) brightness(1);
}

/* ── STORY PROFILE IMAGE ──────────────────────────────────── */
.story-profile-img {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  margin-top: 2rem;
  filter: grayscale(15%);
}
@media (max-width: 1024px) {
  .story-profile-img {
    max-width: 200px;
    aspect-ratio: 1/1;
    border-radius: 0;
  }
}


/* ── UNIFIED TIMELINE ─────────────────────────────────────── */
.unified-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

/* TOP: Club logos */
.unified-clubs {
  display: flex;
  align-items: flex-end;
  min-width: max-content;
}
.uc-item {
  flex: 0 0 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .5rem 1rem;
  gap: .3rem;
  position: relative;
}
.uc-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
  transition: filter .25s ease;
}
.uc-item:hover .uc-logo { filter: none; }
.uc-name {
  font-family: 'Fjalla One', sans-serif;
  font-size: .6rem;
  letter-spacing: .06em;
  color: var(--text-secondary);
  line-height: 1.2;
}
.uc-years {
  font-size: .58rem;
  color: var(--text-secondary);
  opacity: .6;
  letter-spacing: .04em;
}
.uc-trophy {
  font-size: .55rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  margin-top: .1rem;
}
.uc-item--accent .uc-name { color: var(--accent); }

/* CENTRE LINE */
.unified-line {
  padding: 0;
  min-width: max-content;
}
.ul-track {
  display: flex;
  align-items: center;
  position: relative;
  height: 20px;
}
.ul-track::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 50%;
  height: 1px;
  background: var(--border);
  transform: translateY(-50%);
}
.ul-dot {
  flex: 0 0 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ul-dot::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--bg);
  display: block;
}
.ul-dot--accent::after {
  background: var(--accent);
}

/* BOTTOM: National team events */
.unified-national {
  display: flex;
  align-items: flex-start;
  min-width: max-content;
  padding-top: .75rem;
}
.un-spacer {
  flex: 0 0 130px;
}
.un-event {
  flex: 0 0 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .4rem;
  gap: .2rem;
}
.un-year {
  font-family: 'Fjalla One', sans-serif;
  font-size: .72rem;
  color: var(--accent);
}
.un-name {
  font-size: .58rem;
  color: var(--text-secondary);
  line-height: 1.35;
}
.un-medal {
  display: inline-block;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .1rem .35rem;
  border-radius: 2px;
  margin-top: .1rem;
}
.un-medal--silver { background: var(--accent); color: var(--bg-light); }
.un-medal--bronze { background: #b87333; color: white; }

/* Club trophy badge */
.club-trophy {
  font-size: .52rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .04em;
  margin-top: .2rem;
}

/* ── PORTFOLIO LINKS ──────────────────────────────────────── */
a.invest-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.invest-card:hover {
  background: var(--bg-secondary);
}
a.invest-card:hover .invest-logo { filter: none; }
.invest-arrow {
  font-size: .7rem;
  color: var(--accent);
  opacity: 0;
  transition: opacity .2s ease;
  margin-left: .2rem;
}
a.invest-card:hover .invest-arrow { opacity: 1; }
.invest-card--no-link { cursor: default; }

/* ── EO PAGE EXTRAS ───────────────────────────────────────── */
.eo-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--accent); color: var(--bg-light);
  font-family: 'Inter', sans-serif;
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .4rem 1rem; margin-bottom: 2rem;
}
.eo-badge::before {
  content: ''; display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--bg-light);
}
.eo-hero {
  min-height: 70vh; display: flex; align-items: center;
  padding: 8rem 2.5rem 5rem;
  background: var(--bg); position: relative; overflow: hidden;
}
.eo-hero::after {
  content: 'EO';
  position: absolute; right: -2rem; bottom: -4rem;
  font-family: 'Fjalla One', sans-serif;
  font-size: 30vw; line-height: 1;
  color: var(--accent); opacity: .04;
  pointer-events: none; user-select: none;
}
.eo-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.eo-hero h1 { font-size: clamp(3rem, 7vw, 6rem); line-height: .95; margin-bottom: 1.5rem; }
.eo-hero h1 em { font-style: normal; color: var(--accent); }
.eo-hero p {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-secondary); max-width: 560px; line-height: 1.7; margin-bottom: 2rem;
}
.eo-shared-note {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--text-secondary);
  border: 1px solid var(--border); padding: .6rem 1rem;
}
.eo-shared-note svg { width: 14px; height: 14px; flex-shrink: 0; }
.eo-offers { padding: 6rem 0; background: var(--bg-secondary); }
.eo-offers-header { margin-bottom: 3rem; }
.eo-offers-header h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.eo-cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px; background: var(--border);
}
.eo-card {
  background: var(--bg); display: flex; flex-direction: column;
  padding: 2.5rem; gap: 1.25rem; transition: background .25s ease;
}
.eo-card:hover { background: var(--surface); }
.eo-card-num {
  font-family: 'Fjalla One', sans-serif; font-size: 4rem;
  line-height: 1; color: var(--accent); opacity: .25;
}
.eo-card h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); line-height: 1.2; }
.eo-card-format {
  font-size: .65rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.eo-card p { color: var(--text-secondary); font-size: .95rem; line-height: 1.7; flex: 1; }
.eo-card ul { display: flex; flex-direction: column; gap: .5rem; margin: 0; }
.eo-card ul li {
  font-size: .9rem; color: var(--text-secondary);
  padding-left: 1.2rem; position: relative;
}
.eo-card ul li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}
.eo-card-cta { margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.eo-about { padding: 6rem 0; }
.eo-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.eo-about-text { display: flex; flex-direction: column; gap: 1.25rem; }
.eo-about-text h2 { font-size: clamp(2rem, 4vw, 3rem); }
.eo-about-text p { color: var(--text-secondary); font-size: 1rem; line-height: 1.75; }
.eo-credentials {
  display: flex; flex-direction: column; gap: .75rem;
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem; margin-top: .5rem;
}
.eo-credential { font-size: .85rem; color: var(--text-secondary); display: flex; gap: .6rem; align-items: flex-start; }
.eo-credential strong { color: var(--text-primary); }
.eo-about-img { aspect-ratio: 3/4; overflow: hidden; }
.eo-about-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); }
.eo-inquiry { padding: 6rem 0; background: var(--bg-secondary); }
.eo-inquiry-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; align-items: start; }
.eo-inquiry-left { display: flex; flex-direction: column; gap: 1.25rem; }
.eo-inquiry-left h2 { font-size: clamp(2rem, 4vw, 3rem); }
.eo-inquiry-left p { color: var(--text-secondary); font-size: 1rem; line-height: 1.7; }
.eo-inquiry-perks { display: flex; flex-direction: column; gap: .75rem; margin-top: .5rem; }
.eo-perk { display: flex; gap: .75rem; align-items: flex-start; font-size: .9rem; color: var(--text-secondary); }
.eo-perk-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: var(--bg-light); font-weight: 700; margin-top: 1px;
}
.eo-tally-wrap { background: var(--surface); padding: 2rem; border: 1px solid var(--border); }
@media (max-width: 1024px) {
  .eo-about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .eo-about-img { order: -1; aspect-ratio: 16/9; }
  .eo-inquiry-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .eo-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .eo-hero { padding: 7rem 1.5rem 4rem; }
  .eo-offers, .eo-about, .eo-inquiry { padding: 4rem 0; }
}
