/* ============================================
   OMAR FARUQUE — Bold & Sophisticated Dark
   ============================================ */

:root {
  --black:       #080808;
  --dark:        #0f0f0f;
  --dark-2:      #161616;
  --dark-3:      #1e1e1e;
  --dark-4:      #282828;
  --gold:        #c9a84c;
  --gold-light:  #e2c170;
  --gold-dim:    #8a6e2e;
  --white:       #f5f2ec;
  --white-dim:   #a0998e;
  --white-muted: #5a5550;
  --red-accent:  #8b2020;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --max-w: 1200px;
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

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

/* =================== CUSTOM CURSOR =================== */
.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease;
}

body:has(a:hover) .cursor-follower,
body:has(button:hover) .cursor-follower {
  transform: translate(-50%, -50%) scale(1.8);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

/* =================== NOISE TEXTURE =================== */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* =================== NAV =================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3.5rem;
  transition: background 0.4s, padding 0.4s;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  padding: 1rem 3.5rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav__logo span { color: var(--gold); }

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

.nav__links a {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-weight: 400;
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--white); }

.nav__cta {
  color: var(--gold) !important;
  border: 1px solid rgba(201, 168, 76, 0.4);
  padding: 0.5rem 1.4rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s !important;
}

.nav__cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 600;
}

.nav__hamburger span {
  display: block;
  height: 1px;
  background: var(--white);
  transition: all 0.3s;
}

.nav__hamburger span:first-child { width: 28px; }
.nav__hamburger span:last-child  { width: 18px; }
.nav__hamburger.active span:first-child { width: 24px; transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.active span:last-child  { width: 24px; transform: rotate(-45deg) translate(5px, -5px); }

/* =================== MOBILE MENU =================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.mobile-menu .mm-link {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--white-dim);
  transition: color 0.2s;
}

.mobile-menu .mm-link:hover { color: var(--gold); }

/* =================== BUTTONS =================== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  border-radius: var(--radius);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.25);
}

.btn--ghost {
  background: transparent;
  color: var(--white-dim);
  border: 1px solid var(--white-muted);
}

.btn--ghost:hover {
  color: var(--white);
  border-color: var(--white-dim);
  transform: translateY(-2px);
}

.btn--full { width: 100%; text-align: center; }

/* =================== HERO =================== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 3.5rem 4rem;
}

.hero__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: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
}

.hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__pre {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeIn 0.8s 0.2s forwards;
}

.hero__line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__name {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 2rem;
  overflow: hidden;
}

.hero__first {
  display: block;
  font-size: clamp(4.5rem, 10vw, 9rem);
  color: var(--white);
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp 0.9s 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__last {
  display: block;
  font-size: clamp(4.5rem, 10vw, 9rem);
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 242, 236, 0.25);
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp 0.9s 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--white-dim);
  line-height: 1.5;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeIn 0.8s 0.8s forwards;
}

.hero__tagline em {
  font-style: italic;
  color: var(--white);
}

.hero__actions {
  display: flex;
  gap: 1.2rem;
  opacity: 0;
  animation: fadeIn 0.8s 1s forwards;
}

.hero__stats {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 6rem auto 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 3rem;
  opacity: 0;
  animation: fadeIn 0.8s 1.2s forwards;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.stat__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.stat__plus {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold-dim);
  vertical-align: super;
}

.stat__label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 0.5rem;
}

.stat__divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.08);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

.hero__scroll span {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
  writing-mode: vertical-rl;
}

/* =================== KEYFRAMES =================== */
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* =================== SECTIONS =================== */
.section {
  padding: 8rem 3.5rem;
  position: relative;
}

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.section__eyebrow.center { text-align: center; }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.section__title.center { text-align: center; }

.section__title em {
  font-style: italic;
  color: var(--gold);
}

.section__sub {
  font-size: 1rem;
  color: var(--white-dim);
  max-width: 560px;
  margin-bottom: 4rem;
}

.section__header { margin-bottom: 4rem; }

/* =================== ABOUT =================== */
.about { background: var(--dark); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8rem;
  align-items: center;
}

.about__visual { position: relative; }

.about__photo-frame {
  position: relative;
  width: 360px;
  height: 440px;
}

.about__photo-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, var(--dark-3), var(--dark-4));
  border: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about__photo-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201, 168, 76, 0.05) 0%, transparent 60%);
}

.about__initials {
  font-family: var(--font-display);
  font-size: 7rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.12);
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}

.about__initials span { color: rgba(201, 168, 76, 0.2); }

.about__frame-deco {
  position: absolute;
  width: 40px;
  height: 40px;
  border-color: var(--gold);
  border-style: solid;
}

.about__frame-deco--tl {
  top: -10px; left: -10px;
  border-width: 1.5px 0 0 1.5px;
}

.about__frame-deco--br {
  bottom: -10px; right: -10px;
  border-width: 0 1.5px 1.5px 0;
}

.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 1.2rem 1.5rem;
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.about__badge strong { display: block; font-weight: 600; font-size: 0.9rem; }

.about__lead {
  font-size: 1.15rem;
  color: var(--white-dim);
  margin-bottom: 1.2rem;
  line-height: 1.75;
}

