/* ============================================================
   TATER World — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@200;300;400;500;600;700&display=swap');

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8D5A3;
  --gold-dark:   #8B6914;
  --gold-pale:   #F5EDD4;
  --navy:        #0D1B2A;
  --navy-mid:    #162535;
  --navy-light:  #1E3448;
  --cream:       #F7F3EC;
  --cream-dark:  #EDE5D4;
  --text-dark:   #1A1208;
  --text-mid:    #4A3F2F;
  --text-light:  #8A7B65;
  --white:       #FFFFFF;
  --nav-h:       80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  animation: pageFadeIn 0.5s ease forwards;
}

@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── NAV ─────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4.5rem;
  background: rgba(10, 20, 32, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.18);
  transition: height 0.35s ease, background 0.35s ease;
}

#navbar.scrolled {
  height: 64px;
  background: rgba(8, 16, 26, 0.99);
  box-shadow: 0 6px 40px rgba(0,0,0,0.35);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.14em;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo span { color: rgba(255,255,255,0.85); font-weight: 300; }

/* Logo image variant — transparent PNG, inverted to white for dark navbar */
.nav-logo-img {
  display: flex; align-items: center;
  background: transparent;
  padding: 0;
}
.nav-logo-image {
  height: 200px; width: auto;
  display: block; object-fit: contain;
  /* filter: brightness(0) invert(1); */
}
.nav-logo-fallback { display: none; }

.nav-items {
  display: flex; align-items: center; gap: 0;
  list-style: none;
}

.nav-item { position: relative; }

.nav-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0 0.7rem; height: var(--nav-h);
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.72);
  text-decoration: none; cursor: pointer;
  background: transparent; border: none;
  transition: color 0.3s, background 0.3s;
  white-space: nowrap;
}

.nav-link svg { flex-shrink: 0; transition: transform 0.3s; }

.nav-item.open .nav-link,
.nav-link:hover { color: var(--gold); background: rgba(201,168,76,0.06); }

.nav-item.open .nav-link svg { transform: rotate(180deg); }

.nav-link.nav-cta {
  border: 1px solid rgba(201,168,76,0.5);
  margin-left: 0.75rem; padding: 0 1.4rem;
  height: 36px; color: var(--gold);
  transition: all 0.3s;
}
.nav-link.nav-cta:hover { background: var(--gold); color: var(--navy); }

/* active page indicator */
.nav-link.active { color: var(--gold); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 1.1rem; right: 1.1rem;
  height: 2px; background: var(--gold);
}

/* ── MEGA MENU ───────────────────────────────────────────── */
#nav-overlay {
  position: fixed; inset: 0; top: var(--nav-h);
  background: rgba(5, 12, 20, 0.65);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1900;
}
#nav-overlay.visible { opacity: 1; pointer-events: all; }

.mega-menu {
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  padding: 3rem 4.5rem 3.5rem;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1), opacity 0.28s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  z-index: 1950;
  border-bottom: 3px solid var(--gold);
}
.mega-menu.visible { transform: translateY(0); opacity: 1; pointer-events: all; }

.mega-inner {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 4.5rem; max-width: 1400px; margin: 0 auto;
}

/* ── STORY MEGA — luxury editorial layout ─────────────────── */
.story-mega { padding: 0; overflow: hidden; }

.story-mega-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  max-width: 100%;
  min-height: 320px;
  gap: 0;
}

.story-mega-left {
  padding: 3.5rem 3.5rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.story-mega-left h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400;
  color: var(--text-dark); line-height: 1.15; margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.story-mega-left h3 em { font-style: italic; color: var(--gold); }
.story-mega-left p {
  font-size: 0.82rem; font-weight: 300; line-height: 1.8;
  color: var(--text-mid); margin-bottom: 1.75rem;
}

.story-mega-right {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 3.5rem;
  justify-content: center;
}

.story-nav-item {
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
  flex: 0 1 auto;
}

.story-nav-item:hover .sni-label {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.sni-num {
  display: none;
}

.sni-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--text-dark);
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 0.3rem;
  display: block;
}

