/* ============================================
   JANATHA INDUSTRIES GROUP — LUXURY STYLESHEET
   ============================================ */

/* ─── CSS Variables ─── */
:root {
  --black: #0D0D0D;
  --gold: #C8A96B;
  --gold-light: #e0c98a;
  --gold-dark: #a0813d;
  --white: #FFFFFF;
  --off-white: #F8F8F8;
  --light-gray: #f0ede8;
  --mid-gray: #888880;
  --text-dark: #1a1a18;
  --text-muted: #6b6b62;

  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Montserrat', sans-serif;

  --nav-h: 80px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
  overflow-y: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-sans); }

/* ─── Custom Cursor ─── */
.custom-cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99997;
  transform: translate(-4px, -4px); /* offset by half width */
  transition: width 0.18s var(--ease-out), height 0.18s var(--ease-out), background 0.2s, opacity 0.2s;
  will-change: transform;
}
.custom-cursor.cursor-big {
  width: 16px; height: 16px;
  background: var(--gold-light);
  transform: translate(-8px, -8px) !important;
}
.custom-cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(200,169,107,0.65);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99996;
  transform: translate(-18px, -18px);
  transition: width 0.28s var(--ease-out), height 0.28s var(--ease-out), border-color 0.25s, opacity 0.3s;
  opacity: 0.7;
  will-change: transform;
}
.custom-cursor-follower.follower-big {
  width: 56px; height: 56px;
  border-color: rgba(200,169,107,0.3);
  transform: translate(-28px, -28px) !important;
}

/* ─── Loader ─── */
#loader {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.9s var(--ease-out), visibility 0.9s;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; }

.loader-gear-wrap {
  position: relative;
  width: 130px; height: 130px;
  margin: 0 auto 32px;
}

/* Big outer blue gear — slow clockwise */
.loader-gear-outer {
  width: 130px; height: 130px;
  position: absolute; top: 0; left: 0;
  animation: gear-spin-cw 8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(37,99,184,0.35));
}

/* Smaller inner gold gear — faster counter-clockwise, centered */
.loader-gear-inner {
  width: 72px; height: 72px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: gear-spin-ccw-inner 5s linear infinite;
  filter: drop-shadow(0 0 5px rgba(200,169,107,0.3));
}

