/* ============================================================
   SportSuite — Luxury Dark Theme
   Brand Colours:
     Gold:   #C9A84C  /  #E5C483  /  #B8963E
     Dark:   #0A0A0A  /  #111111  /  #1A1A1A
     Light:  #F5F0E8
   ============================================================ */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E5C483;
  --gold-dark:   #A07830;
  --black:       #080808;
  --dark:        #0F0F0F;
  --dark-2:      #161616;
  --dark-3:      #1E1E1E;
  --dark-4:      #252525;
  --text:        #D4CFC6;
  --text-muted:  #7A7570;
  --cream:       #F5F0E8;
  --white:       #FFFFFF;
  --border:      rgba(201,168,76,0.18);
  --border-dim:  rgba(255,255,255,0.06);

  --ff-serif:  'Cormorant Garamond', Georgia, serif;
  --ff-sans:   'Inter', system-ui, sans-serif;

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
}

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

body {
  font-family: var(--ff-sans);
  background: var(--black);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--cream);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }

h1 em, h2 em {
  font-style: italic;
  color: var(--gold-light);
}

p {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  max-width: 65ch;
}

/* ── Layout Helpers ───────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { position: relative; }

.section-label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header p {
  margin: 1rem auto 0;
  font-size: 1.05rem;
  max-width: 55ch;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 2px;
  font-family: var(--ff-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,240,232,0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.75rem; }

/* ── Gold Divider ─────────────────────────────────────────── */
.gold-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.5rem auto;
}

/* ════════════════════════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: var(--transition);
  padding: 0;
}

#navbar.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 88px;
  width: auto;
  filter:
    drop-shadow(0 0 12px rgba(201,168,76,0.55))
    drop-shadow(0 0 28px rgba(201,168,76,0.25))
    brightness(1.12);
  transition: var(--transition);
}

.nav-logo:hover img {
  filter:
    drop-shadow(0 0 18px rgba(229,196,131,0.75))
    drop-shadow(0 0 40px rgba(201,168,76,0.45))
    brightness(1.22);
  transform: scale(1.04);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(212,207,198,0.8);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a:hover::after { color: var(--gold-light); width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }

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

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.72) 50%,
    rgba(8,8,8,0.9) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 8rem 2rem 4rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 0.4rem 1.2rem;
  border-radius: 2px;
  margin-bottom: 2rem;
  background: rgba(201,168,76,0.06);
}

.hero-content h1 { margin-bottom: 1.5rem; }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(212,207,198,0.75);
  margin: 0 auto 2.5rem;
  max-width: 52ch;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  font-size: 0.9rem;
  opacity: 0.7;
  animation: bounce 2.5s ease-in-out infinite;
}

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

/* ════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════ */
#about {
  padding: 7rem 0;
  background: var(--dark);
}

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

.about-text .section-label { margin-bottom: 0.75rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p  { margin-bottom: 1rem; }

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-dim);
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter 0.6s ease;
}
.about-img-wrap:hover img { filter: brightness(0.95); }

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
}

.about-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px;
  height: 110px;
  background: var(--dark);
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding: 12px;
  box-shadow: 0 0 0 1px rgba(201,168,76,0.12), 0 0 30px rgba(201,168,76,0.2), 0 8px 30px rgba(0,0,0,0.5);
}
.about-img-badge img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  filter:
    drop-shadow(0 0 10px rgba(201,168,76,0.6))
    drop-shadow(0 0 22px rgba(201,168,76,0.3))
    brightness(1.15);
}

/* ════════════════════════════════════════════════════════════
   FOCUS CARDS
════════════════════════════════════════════════════════════ */
#focus {
  padding: 7rem 0;
  background: var(--black);
  overflow: hidden;
}

.focus-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.focus-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* 5-card layout: first row 3, second row 2 centred */
.focus-cards .focus-card:nth-child(4) { grid-column: 1 / 2; }
.focus-cards .focus-card:nth-child(5) { grid-column: 2 / 3; }

@media (max-width: 1024px) {
  .focus-cards { grid-template-columns: repeat(2, 1fr); }
  .focus-cards .focus-card:nth-child(4),
  .focus-cards .focus-card:nth-child(5) { grid-column: auto; }
}

.focus-card {
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.focus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.focus-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-gold);
}
.focus-card:hover::before { transform: scaleX(1); }

.focus-icon {
  width: 52px;
  height: 52px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  color: var(--gold);
  transition: var(--transition);
}
.focus-card:hover .focus-icon {
  background: var(--gold);
  color: var(--black);
}

.focus-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.focus-card p  { font-size: 0.9rem; color: var(--text-muted); max-width: unset; line-height: 1.6; }

/* ════════════════════════════════════════════════════════════
   PORTFOLIO (DEAL CARDS)
════════════════════════════════════════════════════════════ */
#portfolio {
  padding: 7rem 0;
  background: var(--dark);
}

.deal-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border-dim);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 3rem;
  transition: var(--transition);
}
.deal-card:hover {
  border-color: var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), var(--shadow-gold);
}

.deal-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.deal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.deal-card:hover .deal-img img { transform: scale(1.05); }

.deal-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.1), rgba(8,8,8,0.4));
}

.deal-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
}

.deal-tag--active {
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
}