.story-nav-item:hover .sni-label {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.sni-desc {
  display: none;
}

.sni-arrow {
  display: none;
}

.mega-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.mega-aside-tag {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1rem;
}
.mega-aside-tag::before { content: ''; width: 28px; height: 1px; background: var(--gold); }

.mega-aside h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400; color: var(--text-dark);
  line-height: 1.15; margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.mega-aside h3 em { font-style: italic; color: var(--gold); }

.mega-aside p {
  font-size: 0.82rem; font-weight: 300; line-height: 1.8;
  color: var(--text-mid); margin-bottom: 1.5rem;
}

.mega-view-all {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold-dark);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-dark);
  padding-bottom: 2px;
  transition: gap 0.3s;
}
.mega-view-all:hover { gap: 0.75rem; }

.mega-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.mega-sector-column {
  display: flex;
  flex-direction: column;
}

.mega-sector-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-pale);
}

/* Brands container — clean list layout */
.mega-brands-container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 0.8rem;
  align-items: flex-start;
}

.mega-brand-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
  letter-spacing: -0.01em;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
}

.mega-brand-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.mega-cards {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-bottom: 2rem;
}
.mega-cards.two-col { grid-template-columns: repeat(2, 1fr); }
.mega-cards.three-col { grid-template-columns: repeat(3, 1fr); }

/* ── MENU CARD ───────────────────────────────────────────── */
.menu-card {
  text-decoration: none; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: block;
}
.menu-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

.menu-card-visual {
  height: 160px; position: relative; overflow: hidden;
}
.menu-card-visual::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
}
.menu-card:hover .menu-card-visual::after { background: rgba(0,0,0,0.1); }

/* Superb Realty logo — larger in nav dropdown */
.menu-card-visual.vis-superb {
  height: 160px !important;
}
.menu-card-visual.vis-superb img {
  max-height: 200px !important;
  max-width: 400px !important;
}

/* Skyline Group logo — larger in nav dropdown */
.menu-card-visual.vis-skyline {
  height: 160px !important;
}
.menu-card-visual.vis-skyline img {
  max-height: 200px !important;
  max-width: 400px !important;
}

/* Individual visual themes */
.vis-shilpi {
  background: linear-gradient(135deg, #0f0400 0%, #3d1a00 45%, #7B5A10 80%, #C9A84C 100%);
}
.vis-shilpi-inner {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.35) 0%, transparent 60%);
}