.about__body {
  font-size: 0.95rem;
  color: var(--white-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.about__pillars {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
}

.pillar {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.pillar__icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.pillar p {
  font-size: 0.83rem;
  color: var(--white-muted);
}

/* =================== VENTURES =================== */
.ventures { background: var(--black); }

.ventures__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.venture__card {
  background: var(--black);
  padding: 3rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}

.venture__card::before {
  content: attr(data-index);
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  transition: color 0.3s;
}

.venture__card:hover { background: var(--dark-2); }
.venture__card:hover::before { color: rgba(201, 168, 76, 0.06); }

.venture__card--featured {
  grid-column: span 2;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.venture__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.venture__sector {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.venture__year {
  font-size: 0.75rem;
  color: var(--white-muted);
}

.venture__name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.venture__card--featured .venture__name { font-size: 2.2rem; }

.venture__desc {
  font-size: 0.88rem;
  color: var(--white-muted);
  line-height: 1.75;
  max-width: 560px;
}

.venture__metrics {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.venture__metrics span {
  font-size: 0.82rem;
  color: var(--white-dim);
}

.venture__metrics strong {
  color: var(--gold);
  font-weight: 600;
}

.venture__arrow {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  font-size: 1.2rem;
  color: var(--white-muted);
  transition: all 0.3s;
}

.venture__card:hover .venture__arrow {
  color: var(--gold);
  transform: translate(4px, -4px);
}

/* =================== PORTFOLIO =================== */
.portfolio { background: var(--dark); }

.portfolio__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
}

.portfolio__item {
  background: var(--dark-2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.portfolio__item--large {
  grid-row: span 2;
}

.portfolio__visual {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.5s;
}

.portfolio__item--large .portfolio__visual { height: 300px; }

.portfolio__item:hover .portfolio__visual { transform: scale(1.03); }

.portfolio__icon {
  font-size: 3rem;
  color: rgba(255,255,255,0.12);
  font-style: normal;
}

.portfolio__info {
  padding: 2rem 2.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.portfolio__tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  font-weight: 400;
}

.portfolio__info h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.25;
}

.portfolio__item--large .portfolio__info h3 { font-size: 1.7rem; }

.portfolio__info p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}

.portfolio__result {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.result__num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.result__label {
  font-size: 0.78rem;
  color: var(--white-muted);
  letter-spacing: 0.05em;
}

/* =================== PHILOSOPHY =================== */
.philosophy { background: var(--black); }

.philosophy__inner { max-width: var(--max-w); margin: 0 auto; }

.philosophy__quotes { margin: 4rem 0; }

.philosophy__quote--main {
  border-left: 2px solid var(--gold);
  padding: 2rem 3rem;
  background: rgba(201, 168, 76, 0.03);
}

.philosophy__quote--main p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.philosophy__quote--main p em {
  color: var(--white);
  font-style: normal;
}

.philosophy__quote--main cite {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.principles__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  margin-top: 4rem;
}

.principle {
  background: var(--dark);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.principle:hover { background: var(--dark-2); }

.principle__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.2);
  margin-bottom: 1.2rem;
  font-style: italic;
}

.principle h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.principle p {
  font-size: 0.84rem;
  color: var(--white-muted);
  line-height: 1.75;
}

/* =================== CONTACT =================== */
.contact { background: var(--dark); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8rem;
  align-items: start;
}

.contact__left .section__title { margin-bottom: 1.2rem; }
.contact__left > p {
  font-size: 0.95rem;
  color: var(--white-dim);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__detail {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact__detail-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-muted);
}

.contact__detail span:last-child,
.contact__detail a {
  font-size: 0.92rem;
  color: var(--white-dim);
}

.contact__detail a:hover { color: var(--gold); }

.contact__socials { display: flex; gap: 1.5rem; }

.s-link {
  font-size: 0.82rem;
  color: var(--white-muted);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.1rem;
  transition: color 0.2s, border-color 0.2s;
}

.s-link:hover { color: var(--gold); border-color: var(--gold); }

.contact__form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 3rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form__group {
  margin-bottom: 1.4rem;
}

.form__group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-bottom: 0.5rem;
  font-weight: 400;
}

.form__group input,
.form__group textarea {
  width: 100%;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  font-weight: 300;
  border-radius: 0;
}

.form__group input::placeholder,
.form__group textarea::placeholder { color: var(--white-muted); }

.form__group input:focus,
.form__group textarea:focus {
  border-color: rgba(201, 168, 76, 0.4);
}

.form__group textarea { resize: vertical; }

/* =================== FOOTER =================== */
.footer {
  background: var(--black);
  padding: 4rem 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top { margin-bottom: 2rem; }

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.footer__logo span { color: var(--gold); }

.footer__tagline {
  font-size: 0.78rem;
  color: var(--white-muted);
  letter-spacing: 0.1em;
}

.footer__divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__bottom > p {
  font-size: 0.78rem;
  color: var(--white-muted);
}

.footer__nav {
  display: flex;
  gap: 2rem;
}

.footer__nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-muted);
  transition: color 0.2s;
}

.footer__nav a:hover { color: var(--gold); }

/* =================== SCROLL REVEAL =================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 4rem; }
  .about__photo-frame { width: 300px; height: 360px; }
  .principles__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; gap: 4rem; }
  .venture__card--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav.scrolled { padding: 1rem 1.5rem; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  .section { padding: 5rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero__stats { flex-direction: column; gap: 2rem; align-items: flex-start; padding-top: 2.5rem; }
  .stat__divider { display: none; }
  .stat { text-align: left; padding: 0; }
  .hero__scroll { display: none; }

  .ventures__grid { grid-template-columns: 1fr; }
  .venture__card--featured { grid-column: auto; }

  .portfolio__grid { grid-template-columns: 1fr; }
  .portfolio__item--large { grid-row: auto; }

  .principles__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }

  .footer__bottom { flex-direction: column; gap: 1.5rem; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__first, .hero__last { font-size: 3.5rem; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .philosophy__quote--main { padding: 1.5rem; }
}