@keyframes gear-spin-cw {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes gear-spin-ccw-inner {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

.loader-text {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeIn 0.6s 0.6s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.loader-bar {
  width: 200px; height: 1px;
  background: rgba(200,169,107,0.15);
  margin: 0 auto;
  overflow: hidden;
}
.loader-progress {
  height: 100%;
  background: linear-gradient(90deg, #2563B8, var(--gold));
  width: 0;
  animation: progress 2.2s var(--ease-out) 0.4s forwards;
}
@keyframes progress { to { width: 100%; } }

/* ─── Navbar ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  z-index: 1000;
  transition: background 0.4s, box-shadow 0.4s, height 0.3s;
}
#navbar.scrolled {
  background: rgba(13,13,13,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(200,169,107,0.2);
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold);
}
.nav-gear-icon {
  flex-shrink: 0;
  transition: transform 0.6s var(--ease-out);
}
.nav-gear-icon:hover { transform: rotate(45deg); }
.nav-brand {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: var(--gold);
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid rgba(200,169,107,0.4);
  padding: 8px 20px;
  border-radius: 1px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.nav-links .nav-cta::after { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold); transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 75vw; max-width: 320px;
  background: var(--black);
  z-index: 999;
  padding: 100px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  border-left: 1px solid rgba(200,169,107,0.15);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu ul { display: flex; flex-direction: column; gap: 24px; }
.mobile-menu a {
  font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.25s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── Buttons ─── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,107,0.3);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}
.btn-ghost-light {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
}
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.full-width { width: 100%; text-align: center; }

/* ─── Section Utilities ─── */
.section-padded { padding: 120px 80px; }
.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-light); }
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }
.section-intro {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 64px;
}

/* ─── Reveal Animations ─── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
[data-delay="1"] { transition-delay: 0.15s; }
[data-delay="2"] { transition-delay: 0.3s; }
[data-delay="3"] { transition-delay: 0.45s; }
.revealed { opacity: 1; transform: none; }

/* ─── Hero ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-video-bg {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.5) 60%, rgba(13,13,13,0.75) 100%);
  z-index: 1;
}
.hero-video-placeholder {
  position: absolute; inset: 0;
  background: #0d0d0d;
  overflow: hidden;
}
.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.04;
  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;
}
.hero-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,169,107,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(200,169,107,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 0%, rgba(200,169,107,0.08) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 32px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  display: block;
}
.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 48px;
  letter-spacing: 0.3px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s 2.5s forwards;
}
.hero-scroll-indicator span {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(200,169,107,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }

.hero-corner-text {
  position: absolute; right: 40px; bottom: 40px;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.2); z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

/* ─── Impact Bar ─── */
.impact-bar {
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  padding: 32px 80px;
  gap: 0;
  border-top: 1px solid rgba(200,169,107,0.15);
}
.impact-item { text-align: center; flex: 1; }
.impact-item p {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-top: 4px;
}
.impact-num {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.impact-plus { font-family: var(--font-serif); font-size: 24px; color: var(--gold); }
.impact-divider { width: 1px; height: 60px; background: rgba(200,169,107,0.2); margin: 0 32px; }

/* ─── Timeline ─── */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline-spine {
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200,169,107,0.4) 10%, rgba(200,169,107,0.4) 90%, transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
}
.timeline-item.left { flex-direction: row; }
.timeline-item.right { flex-direction: row-reverse; }
.timeline-card {
  width: 44%;
  background: var(--white);
  padding: 36px;
  border: 1px solid rgba(200,169,107,0.15);
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 60px rgba(0,0,0,0.1);
}
.timeline-card::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 20px; height: 1px;
  background: rgba(200,169,107,0.4);
}
.timeline-item.left .timeline-card { margin-left: 6%; }
.timeline-item.left .timeline-card::after { right: -20px; }
.timeline-item.right .timeline-card { margin-right: 6%; }
.timeline-item.right .timeline-card::after { left: -20px; }
.timeline-year {
  font-family: var(--font-serif);
  font-size: 13px; font-weight: 500;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.timeline-card h3 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.3;
}
.timeline-card p {
  font-size: 14px; font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
}
.timeline-dot {
  position: absolute; left: 50%;
  width: 12px; height: 12px;
  border: 2px solid var(--gold);
  background: var(--off-white);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-card-future { background: var(--black); border-color: rgba(200,169,107,0.3); }
.timeline-card-future h3 { color: var(--white); }
.timeline-card-future p { color: rgba(255,255,255,0.5); }
.future-badge { color: var(--gold-light); }
.timeline-dot-future { background: var(--gold); box-shadow: 0 0 16px rgba(200,169,107,0.6); }

/* ─── Founder ─── */
.founder-section {
  background: var(--black);
  padding: 140px 80px;
  position: relative;
  overflow: hidden;
}
.founder-bg-text {
  position: absolute;
  font-family: var(--font-serif);
  font-size: clamp(160px, 20vw, 280px);
  font-weight: 700;
  color: rgba(200,169,107,0.03);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 20px;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.founder-image-frame {
  position: relative;
  aspect-ratio: 3/4;
  max-height: 600px;
}
.founder-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a18 0%, #111110 100%);
  border: 1px solid rgba(200,169,107,0.2);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: rgba(200,169,107,0.4);
  font-size: 13px; letter-spacing: 1px;
  font-family: var(--font-sans);
}
.founder-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 1px solid rgba(200,169,107,0.2);
  filter: sepia(15%) contrast(1.05);
}
.founder-image-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 60%; height: 60%;
  border: 1px solid rgba(200,169,107,0.2);
  pointer-events: none;
}
.founder-caption {
  margin-top: 24px;
  border-top: 1px solid rgba(200,169,107,0.2);
  padding-top: 16px;
}
.founder-caption p {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 400;
  color: var(--white);
}
.founder-caption span {
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase;
}
.founder-story-col { display: flex; flex-direction: column; justify-content: center; }
.founder-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 36px;
}
.founder-title em { font-style: italic; color: var(--gold); }
.founder-story-text p {
  font-size: 15px; font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.founder-quote {
  border-left: 2px solid var(--gold);
  padding: 24px 32px;
  margin: 40px 0;
  background: rgba(200,169,107,0.04);
  position: relative;
}
.quote-mark {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--gold);
  line-height: 0;
  position: absolute;
  top: 20px; left: 20px;
  opacity: 0.4;
}
.founder-quote > p,
.founder-quote {
  font-family: var(--font-serif);
  font-size: 20px; font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  padding-left: 16px;
}
.founder-quote cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px; font-style: normal;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  margin-top: 16px;
  padding-left: 16px;
}
.founder-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
  border-top: 1px solid rgba(200,169,107,0.15);
  padding-top: 32px;
}
.founder-stats > div strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 400;
  color: var(--gold);
  margin-bottom: 6px;
}
.founder-stats > div p {
  font-size: 11px; font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: none;
}
.gallery-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #e8e4de, #d4cfc8);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: rgba(0,0,0,0.3);
  font-size: 12px; letter-spacing: 1px;
  font-family: var(--font-sans);
  transition: transform 0.6s var(--ease-out);
}
.gallery-placeholder.royal { background: linear-gradient(135deg, #1a1a18, #2a2820); color: rgba(200,169,107,0.5); }
.gallery-placeholder.factory { background: linear-gradient(135deg, #d4c8b8, #c8baa8); }
.gallery-placeholder.docs { background: linear-gradient(135deg, #e8e0d0, #dcd4c4); }
.gallery-placeholder.family { background: linear-gradient(135deg, #c8d4cc, #b8c8c0); }
.gallery-placeholder.awards { background: linear-gradient(135deg, #2a2410, #1e1a08); color: rgba(200,169,107,0.6); }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 24px;
}
.gallery-overlay p {
  font-size: 13px; font-weight: 300;
  color: var(--white);
  font-family: var(--font-sans);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.lightbox {
  display: none;
  position: fixed; inset: 0;
  background: rgba(13,13,13,0.95);
  z-index: 10000;
  align-items: center; justify-content: center;
  flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox-close {
  position: absolute; top: 24px; right: 32px;
  font-size: 40px; color: var(--white);
  cursor: none; opacity: 0.6; transition: opacity 0.2s;
  background: none; border: none;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-img { max-width: 80vw; max-height: 70vh; background: #222; min-width: 200px; min-height: 200px; }
.lightbox-caption { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-top: 20px; text-align: center; }

/* ─── Businesses ─── */
.businesses-section { background: var(--off-white); }
.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.biz-card {
  background: var(--white);
  padding: 48px 36px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, background 0.4s;
}
.biz-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.biz-card:hover { transform: translateY(-8px); box-shadow: 0 24px 80px rgba(0,0,0,0.12); }
.biz-card:hover::before { transform: scaleX(1); }
.biz-icon { width: 48px; height: 48px; margin-bottom: 24px; }
.biz-card h3 {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 16px;
}
.biz-card p {
  font-size: 14px; font-weight: 300;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.biz-card-line { height: 1px; background: rgba(200,169,107,0.2); margin-bottom: 16px; }
.biz-year {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
}
.biz-card-future { background: var(--black); }
.biz-card-future h3 { color: var(--white); }
.biz-card-future p { color: rgba(255,255,255,0.4); }
.biz-card-future .biz-card-line { background: rgba(200,169,107,0.15); }

/* ─── Impact Section ─── */
.impact-section {
  position: relative;
  padding: 140px 80px;
  overflow: hidden;
}
.impact-section-bg {
  position: absolute; inset: 0;
  background: var(--black);
}
.impact-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
}
.stat-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(200,169,107,0.1);
  padding: 48px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
}
.stat-block:hover { background: rgba(200,169,107,0.05); border-color: rgba(200,169,107,0.25); }
.stat-number {
  font-family: var(--font-serif);
  font-size: 64px; font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-number span:last-child { font-size: 40px; }
.stat-block p {
  font-size: 11px; font-weight: 400; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* ─── Vision ─── */
.vision-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  background: var(--off-white);
}
.vision-left .section-label { margin-bottom: 16px; }
.vision-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 28px;
  color: var(--black);
}
.vision-title em { font-style: italic; color: var(--gold-dark); }
.vision-left p {
  font-size: 15px; font-weight: 300; line-height: 1.9;
  color: var(--text-muted); margin-bottom: 20px;
}
.vision-left .btn-primary { margin-top: 20px; }
.vision-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.vision-card {
  background: var(--white);
  padding: 28px;
  border: 1px solid rgba(200,169,107,0.12);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.vision-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.vision-card-icon { font-size: 24px; margin-bottom: 12px; }
.vision-card h4 {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 400;
  color: var(--black); margin-bottom: 10px;
}
.vision-card p { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--text-muted); }

/* ─── Leadership ─── */
.leadership-section { background: var(--white); }
.leadership-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px;
}
.leader-card {
  text-align: center;
  transition: transform 0.3s var(--ease-out);
}
.leader-card:hover { transform: translateY(-6px); }
.leader-photo-frame {
  position: relative;
  width: 220px; height: 280px;
  margin: 0 auto 24px;
}
.leader-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #f0ede8, #e8e3dc);
  border: 1px solid rgba(200,169,107,0.2);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: rgba(0,0,0,0.3);
  font-size: 12px; letter-spacing: 1px;
  font-family: var(--font-sans);
}
.leader-card h3 {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 400;
  color: var(--black); margin-bottom: 6px;
}
.leader-title {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.leader-bio {
  font-size: 13px; font-weight: 300; line-height: 1.8;
  color: var(--text-muted);
}

/* ─── News ─── */
.news-section { background: var(--off-white); }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.news-card {
  background: var(--white);
  padding: 48px;
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.news-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 100%; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.news-card:hover::after { transform: scaleX(1); }
.news-card:hover { transform: translateY(-4px); }
.news-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 10px;
}
.news-date {
  font-size: 12px; color: var(--text-muted);
  margin-bottom: 16px; letter-spacing: 1px;
}
.news-card h3 {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 400;
  color: var(--black); line-height: 1.3;
  margin-bottom: 16px;
}
.news-card.small h3 { font-size: 20px; }
.news-card p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--text-muted); margin-bottom: 24px; }
.news-read-more {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  transition: letter-spacing 0.3s;
}
.news-read-more:hover { letter-spacing: 3px; }
.news-col { display: flex; flex-direction: column; gap: 2px; }
.news-card.small { padding: 36px; }

/* ─── Partnership ─── */
.partnership-section {
  position: relative;
  padding: 140px 80px;
  text-align: center;
  overflow: hidden;
}
.partnership-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, #0d0d0d 0%, #1a160a 50%, #0d0d0d 100%);
}
.partnership-content {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.partnership-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.partnership-content h2 em { font-style: italic; color: var(--gold); }
.partnership-content p {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8; margin-bottom: 48px;
}
.partnership-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Contact ─── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; }
.contact-info-block { margin-bottom: 32px; }
.contact-info-block h4 {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.contact-info-block p { font-size: 15px; font-weight: 300; color: var(--text-dark); }
.contact-map-placeholder {
  margin-top: 32px;
  height: 200px;
  background: linear-gradient(135deg, #e8e4de, #d4cfc8);
  border: 1px solid rgba(200,169,107,0.2);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: rgba(0,0,0,0.3);
  font-size: 12px; letter-spacing: 1px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--off-white);
  border: 1px solid rgba(200,169,107,0.2);
  padding: 14px 16px;
  font-size: 14px; font-weight: 300;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(200,169,107,0.1);
  border: 1px solid rgba(200,169,107,0.3);
  color: var(--gold);
  font-size: 13px; letter-spacing: 1px;
  margin-top: 16px;
}

/* ─── Footer ─── */
.footer { background: var(--black); padding: 80px 80px 32px; }
.footer-brand svg { flex-shrink: 0; }
.footer-top {
  display: flex; justify-content: space-between; gap: 80px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(200,169,107,0.1);
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: flex-start; gap: 16px; }
.footer-brand h3 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 400;
  color: var(--white); margin-bottom: 6px;
}
.footer-brand p { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 1px; }
.footer-links { display: flex; gap: 64px; }
.footer-col h5 {
  font-size: 10px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.4);
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.2); letter-spacing: 0.5px; }
.footer-est { font-family: var(--font-serif); font-style: italic; color: rgba(200,169,107,0.3) !important; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .section-padded { padding: 100px 48px; }
  .founder-section { padding: 100px 48px; }
  .impact-section { padding: 100px 48px; }
  .vision-section { padding: 100px 48px; }
  .partnership-section { padding: 100px 48px; }
  .footer { padding: 64px 48px 24px; }
  .impact-bar { padding: 28px 48px; }
  .timeline-card { padding: 28px; }
  .biz-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .founder-grid { gap: 60px; }
}

@media (max-width: 768px) {
  .section-padded { padding: 80px 24px; }
  .founder-section { padding: 80px 24px; }
  .impact-section { padding: 80px 24px; }
  .vision-section { padding: 80px 24px; grid-template-columns: 1fr; gap: 48px; }
  .partnership-section { padding: 80px 24px; }
  .contact-section { padding: 80px 24px; }
  .footer { padding: 48px 24px 24px; }

  #navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-headline { font-size: clamp(40px, 10vw, 72px); }
  .impact-bar { flex-direction: column; padding: 32px 24px; gap: 24px; }
  .impact-divider { width: 60px; height: 1px; }

  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-image-frame { max-height: 400px; }
  .founder-stats { grid-template-columns: repeat(2, 1fr); }

  .timeline-spine { display: none; }
  .timeline-item { flex-direction: column !important; }
  .timeline-item.left .timeline-card,
  .timeline-item.right .timeline-card { width: 100%; margin: 0; }
  .timeline-item .timeline-card::after { display: none; }
  .timeline-dot { position: relative; left: 0; transform: none; margin: 16px 0; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: 1fr; gap: 32px; }
  .news-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 40px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .partnership-btns { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }

  .custom-cursor, .custom-cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .founder-stats { grid-template-columns: 1fr; }
  .vision-cards { grid-template-columns: 1fr; }
  .nav-brand { font-size: 15px; }
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); }

/* ─── Selection ─── */
::selection { background: rgba(200,169,107,0.25); color: var(--black); }

/* ─── Timeline Milestone Card ─── */
.timeline-card-milestone {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1408 100%);
  border-color: rgba(200,169,107,0.35) !important;
}
.timeline-card-milestone .timeline-year { color: var(--gold-light); }
.timeline-card-milestone h3 { color: var(--white); }
.timeline-card-milestone p { color: rgba(255,255,255,0.55); }
.milestone-badges {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 20px;
}
.badge {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(200,169,107,0.3);
  padding: 5px 12px;
  background: rgba(200,169,107,0.06);
}
.timeline-dot-milestone {
  background: var(--gold) !important;
  box-shadow: 0 0 0 4px rgba(200,169,107,0.15), 0 0 20px rgba(200,169,107,0.4) !important;
  width: 16px !important; height: 16px !important;
}

/* ─── Form Error ─── */
.form-error {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(122,42,42,0.1);
  border: 1px solid rgba(200,80,80,0.3);
  color: #e08080;
  font-size: 13px; letter-spacing: 0.5px;
  margin-top: 16px;
  line-height: 1.6;
}
.form-error strong { color: #e8a0a0; }
.form-error a { color: var(--gold); text-decoration: underline; }

/* ─── EmailJS Notice ─── */
.emailjs-notice {
  background: rgba(37,99,184,0.08);
  border: 1px solid rgba(37,99,184,0.25);
  border-left: 3px solid #2563B8;
  padding: 14px 18px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.6;
}
.emailjs-notice strong { color: var(--text-dark); font-weight: 600; }
.emailjs-notice code { font-size: 11px; background: rgba(0,0,0,0.08); padding: 1px 5px; border-radius: 2px; }
.emailjs-notice a { color: #2563B8; text-decoration: underline; }
.emailjs-notice.hidden { display: none; }