/* ============================================
   INDILEAP SERVICES — STYLESHEET
   Color Palette:
   --navy:    #1B2A4A  (logo primary)
   --navy-dk: #0F1C30  (deeper navy)
   --navy-lt: #2C4270  (lighter navy)
   --gold:    #C8A96E  (prestige accent)
   --white:   #FFFFFF
   --offwhite:#F8F7F4
   --muted:   #8A96A8
   ============================================ */

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

:root {
  --navy:    #1B2A4A;
  --navy-dk: #0F1C30;
  --navy-lt: #2C4270;
  --gold:    #C8A96E;
  --gold-lt: #E8D4A8;
  --white:   #FFFFFF;
  --offwhite:#F8F7F4;
  --muted:   #8A96A8;
  --text:    #1B2A4A;
  --text-lt: #4A5568;
  --radius:  4px;
  --shadow:  0 4px 24px rgba(27,42,74,0.10);
  --shadow-lg: 0 12px 48px rgba(27,42,74,0.18);
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--offwhite);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.3rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--text-lt); line-height: 1.75; }
a  { text-decoration: none; color: var(--gold); transition: color var(--transition); }
a:hover { color: var(--navy); }
address { font-style: normal; line-height: 1.85; color: var(--text-lt); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dk);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--gold);
}
.section-label.light { color: var(--gold-lt); border-color: var(--gold-lt); }
.section-title { margin-bottom: 1.5rem; }
.section-title.centered { text-align: center; }
.section-title.light { color: var(--white); }

/* ============ NAV ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(248,247,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,42,74,0.08);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }

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

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid rgba(27,42,74,0.08);
}
.mobile-menu a {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(27,42,74,0.06);
}
.mobile-menu.open { display: flex; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy) 55%, var(--navy-lt) 100%);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0; height: 80px;
  background: var(--offwhite);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-bg-mark {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(12rem, 22vw, 22rem);
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-accent { color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero visual cards */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack {
  position: relative;
  width: 260px;
  height: 260px;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,169,110,0.3);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform var(--transition);
}
.hero-card:hover { transform: translateY(-4px) scale(1.02); }
.card-icon { font-size: 2rem; }
.card-label { font-size: 0.85rem; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.04em; }
.card-1 { top: 0; left: 0; width: 160px; }
.card-2 { top: 40px; right: 0; width: 150px; }
.card-3 { bottom: 0; left: 20px; width: 170px; }

/* ============ ABOUT ============ */
.about {
  padding: 7rem 0;
  background: var(--offwhite);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p { margin-bottom: 1.25rem; }
.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(27,42,74,0.12);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-desc {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-badge {
  width: 300px; height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-lt) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(27,42,74,0.25), 0 0 0 1px rgba(200,169,110,0.3);
  position: relative;
}
.about-badge::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(200,169,110,0.35);
  animation: rotateSlow 20s linear infinite;
}
@keyframes rotateSlow { to { transform: rotate(360deg); } }
.badge-inner { padding: 2rem; }
.badge-logo { width: 180px; height: auto; filter: brightness(0) invert(1); }

/* ============ JOURNEY ============ */
.journey {
  padding: 7rem 0;
  background: var(--navy-dk);
  position: relative;
  overflow: hidden;
}
.journey::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 80px;
  background: var(--offwhite);
  clip-path: ellipse(55% 100% at 50% 0%);
}
.journey::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.journey .container { position: relative; z-index: 1; padding-top: 3rem; }
.journey .section-label { color: var(--gold-lt); border-color: var(--gold-lt); }
.journey-header { margin-bottom: 3.5rem; }
.journey-header .section-title { color: var(--white); }
.journey-accent { color: var(--gold); }
.journey-intro {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 0.5rem;
}

.journey-story {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: start;
}
.journey-text p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.4rem;
  font-size: 0.975rem;
  line-height: 1.85;
}
.journey-lead {
  font-size: 1.05rem !important;
  color: rgba(255,255,255,0.85) !important;
}
.journey-text strong { color: var(--gold-lt); font-weight: 600; }
.journey-text em { color: rgba(255,255,255,0.9); font-style: italic; }
.inline-link {
  color: var(--gold);
  border-bottom: 1px solid rgba(200,169,110,0.4);
  transition: color var(--transition), border-color var(--transition);
}
.inline-link:hover { color: var(--white); border-color: var(--white); }

.journey-quote {
  border-left: 3px solid var(--gold);
  margin: 2.25rem 0;
  padding: 1.25rem 1.75rem;
  background: rgba(200,169,110,0.07);
  border-radius: 0 8px 8px 0;
  position: relative;
}
.quote-mark {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 0.75rem;
}
.journey-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.quote-attribution {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-top: 1rem;
}