.deal-body {
  background: var(--dark-2);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.deal-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.deal-sector {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.deal-year {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.deal-body h3 { margin-bottom: 0.25rem; }
.deal-desc { font-size: 0.95rem; color: var(--text-muted); max-width: unset; }

.deal-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-dim);
  border-bottom: 1px solid var(--border-dim);
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.highlight i { color: var(--gold); font-size: 0.7rem; }

/* ════════════════════════════════════════════════════════════
   VENTURES
════════════════════════════════════════════════════════════ */
#ventures {
  padding: 7rem 0;
  background: var(--black);
  overflow: hidden;
}

.venture-card {
  position: relative;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
}
.venture-card:hover {
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), var(--shadow-gold);
  transform: translateY(-4px);
}

.venture-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2px;
  z-index: 2;
}

.venture-inner {
  display: flex;
  gap: 3rem;
  padding: 3rem;
  align-items: flex-start;
}

.venture-icon-wrap { flex-shrink: 0; }

.venture-icon {
  width: 80px;
  height: 80px;
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
}

.venture-meta { margin-bottom: 0.75rem; }
.venture-body h3 { margin-bottom: 0.75rem; }
.venture-body p  { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; max-width: unset; }

.venture-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.pill {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: rgba(201,168,76,0.04);
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   THESIS
════════════════════════════════════════════════════════════ */
#expertise {
  padding: 7rem 0;
  background: var(--dark);
}

.thesis-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.thesis-img {
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.thesis-img img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  filter: brightness(0.8);
  transition: filter 0.6s ease;
}
.thesis-img:hover img { filter: brightness(0.9); }
.thesis-img::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

.thesis-text .section-label { margin-bottom: 0.75rem; }
.thesis-text h2 { margin-bottom: 1.5rem; }
.thesis-text > p { margin-bottom: 1.25rem; font-size: 1.05rem; }

.thesis-sub {
  font-size: 0.95rem !important;
  color: var(--text-muted) !important;
  font-style: italic;
  border-left: 2px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 1.75rem !important;
  max-width: unset !important;
}

.thesis-list { display: flex; flex-direction: column; gap: 1rem; }
.thesis-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.95rem;
  color: var(--text);
}
.thesis-list li i { color: var(--gold); margin-top: 0.2rem; flex-shrink: 0; }
.thesis-list li strong { color: var(--cream); font-weight: 500; }

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
#contact {
  padding: 7rem 0;
  background: var(--black);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-wrap {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-logo {
  width: 120px;
  margin: 0 auto 2rem;
  filter:
    drop-shadow(0 0 14px rgba(201,168,76,0.6))
    drop-shadow(0 0 32px rgba(201,168,76,0.3))
    brightness(1.15);
  animation: logo-pulse 4s ease-in-out infinite;
}

@keyframes logo-pulse {
  0%, 100% {
    filter:
      drop-shadow(0 0 14px rgba(201,168,76,0.6))
      drop-shadow(0 0 32px rgba(201,168,76,0.3))
      brightness(1.15);
  }
  50% {
    filter:
      drop-shadow(0 0 22px rgba(229,196,131,0.85))
      drop-shadow(0 0 50px rgba(201,168,76,0.45))
      brightness(1.25);
  }
}

.contact-wrap h2 { margin-bottom: 1rem; }
.contact-wrap > p { margin: 0 auto 3rem; font-size: 1.05rem; }

.contact-cards {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-card {
  flex: 1 1 200px;
  max-width: 260px;
  background: var(--dark-2);
  border: 1px solid var(--border-dim);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--border);
  background: var(--dark-3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.contact-card i {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-card-val {
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 300;
}

.contact-fine {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: unset;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
#footer {
  background: var(--dark);
  border-top: 1px solid var(--border-dim);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand img {
  height: 46px;
  width: auto;
  filter:
    drop-shadow(0 0 8px rgba(201,168,76,0.45))
    drop-shadow(0 0 18px rgba(201,168,76,0.2))
    brightness(1.1);
  transition: var(--transition);
}
.footer-brand img:hover {
  filter:
    drop-shadow(0 0 14px rgba(229,196,131,0.7))
    drop-shadow(0 0 30px rgba(201,168,76,0.4))
    brightness(1.2);
}
.footer-brand p {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: unset;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: unset;
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-dim);
  margin-top: 0.5rem;
}

/* ════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-animate="fade-up"]    { transform: translateY(40px); }
[data-animate="fade-left"]  { transform: translateX(40px); }
[data-animate="fade-right"] { transform: translateX(-40px); }

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-grid,
  .thesis-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-img-wrap img { height: 360px; }
  .thesis-img img { height: 300px; }
  .about-img-badge { right: 1rem; bottom: 1rem; }

  .deal-card { grid-template-columns: 1fr; }
  .deal-img  { min-height: 280px; }

  .venture-inner { flex-direction: column; gap: 2rem; }

  .about-stats { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 800;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; letter-spacing: 0.15em; }
  .nav-toggle { display: flex; z-index: 901; }

  .hero-content { padding-top: 6rem; }
  .focus-cards { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-brand { flex-direction: column; }
  .footer-nav   { justify-content: center; }

  .deal-body { padding: 2rem; }
  .venture-inner { padding: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .contact-cards { flex-direction: column; align-items: center; }
}

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