.vis-sejal {
  background: linear-gradient(135deg, #200010 0%, #5a1030 50%, #9B4E6A 85%, #D4919B 100%);
}
.vis-touch {
  background: linear-gradient(135deg, #050510 0%, #0f0f2a 50%, #252550 85%, #4040a0 100%);
}
.vis-shine {
  background: linear-gradient(135deg, #0f0f0f 0%, #2a2a2a 50%, #5a5a5a 85%, #c0c0c0 100%);
}
.vis-skyline {
  background: linear-gradient(180deg, #f0f4f8 0%, #e8f0f6 55%, #e0ecf2 100%);
}
.vis-superb {
  background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 55%, #e8eef5 100%);
}
.vis-soultara {
  background: linear-gradient(135deg, #0d0508 0%, #2a0e1a 50%, #5a1a35 80%, #8b2a52 100%);
}
.vis-youngin {
  background: linear-gradient(135deg, #030e06 0%, #0b2a10 45%, #195a22 75%, #2a8c38 100%);
}
.vis-who {
  background: linear-gradient(135deg, #F5EDD4 0%, #EDE5D4 50%, #D4C9A8 100%);
}
.vis-leadership {
  background: linear-gradient(135deg, #0D1B2A 0%, #1E3448 60%, #2E4560 100%);
}
.vis-journey {
  background: linear-gradient(135deg, #1a0800 0%, #3d1a00 55%, #8B6914 100%);
}
.vis-values {
  background: linear-gradient(135deg, #0f1a10 0%, #1a2e1a 55%, #2a4a2a 100%);
}
.vis-bjm {
  background: linear-gradient(135deg, #1a0f00 0%, #3d2000 55%, #8B5514 100%);
}
.vis-jito {
  background: linear-gradient(135deg, #000f1a 0%, #002040 55%, #004080 100%);
}
.vis-impact {
  background: linear-gradient(135deg, #0a1a10 0%, #1a3020 55%, #2a5030 100%);
}
.vis-being-creative {
  background: linear-gradient(135deg, #1a0f1f 0%, #3a1a4a 50%, #6a3a7a 85%, #9a6aaa 100%);
}
.vis-superb-capital {
  background: linear-gradient(135deg, #0f1a2a 0%, #1a3a5a 50%, #4a6a9a 85%, #8aaadc 100%);
}

/* Decorative overlays on visuals */
.vis-geo {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  opacity: 0.12;
  font-size: 5rem; color: white; pointer-events: none;
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
}

.vis-lines {
  position: absolute; inset: 0; overflow: hidden;
}
.vis-lines::before, .vis-lines::after {
  content: ''; position: absolute;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}
.vis-lines::before { width: 200px; height: 200px; top: -50%; left: -20%; }
.vis-lines::after  { width: 140px; height: 140px; bottom: -40%; right: -10%; }

.vis-skyline-art {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60px; display: flex; align-items: flex-end;
  gap: 3px; padding: 0 12px; opacity: 0.25;
}
.skyline-block {
  background: rgba(201,168,76,0.6);
  width: 100%; flex: 1;
}

.menu-card-body {
  padding: 1rem 1.1rem;
  background: var(--white);
  transition: background 0.3s;
}
.menu-card:hover .menu-card-body { background: #fafaf8; }

.menu-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 500; color: var(--text-dark);
  margin-bottom: 0.3rem; line-height: 1.2;
}

.menu-card-desc {
  font-size: 0.72rem; font-weight: 300; color: var(--text-light);
  line-height: 1.5;
}

.menu-card-arrow {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.5rem;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-dark);
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.3s;
}
.menu-card:hover .menu-card-arrow { opacity: 1; transform: translateX(0); }

/* ── HAMBURGER ────────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px;
}
.hamburger span { width: 22px; height: 1px; background: var(--gold); display: block; transition: all 0.3s; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #050e17;
  border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-main {
  display: grid; grid-template-columns: 260px 1fr 1fr 1fr 1fr;
  gap: 3rem; padding: 4rem 4.5rem 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo-img {
  height: 80px; width: auto;
  /* display: block; object-fit: contain; */
  margin-bottom: 0rem;
  filter: brightness(0) invert(1);
}
.footer-logo-f {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--gold); letter-spacing: 0.12em;
  display: block; margin-bottom: 0.6rem;
}
.footer-logo-f span { color: rgba(255,255,255,0.7); font-weight: 300; }

.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; font-weight: 300; font-style: italic;
  color: rgba(255,255,255,0.35); line-height: 1.6;
}

.footer-col-title {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.82rem; font-weight: 300; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.3s;
  display: flex; align-items: center; gap: 0.5rem;
}
.footer-links a::before { content: '—'; font-size: 0.65rem; color: rgba(201,168,76,0.3); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.25rem 4.5rem;
  display: flex; align-items: center; justify-content: space-between;
}

/* Quick Links nav menu text-only styling */
.quicklinks-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.quicklinks-list li a {
  color: var(--text-dark);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.05rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding-bottom: 0.2rem;
}

.quicklinks-list li a:hover {
  color: var(--gold-dark);
  border-color: var(--gold);
}


.footer-copy {
  font-size: 0.68rem; font-weight: 300; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.2);
}

/* ── SHARED PAGE COMPONENTS ──────────────────────────────── */
.page-hero {
  min-height: 72vh;
  background: var(--navy);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 4.5rem 5rem;
  position: relative; overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero-tag {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.page-hero-tag::before { content: ''; width: 32px; height: 1px; background: var(--gold); }

.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300; color: var(--white);
  line-height: 1.05; letter-spacing: -0.01em;
  max-width: 820px;
}
.page-hero-title em { font-style: italic; color: var(--gold); }

.page-hero-lead {
  font-size: 1rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 560px; margin-top: 1.5rem;
}

.section-wrap { padding: 6rem 4.5rem; }
.section-wrap.dark { background: var(--navy); }
.section-wrap.mid  { background: var(--navy-mid); }
.section-wrap.light { background: var(--cream); }
.section-wrap.white { background: var(--white); }

.section-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 400; line-height: 1.15; color: var(--text-dark);
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }
.section-title.center { text-align: center; }

.section-lead {
  font-size: 0.98rem; font-weight: 300; line-height: 1.85;
  color: var(--text-mid); max-width: 640px; margin-top: 1rem;
}
.section-lead.light { color: rgba(255,255,255,0.6); }

.gold-rule { width: 56px; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); margin: 1.5rem 0; }

/* ── CARDS & GRIDS ────────────────────────────────────────── */
.card-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }

.content-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.content-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.1); transform: translateY(-4px); }

.content-card.dark-card { background: var(--navy-light); border-color: rgba(201,168,76,0.1); }
.content-card.dark-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,0.3); }

.card-visual { height: 180px; position: relative; overflow: hidden; }

.card-pad { padding: 1.75rem 1.5rem; }

.card-tag {
  font-size: 0.58rem; font-weight: 600; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.65rem;
}

/* ════════════════════════════════════════════════════════════
   FOUNDER'S BIO SECTION — Premium Styles
   ════════════════════════════════════════════════════════════ */

/* Hero Intro Block */
.founder-hero {
  position: relative;
  min-height: 52vh;
  padding: var(--nav-h) 4.5rem 4rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: linear-gradient(135deg, #2a1f15 0%, #1a1208 50%, #0d0a05 100%);
  overflow: hidden;
}

.founder-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(201,168,76,0.04) 0%, transparent 60%);
}

.founder-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(201,168,76,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

.founder-hero-content {
  position: relative;
  max-width: 900px;
  z-index: 1;
}

.founder-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
}

.founder-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.founder-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.founder-tagline {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 700px;
}

/* Image + Bio Grid */
.founder-bio-section {
  padding: 6rem 4.5rem;
  background: var(--cream);
}

.founder-bio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.founder-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
}

.founder-image {
  width: 100%;
  /* max-width: 350px; */
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  border: 2px solid var(--gold);
  box-shadow: 
    0 20px 60px rgba(13,27,42,0.15),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.founder-info-strip {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 3rem;
  align-items: center;
  background: var(--white);
  padding: 3rem;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-radius: 4px;
}

.founder-info-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.founder-info-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.founder-age {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.founder-bio-text-wrapper {
  display: flex;
  flex-direction: column;
}

.founder-spouse-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.35rem;
}

.founder-spouse {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.founder-spouse-honor {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-mid);
  font-style: italic;
}

.founder-bio-paragraph {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.founder-bio-paragraph:last-child {
  margin-bottom: 0;
}

/* Business Overview */
.founder-business-section {
  padding: 5rem 4.5rem;
  background: var(--cream);
}

.founder-business-content {
  max-width: 1300px;
  margin: 0 auto;
}

.founder-business-card {
  background: linear-gradient(135deg, #fafaf8 0%, #fcfbf9 100%);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 3.5rem;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.founder-business-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.founder-business-paragraph {
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
}

.founder-business-paragraph:last-child {
  margin-bottom: 0;
}

/* Recognition Banner */
.founder-recognition-banner {
  background: var(--gold);
  padding: 3.5rem 4.5rem;
  margin: 3rem 0;
}

.founder-recognition-content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.founder-recognition-icon {
  font-size: 3.5rem;
  color: var(--navy);
  opacity: 0.4;
  flex-shrink: 0;
}

.founder-recognition-text {
  flex: 1;
}

.founder-recognition-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.founder-recognition-banner p {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(13,27,42,0.85);
}

/* Positions Section */
.founder-positions-section {
  padding: 5rem 4.5rem;
  background: var(--cream);
}

.founder-positions-header {
  max-width: 1300px;
  margin: 0 auto 3rem;
}

.founder-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.founder-positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.founder-position-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 1.75rem;
  transition: all 0.35s ease;
}

.founder-position-card:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.founder-position-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.founder-position-org {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Initiatives Section */
.founder-initiatives-section {
  padding: 5rem 4.5rem;
  background: var(--cream);
}

.founder-initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
}

.founder-init-block {
  background: linear-gradient(135deg, #fafaf8 0%, #fcfbf9 100%);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem;
}

.founder-init-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
  border-bottom: 2px solid rgba(201,168,76,0.25);
  padding-bottom: 1rem;
}

.founder-init-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.founder-init-item {
  padding-left: 0;
}

.founder-init-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}

.founder-init-item-desc {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .founder-bio-grid {
    gap: 2.5rem;
  }

  .founder-positions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .founder-initiatives-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .founder-hero {
    padding: var(--nav-h) 2rem 3rem 2rem;
  }

  .founder-bio-section {
    padding: 4rem 2rem;
  }

  .founder-bio-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .founder-image-container {
    order: 2;
  }

  .founder-business-section {
    padding: 4rem 2rem;
  }

  .founder-business-card {
    padding: 2.5rem;
  }

  .founder-recognition-banner {
    padding: 2.5rem;
  }

  .founder-recognition-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .founder-recognition-icon {
    margin: 0 auto;
  }

  .founder-positions-section {
    padding: 4rem 2rem;
  }

  .founder-positions-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .founder-initiatives-section {
    padding: 4rem 2rem;
  }

  .founder-initiatives-grid {
    grid-template-columns: 1fr;
  }

  .founder-init-block {
    padding: 2rem;
  }
}

.card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500; color: var(--text-dark);
  margin-bottom: 0.6rem; line-height: 1.3;
}
.dark-card .card-title { color: var(--white); }

.card-body {
  font-size: 0.82rem; font-weight: 300; line-height: 1.75;
  color: var(--text-mid);
}
.dark-card .card-body { color: rgba(255,255,255,0.5); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: all 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }
.reveal.visible { opacity: 1; transform: none; }

/* ── BUTTON ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 0.85rem 2rem; cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; text-decoration: none;
  transition: all 0.3s; border: none; outline: none;
}
.btn-outline-gold {
  background: transparent; border: 1px solid var(--gold); color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-gold { background: var(--gold); border: 1px solid var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline-white { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: white; }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  #navbar { padding: 0 2rem; }
  .nav-items { display: none; }
  .hamburger { display: flex; }
  .mega-menu { display: none !important; }
  #nav-overlay { display: none !important; }
  .section-wrap { padding: 4rem 2rem; }
  .footer-main { grid-template-columns: 1fr 1fr; padding: 3rem 2rem; }
  .page-hero { padding: 0 2rem 3.5rem; }
  .card-grid-4, .card-grid-3 { grid-template-columns: repeat(2,1fr); }
  .mega-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .mega-brands-container { gap: 2rem; }
  .mega-brand-link { font-size: 1.15rem; }
}

@media (max-width: 640px) {
  .card-grid-4, .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ── MOBILE NAV ────────────────────────────────────────────── */
#mobile-nav {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(8,16,26,0.98);
  z-index: 1800; overflow-y: auto;
  padding: 2rem;
  flex-direction: column; gap: 0;
}
#mobile-nav.open { display: flex; }

.mobile-nav-link {
  display: block; padding: 1.1rem 0;
  font-size: 0.9rem; font-weight: 400; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.7); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.3s;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--gold); }

.styled-link {
  color: #c9a84c; /* Golden color */
  text-decoration: underline;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
}

.styled-link:hover {
  color: #e0c078; /* Lighter golden on hover */
  text-decoration: none;
}
