/* ── GOAT PPL · Global Styles ── */
:root {
  --gold: #D4AF37;
  --gold-light: rgba(212,175,55,0.15);
  --charcoal: #0B0B0B;
  --dark: #111111;
  --mid: #444444;
  --light: #888888;
  --white: #F5F5F5;
  --cream: #F2F0EB;
  --grey-box: #E8E6E1;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--charcoal);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11,11,11,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.nav-logo img { height: 44px; width: 44px; object-fit: contain; border-radius: 6px; }
.nav-links { display: flex; align-items: center; gap: 18px; list-style: none; }
.nav-links a {
  font-size: 12px; font-weight: 700; color: rgba(240,237,230,0.7);
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #000;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 10px 20px; border-radius: 4px;
  white-space: nowrap;
}
.nav-cta:hover { background: #c9a030; }
.nav-lang select {
  background: #1A1A1A; border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold); padding: 7px 12px; border-radius: 6px;
  font-size: 12px; font-weight: 700; cursor: pointer; outline: none;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #000;
  padding: 14px 32px; border-radius: 4px;
  font-weight: 800; font-size: 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-primary:hover { background: #c9a030; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--gold); color: var(--gold);
  padding: 12px 28px; border-radius: 4px;
  font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--gold); color: #000; }

/* ── SECTION BASE ── */
.section-pad { padding: 100px 5%; }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 0.06em; line-height: 1.05;
}
.gold { color: var(--gold); }
.section-sub {
  font-size: 16px; color: rgba(240,237,230,0.6);
  line-height: 1.8; max-width: 600px;
}

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid rgba(212,175,55,0.1);
  padding: 48px 5% 32px;
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 24px;
  margin-bottom: 32px;
}
.footer-logo img { height: 40px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; color: rgba(240,237,230,0.35);
  font-family: 'Montserrat', sans-serif; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(240,237,230,0.2); }

/* ── MOBILE NAV ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); margin: 5px 0; }

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none; position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--charcoal);
    flex-direction: column; gap: 0;
    border-bottom: 1px solid rgba(212,175,55,0.15);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 16px 5%; border-bottom: 1px solid rgba(255,255,255,0.04); }
  .nav-cta { display: none; }
  .section-pad { padding: 72px 5%; }
}

/* ── FOUNDER PAGE ── */
.founder-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh; align-items: start;
  background: #fff;
}
.founder-left {
  position: sticky; top: 72px;
  height: calc(100vh - 72px);
  display: flex; flex-direction: column; overflow: hidden;
}
.founder-left img.f-burj {
  width: 100%; flex: 1; object-fit: cover;
  object-position: 40% center; display: block; min-height: 0;
}
.founder-left-footer {
  flex-shrink: 0; background: #fff;
  border-top: 1px solid rgba(212,175,55,0.2);
  padding: 20px 28px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.f-founder-label { font-size: 10px; font-weight: 500; color: #888; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }
.f-founder-company { font-size: 13px; font-weight: 800; color: var(--gold); letter-spacing: 0.04em; }
.f-li-btn {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--gold); color: var(--gold);
  padding: 7px 14px; border-radius: 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap; background: transparent;
}
.founder-right { padding: 16px 56px 80px; display: flex; flex-direction: column; background: #fff; }
.f-badge {
  display: inline-block; background: var(--gold); color: #000;
  font-family: 'Bebas Neue', sans-serif; font-size: 24px;
  letter-spacing: 0.14em; padding: 7px 20px; border-radius: 4px;
  margin-bottom: 28px; width: fit-content;
}
.f-face {
  width: 160px; height: 160px; object-fit: cover;
  object-position: center 40%; border-radius: 50%;
  border: 3px solid var(--gold); margin-bottom: 24px;
}
.f-cred { display: flex; margin-bottom: 28px; border: 1px solid rgba(212,175,55,0.25); border-radius: 6px; overflow: hidden; }
.f-cred-item { flex: 1; text-align: center; padding: 10px 8px; font-size: 9px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; border-right: 1px solid rgba(212,175,55,0.2); background: rgba(212,175,55,0.04); }
.f-cred-item:last-child { border-right: none; }
.f-intro-strong { font-size: 17px; font-weight: 700; color: #111; line-height: 1.8; margin-bottom: 8px; font-family: 'Poppins', sans-serif; }
.f-intro-sub { font-size: 14px; font-weight: 500; color: #444; line-height: 1.8; font-style: italic; margin-bottom: 4px; font-family: 'Poppins', sans-serif; }
.f-intro-more { font-size: 13px; font-weight: 500; color: #666; font-style: italic; margin-bottom: 32px; font-family: 'Poppins', sans-serif; }
.f-divider { width: 40px; height: 3px; background: var(--gold); border-radius: 2px; margin: 28px 0; }
.f-p-dark { font-size: 15px; font-weight: 600; color: #111; line-height: 1.95; margin-bottom: 18px; font-family: 'Poppins', sans-serif; }
.f-p-mid { font-size: 15px; font-weight: 500; color: #444; line-height: 1.95; margin-bottom: 18px; font-family: 'Poppins', sans-serif; }
.f-spacer { height: 28px; }
.f-insp-box { background: #F2F0EB; border-radius: 8px; padding: 16px 24px; margin-bottom: 18px; border-left: 4px solid var(--gold); }
.f-insp-heading { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: #111; letter-spacing: 0.1em; display: block; }
.f-insp-heading span { color: var(--gold); }
.f-that-didnt { font-size: 20px; font-weight: 800; color: #111; line-height: 1.5; font-style: italic; margin: 24px 0; padding: 18px 22px; border-left: 4px solid var(--gold); background: #F2F0EB; border-radius: 0 8px 8px 0; font-family: 'Poppins', sans-serif; }
.f-goat-box { background: #E8E6E1; border-radius: 10px; padding: 26px 30px; margin: 28px 0; }
.f-goat-line1 { font-size: 15px; font-weight: 700; color: #111; line-height: 1.9; margin-bottom: 10px; font-family: 'Poppins', sans-serif; }
.f-goat-line2 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: #111; letter-spacing: 0.08em; }
.f-goat-line2 span { color: var(--gold); }
.f-why-heading { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: #111; letter-spacing: 0.1em; margin-bottom: 12px; }
.f-why-heading span { color: var(--gold); }
.f-p-why { font-size: 15px; font-weight: 500; color: #444; line-height: 1.95; font-family: 'Poppins', sans-serif; }

@media (max-width: 768px) {
  .founder-wrap { grid-template-columns: 1fr; }
  .founder-left { position: relative; height: 60vw; top: 0; }
  .founder-right { padding: 32px 20px 60px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 12px; }
}