/* Founders */
.journey-founders {
  position: sticky;
  top: 100px;
}
.founders-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(200,169,110,0.3);
}
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.founder-card {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  transition: background var(--transition), border-color var(--transition);
}
.founder-card:hover {
  background: rgba(200,169,110,0.07);
  border-color: rgba(200,169,110,0.4);
}
.founder-photo-wrap {
  position: relative;
  width: 140px;
  height: 140px;
  margin: 0 auto 1rem;
}
.founder-photo-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-lt) 0%, var(--navy) 100%);
  border: 2px solid rgba(200,169,110,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  position: absolute;
  top: 0; left: 0;
}
.founder-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(200,169,110,0.4);
  position: absolute;
  top: 0; left: 0;
  background: var(--navy);
}
.founder-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}
.founder-role {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.founders-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

/* ============ PORTFOLIO ============ */
.portfolio {
  padding: 7rem 0;
  background: var(--white);
}
.ventures-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}
.venture-card {
  background: var(--offwhite);
  border: 1px solid rgba(27,42,74,0.1);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.venture-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.venture-card.featured {
  background: linear-gradient(145deg, var(--navy-dk) 0%, var(--navy) 100%);
  border-color: rgba(200,169,110,0.4);
}
.venture-card.future {
  background: var(--offwhite);
  border: 2px dashed rgba(27,42,74,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.venture-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy-dk);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.venture-icon-wrap { margin-bottom: 1.25rem; }
.venture-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px; height: 60px;
  background: rgba(200,169,110,0.15);
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.venture-name {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.venture-card.future .venture-name { color: var(--navy); }
.venture-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold-lt);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.venture-card.future .venture-tagline { color: var(--muted); }
.venture-desc {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
.venture-card.future .venture-desc { color: var(--text-lt); }
.venture-features {
  list-style: none;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}
.venture-features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding-left: 1.25rem;
  position: relative;
}
.venture-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.venture-cta { margin-top: auto; }
.venture-coming-soon {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2rem;
  padding: 0.75rem 1.25rem;
  border: 1px dashed var(--muted);
  border-radius: var(--radius);
  display: inline-block;
}

/* ============ VALUES ============ */
.values {
  padding: 7rem 0;
  background: linear-gradient(160deg, var(--navy-dk) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.values-bg-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.values .container { position: relative; z-index: 1; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-item {
  padding: 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.2);
  border-radius: 8px;
  transition: background var(--transition), border-color var(--transition);
}
.value-item:hover {
  background: rgba(200,169,110,0.08);
  border-color: rgba(200,169,110,0.5);
}
.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.value-item h3 {
  color: var(--white);
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}
.value-item p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ============ CONTACT ============ */
.contact {
  padding: 7rem 0;
  background: var(--offwhite);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}
.contact-block {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.5rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact-block h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.contact-block a { color: var(--gold); }
.contact-block a:hover { color: var(--navy); }

.contact-map-placeholder {
  background: linear-gradient(135deg, var(--navy-dk) 0%, var(--navy-lt) 100%);
  border-radius: 12px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.map-inner { text-align: center; }
.map-pin { font-size: 3rem; margin-bottom: 1rem; }
.map-inner p { color: rgba(255,255,255,0.9); font-size: 1.1rem; font-weight: 500; margin-bottom: 0.25rem; }
.map-sub { color: rgba(255,255,255,0.55) !important; font-size: 0.85rem !important; margin-bottom: 2rem !important; }
.map-btn {
  border-color: rgba(200,169,110,0.6) !important;
  color: var(--gold) !important;
}
.map-btn:hover {
  background: var(--gold) !important;
  color: var(--navy-dk) !important;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-dk);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo { height: 44px; width: auto; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.875rem; line-height: 1.75; }
.footer-links h5 {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  padding: 0.35rem 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { font-style: italic; }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .ventures-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { grid-template-columns: 1fr; padding: 4rem 1.5rem 7rem; gap: 3rem; }
  .hero-visual { display: none; }
  .hero-bg-mark { font-size: 8rem; right: -1rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { display: none; }
  .about-stats { gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .venture-features { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .container { padding: 0 1.25rem; }
  .about { padding: 5rem 0; }
  .portfolio { padding: 5rem 0; }
  .values { padding: 5rem 0; }
  .contact { padding: 5rem 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ VALUE QUOTE ============ */
.value-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-lt);
  line-height: 1.6;
  margin-bottom: 0.85rem;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(200,169,110,0.4);
}

/* ============ JOURNEY RESPONSIVE ============ */
@media (max-width: 900px) {
  .journey-story { grid-template-columns: 1fr; }
  .journey-founders { position: static; margin-top: 3rem; }
  .founders-grid { grid-template-columns: 1fr 1fr; max-width: 360px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}
