/* ═══════════════════════════════════════════════════════════════════
   OORA CAPITAL — Shared Stylesheet
   ═══════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
  color: #1a2c5b;
}

/* ── Reusable typography ── */
.serif { font-family: 'Cormorant Garamond', serif; }
.mono-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #3a5fa8;
}

/* ════════ HERO (main page) ════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100vw;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 64px 48px 56px;
  position: relative;
}

.corner-bracket {
  position: absolute;
  top: 24px; left: 24px;
  width: 22px; height: 22px;
  border-top: 1.5px solid #1a2c5b;
  border-left: 1.5px solid #1a2c5b;
}

.logo-wrap { align-self: flex-start; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; display: block; }
.logo-link { text-decoration: none; display: inline-block; }

.sigil-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0 32px 0;
  position: relative;
  z-index: 1;
}

.label-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: #3a5fa8;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.label-tag::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: #3a5fa8;
}

.headline {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 76px;
  line-height: 1.05;
  color: #1a2c5b;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}
.headline em { font-style: italic; color: #3a5fa8; font-weight: 400; }

/* ── NAV ROW ── */
.nav-row {
  border-top: 1px solid #c9d2e5;
  border-bottom: 1px solid #c9d2e5;
  margin-bottom: 32px;
  max-width: 560px;
  display: flex;
  align-items: stretch;
  position: relative;
}
.nav-item {
  flex: 1;
  text-align: center;
  padding: 22px 8px 14px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: #4a5a7a;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-item:hover { color: #1a2c5b; background: rgba(58,95,168,0.04); }
.nav-item + .nav-item { border-left: 1px solid #c9d2e5; }
.nav-item::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3a5fa8;
}
.nav-item:nth-child(1)::before { background: #7cb8d9; }
.nav-item:nth-child(2)::before { background: #4f8cc4; }
.nav-item:nth-child(3)::before { background: #2f63a8; }
.nav-item:nth-child(4)::before { background: #234a85; }
.nav-item:nth-child(5)::before { background: #16305f; }

.description {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: #4a5a7a;
  max-width: 480px;
}
.description a { color: #3a5fa8; font-weight: 500; text-decoration: none; }
.description a.skinlabs { color: #d65a83; }
.description a.skinlabs:hover { text-decoration: underline; }

.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.investor-rel { display: flex; flex-direction: column; gap: 5px; }
.investor-rel .ir-label {
  font-size: 9px;
  letter-spacing: 0.28em;
  font-weight: 500;
  color: #8a9bc4;
}
.investor-rel a {
  font-size: 11px;
  color: #3a5fa8;
  font-weight: 400;
  text-decoration: none;
}
.founder-block { text-align: right; }
.founder-link { text-decoration: none; display: inline-block; transition: opacity 0.2s ease; }
.founder-link:hover { opacity: 0.75; }
.founder-block .name {
  font-size: 11px;
  letter-spacing: 0.24em;
  font-weight: 500;
  color: #4a5a7a;
  margin-bottom: 6px;
}
.founder-block .title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: #3a5fa8;
  font-weight: 400;
}

/* ── HERO RIGHT (photo panel) ── */
.hero-right { position: relative; overflow: hidden; background: #1a2c5b; }
.hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  filter: none;
}
.badge {
  position: absolute;
  top: 28px; right: 28px;
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.badge .year {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  padding: 8px 18px;
  border-right: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  line-height: 1;
}
.badge .soon {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.95);
  padding: 9px 14px;
  display: flex;
  align-items: center;
  line-height: 1.2;
  max-width: 70px;
}
.quote-card {
  position: absolute;
  bottom: 48px;
  left: 48px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 22px 26px;
  max-width: 280px;
}
.quote-card .qc-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #3a5fa8;
  margin-bottom: 10px;
}
.quote-card .qc-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: #1a2c5b;
  font-weight: 400;
}
.vertical-cities {
  position: absolute;
  right: 12px; bottom: 48px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 8.5px;
  font-weight: 300;
  letter-spacing: 0.55em;
  color: rgba(255,255,255,0.55);
  text-shadow: none;
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.vertical-cities span { display: inline-block; }
.vcity-sep { width: 1px; height: 12px; background: rgba(255,255,255,0.35); display: inline-block; }

/* ════════ EXTENDED SECTIONS (Philosophy, About) ════════ */
.section {
  padding: 120px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: #3a5fa8;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #3a5fa8;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
  color: #1a2c5b;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  max-width: 800px;
}
.section-title em { font-style: italic; color: #3a5fa8; }
.section-body {
  font-size: 16px;
  line-height: 1.85;
  font-weight: 300;
  color: #4a5a7a;
  max-width: 720px;
}
.section-body p + p { margin-top: 1.5em; }

/* Philosophy section — two columns */
.philosophy-section {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  padding: 120px 80px;
}
.philosophy-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-text { max-width: 540px; }
.philosophy-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 360px;
}
.philosophy-sigil {
  width: 340px;
  height: auto;
  opacity: 0.85;
}

/* About / Founders section */
.about-section {
  padding: 120px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.about-section .section-eyebrow.pink {
  color: #d65a83;
}
.about-section .section-eyebrow.pink::before {
  background: #d65a83;
}
.founder-block-row {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.founder-block-row .about-photo { grid-column: 1; }
.founder-block-row .founder-content { grid-column: 2; }
.founder-block-row + .founder-block-row {
  margin-top: 120px;
  padding-top: 120px;
  border-top: 1px solid #eef1f7;
}
.founder-block-row.reverse {
  grid-template-columns: 1fr 380px;
}
.founder-block-row.reverse .about-photo { grid-column: 2; }
.founder-block-row.reverse .founder-content { grid-column: 1; }
.about-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #e8eef7 0%, #c9d6e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid #dde3f0;
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.about-photo .placeholder-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: #8a9bc4;
  text-align: center;
  padding: 20px;
}
.founder-name-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1.15;
  color: #1a2c5b;
  margin-bottom: 32px;
  letter-spacing: -0.005em;
}
.founder-name-title .korean {
  color: #8a9bc4;
  font-style: italic;
  font-weight: 300;
}
.founder-name-title .sep {
  color: #c9d2e5;
  margin: 0 14px;
  font-weight: 300;
}
.founder-content .section-body {
  max-width: 640px;
}

/* LinkedIn button — gold, discreet */
.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
  padding: 9px 16px;
  background: transparent;
  color: #b5965a;
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 600;
  border: 1px solid #b5965a;
  transition: background 0.25s ease, color 0.25s ease;
}
.linkedin-btn svg {
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.linkedin-btn:hover {
  background: #b5965a;
  color: #fff;
}

/* ════════ DIVISION SUB-PAGE LAYOUT ════════ */
.subpage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 56px 24px 40px;
  border-bottom: 1px solid #eef1f7;
  position: relative;
}
.subpage-header .corner-bracket {
  position: absolute;
  top: 24px; left: 24px;
}
.subpage-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.subpage-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: #8a9bc4;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.subpage-nav a:hover { color: #3a5fa8; }
.subpage-nav a.active { color: #1a2c5b; }
.subpage-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1.5px;
  background: #3a5fa8;
}

.subpage-hero {
  display: flex;
  min-height: 70vh;
}
.subpage-hero.flip { flex-direction: row-reverse; }

.subpage-hero-text {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 80px 64px;
}
.subpage-hero-text.text-mid { padding-top: 22vh; }
@media (max-width: 820px) {
  .subpage-hero-text.text-mid { padding-top: 48px; }
}
.subpage-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: #3a5fa8;
  margin-bottom: 20px;
}
.subpage-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 72px;
  line-height: 1.05;
  color: #1a2c5b;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.subpage-title em { font-style: italic; color: #3a5fa8; }
.subpage-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: #4a5a7a;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 480px;
}
.subpage-body {
  font-size: 14px;
  line-height: 1.85;
  font-weight: 300;
  color: #4a5a7a;
  max-width: 520px;
}
.subpage-body p + p { margin-top: 1.5em; }
.subpage-body strong { color: #1a2c5b; font-weight: 500; }

.subpage-hero-photo {
  flex: 1 1 50%;
  min-width: 0;
  position: relative;
  overflow: hidden;
  background: #1a2c5b;
}
.subpage-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.subpage-hero-photo .photo-caption {
  position: absolute;
  bottom: 32px; left: 32px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  max-width: 260px;
}
.subpage-hero-photo .photo-caption .qc-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #3a5fa8;
  margin-bottom: 8px;
}
.subpage-hero-photo .photo-caption .qc-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.45;
  color: #1a2c5b;
}

/* ════════ FOOTER ════════ */
.site-footer {
  background: #0e1b3a;
  color: #c9d2e5;
  padding: 80px 64px 32px;
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .ftr-logo {
  height: 78px;
  width: auto;
  margin-bottom: 24px;
  opacity: 0.96;
  display: block;
}
@media (max-width: 820px) {
  .footer-brand .ftr-logo { height: 62px; }
}
.footer-brand p {
  font-size: 12px;
  line-height: 1.7;
  color: #8a9bc4;
  font-weight: 300;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #fff;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 12px;
  color: #8a9bc4;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s ease;
}
.footer-col a:hover { color: #fff; }
.footer-disclaimer {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  line-height: 1.7;
  color: #6b7a9c;
  font-weight: 300;
}
.footer-disclaimer p + p { margin-top: 12px; }
.footer-bottom {
  max-width: 1400px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #6b7a9c;
  letter-spacing: 0.08em;
  font-weight: 300;
}
.footer-bottom .entities {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  letter-spacing: 0.1em;
}

/* ════════ MOBILE ════════ */
@media (max-width: 820px) {
  html, body { height: auto; }
  body { overflow-x: hidden; overflow-y: auto; }

  /* hero — text first, photo opens up below at natural aspect ratio */
  .hero { grid-template-columns: 1fr; min-height: auto; width: 100%; }
  .hero-left  { order: 1; padding: 36px 28px 40px 28px; }
  .hero-right {
    order: 2;
    width: 100%;
    aspect-ratio: 1139 / 1381;
    height: auto;
    min-height: 0;
  }
  .hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center center; }

  .corner-bracket { top: 16px; left: 16px; }
  .logo-img { height: 44px; }
  .sigil-watermark { width: 280px; opacity: 0.05; }

  .hero-content { padding: 36px 0 24px 0; }
  .label-tag { font-size: 9px; letter-spacing: 0.28em; margin-bottom: 20px; }
  .headline { font-size: 44px; line-height: 1.08; margin-bottom: 32px; }

  .nav-row { max-width: 100%; margin-bottom: 26px; }
  .nav-item {
    font-size: 9px;
    letter-spacing: 0.18em;
    padding: 18px 4px 12px 4px;
  }
  .nav-item::before { width: 6px; height: 6px; top: -3.5px; }

  .description { font-size: 12.5px; line-height: 1.8; max-width: 100%; }

  .hero-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    margin-top: 36px;
  }
  .founder-block { text-align: left; }
  .founder-block .name { font-size: 11px; }
  .founder-block .title { font-size: 15px; }

  .badge { top: 16px; right: 16px; }
  .badge .year { font-size: 14px; padding: 5px 10px; }
  .badge .soon { font-size: 6.5px; padding: 5px 9px; letter-spacing: 0.22em; max-width: 56px; }

  .quote-card {
    top: 44px;
    left: 16px;
    right: auto;
    bottom: auto;
    max-width: 240px;
    padding: 12px 14px;
  }
  .quote-card .qc-label { font-size: 8px; margin-bottom: 6px; letter-spacing: 0.28em; }
  .quote-card .qc-text { font-size: 11.5px; line-height: 1.4; }

  .vertical-cities {
    left: auto; right: 14px; bottom: auto; top: 14px;
    writing-mode: horizontal-tb;
    text-orientation: unset;
    transform: none;
    font-size: 7px;
    font-weight: 300;
    letter-spacing: 0.28em;
    gap: 8px;
    color: rgba(255,255,255,0.55);
    text-align: right;
  }
  .vcity-sep { height: 8px; background: rgba(255,255,255,0.35); }

  /* extended sections */
  .section, .philosophy-section, .about-section {
    padding: 72px 28px;
  }
  .section-title { font-size: 38px; margin-bottom: 28px; }
  .section-body { font-size: 14px; }
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .philosophy-visual { min-height: 240px; }
  .philosophy-sigil { width: 220px; }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-photo { max-width: 320px; margin: 0 auto; }
  .founder-block-row,
  .founder-block-row.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 32px;
  }
  .founder-block-row + .founder-block-row {
    margin-top: 64px;
    padding-top: 64px;
  }
  .founder-block-row .about-photo,
  .founder-block-row.reverse .about-photo,
  .founder-block-row .founder-content,
  .founder-block-row.reverse .founder-content {
    grid-column: 1;
  }
  .about-photo { max-width: 280px; margin: 0; }
  .founder-name-title { font-size: 28px; margin-bottom: 24px; }
  .founder-name-title .sep { margin: 0 10px; }

  /* subpage */
  .subpage-header { padding: 24px 24px; flex-wrap: wrap; gap: 16px; }
  .subpage-nav { gap: 14px; flex-wrap: wrap; }
  .subpage-nav a { font-size: 9px; letter-spacing: 0.18em; }
  .subpage-hero,
  .subpage-hero.flip { flex-direction: column; min-height: auto; }
  .subpage-hero .subpage-hero-text,
  .subpage-hero.flip .subpage-hero-text { padding: 48px 28px; order: 2; flex: 0 0 auto; }
  .subpage-hero .subpage-hero-photo,
  .subpage-hero.flip .subpage-hero-photo {
    order: 1;
    flex: 0 0 auto;
    aspect-ratio: 4 / 5;
  }
  .subpage-title { font-size: 44px; margin-bottom: 24px; }
  .subpage-tagline { font-size: 16px; margin-bottom: 28px; }
  .subpage-body { font-size: 13px; }
  .subpage-hero-photo .photo-caption {
    bottom: 20px; left: 16px;
    padding: 12px 14px;
    max-width: 220px;
  }
  .subpage-hero-photo .photo-caption .qc-label { font-size: 8px; }
  .subpage-hero-photo .photo-caption .qc-text { font-size: 12px; }

  /* footer */
  .site-footer { padding: 56px 28px 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    margin-bottom: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .hero-left { padding: 28px 20px 32px 20px; }
  .headline { font-size: 38px; }
  .section-title { font-size: 32px; }
  .subpage-title { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr; }
}


/* ════════ RESEARCH & THOUGHTS section ════════ */
.research-section {
  padding: 120px 80px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid #eef1f7;
}
.research-section .section-title {
  margin-bottom: 64px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.article-card {
  border-top: 1px solid #c9d2e5;
  padding-top: 24px;
  transition: border-color 0.3s ease;
  cursor: default;
}
.article-card:hover { border-top-color: #3a5fa8; }
.article-date {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: #8a9bc4;
  display: block;
  margin-bottom: 18px;
}
.article-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.2;
  color: #1a2c5b;
  letter-spacing: -0.005em;
  margin-bottom: 14px;
}
.article-card h3 em {
  font-style: italic;
  color: #3a5fa8;
}
.article-card p {
  font-size: 13px;
  line-height: 1.7;
  font-weight: 300;
  color: #4a5a7a;
}

@media (max-width: 820px) {
  .research-section { padding: 72px 28px; }
  .article-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .research-section .section-title { margin-bottom: 40px; }
  .article-card h3 { font-size: 22px; }
}


/* ── Philosophy section: sigil placement ── */
.philosophy-sigil-mobile { display: none; }
@media (max-width: 820px) {
  .philosophy-title-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
  }
  .philosophy-title-row .section-title {
    flex: 1;
    min-width: 0;
  }
  .philosophy-sigil-mobile {
    display: block;
    width: 88px;
    height: auto;
    flex-shrink: 0;
    margin-top: -6px;
    opacity: 0.95;
  }
  .philosophy-visual { display: none; }
}

/* J² Ventures mark — elegant text overlay on Ventures photo */
.j-mark-text {
  position: absolute;
  top: 26px;
  left: 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.01em;
  z-index: 3;
  text-shadow: 0 2px 12px rgba(0,0,0,0.35);
  line-height: 1;
  pointer-events: none;
}
.j-mark-text sup {
  font-size: 0.55em;
  vertical-align: 0.7em;
  font-style: italic;
  font-weight: 300;
  margin-right: 0.04em;
}
@media (max-width: 820px) {
  .j-mark-text {
    top: 16px;
    left: 18px;
    font-size: 20px;
  }
}

/* Ventures photo: show full image with blurred backdrop */
.venture-photo-full { background: #0e1530; }
.venture-photo-full .photo-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(50px) brightness(0.55) saturate(0.85);
  z-index: 0;
  transform: scale(1.15);
}
.venture-photo-full .photo-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.venture-photo-full .photo-caption { z-index: 2; }

/* Caption-top modifier (used on AMT page) */
.subpage-hero-photo .photo-caption.caption-top {
  top: 32px;
  bottom: auto;
}
@media (max-width: 820px) {
  .subpage-hero-photo .photo-caption.caption-top {
    top: 20px;
    bottom: auto;
  }
}


/* ════════ Caption position modifiers ════════ */
.subpage-hero-photo .photo-caption.caption-top-right {
  top: 26px;
  right: 32px;
  left: auto;
  bottom: auto;
}
.subpage-hero-photo .photo-caption.caption-wide {
  max-width: 420px;
}
@media (max-width: 820px) {
  .subpage-hero-photo .photo-caption.caption-top-right {
    top: 20px;
    right: 16px;
    left: auto;
    bottom: auto;
  }
  .subpage-hero-photo .photo-caption.caption-wide {
    max-width: 280px;
  }
}

/* ════════ Capital page: stacked layout (full-width art on top, content below) ════════ */
.subpage-hero.stacked {
  flex-direction: column;
  min-height: auto;
}
.subpage-hero.stacked .subpage-hero-photo {
  order: 1;
  width: 100%;
  height: auto;
  flex: 0 0 auto;
  aspect-ratio: 1778 / 1000;
}
.subpage-hero.stacked .subpage-hero-text {
  order: 2;
  width: 100%;
  flex: 0 0 auto;
  padding: 88px 96px 96px 96px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .subpage-hero.stacked .subpage-hero-photo {
    aspect-ratio: 16 / 10;
  }
  .subpage-hero.stacked .subpage-hero-text {
    padding: 48px 28px;
  }
}

/* ════════ Busan divider band (between founders and research) ════════ */
.busan-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1627 / 967;
  max-height: 720px;
  display: block;
}
.busan-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.busan-divider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(14,21,48,0.05) 0%,
              rgba(14,21,48,0.25) 45%,
              rgba(14,21,48,0.78) 100%);
  pointer-events: none;
  z-index: 1;
}
.busan-overlay-content {
  position: absolute;
  bottom: 64px;
  left: 80px;
  z-index: 2;
  color: #ffffff;
  text-decoration: none;
  display: block;
  max-width: 540px;
  transition: transform 0.4s ease;
}
.busan-overlay-content:hover { transform: translateX(6px); }
.busan-overlay-content .section-eyebrow {
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.busan-overlay-content .section-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.8);
}
.busan-overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 78px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}
.busan-overlay-title em {
  font-style: italic;
  color: rgba(255,255,255,0.82);
}
@media (max-width: 820px) {
  .busan-divider {
    aspect-ratio: 4 / 3;
    max-height: 480px;
  }
  .busan-overlay-content {
    bottom: 32px;
    left: 28px;
    right: 28px;
  }
  .busan-overlay-content .section-eyebrow {
    margin-bottom: 14px;
    font-size: 9.5px;
  }
  .busan-overlay-title { font-size: 44px; }
}

/* Hide the standalone heading inside research-section now that it lives on the busan band */
.research-section .standalone-research-heading { display: none; }


/* Ventures mobile: caption moves to bottom-left (top-right disturbed the harmony) */
@media (max-width: 820px) {
  .venture-photo-full .photo-caption.caption-top-right {
    top: auto;
    right: auto;
    bottom: 20px;
    left: 16px;
  }
}

/* Logo header: 2x larger across landing + subpages */
.logo-img { height: 140px; width: auto; }
.subpage-header .logo-img { height: 120px !important; width: auto; }
@media (max-width: 820px) {
  .logo-img { height: 96px; }
  .subpage-header .logo-img { height: 88px !important; }
}

/* ════════ RESEARCH page: text overlays the background image ════════ */
.research-hero {
  position: relative;
  width: 100%;
  min-height: 70vh;
  overflow: hidden;
  background: #0e1530;
}
.research-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.85;
}
.research-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
              rgba(14,21,48,0.20) 0%,
              rgba(14,21,48,0.40) 50%,
              rgba(14,21,48,0.78) 100%);
  z-index: 1;
  pointer-events: none;
}
.research-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 130px 80px 110px;
  color: #ffffff;
}
.research-hero-content .subpage-eyebrow {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}
.research-hero-content .subpage-eyebrow::before {
  background: rgba(255,255,255,0.7);
}
.research-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 76px;
  line-height: 1.02;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.research-hero-content h1 em {
  font-style: italic;
  color: rgba(255,255,255,0.78);
}
.research-hero-content p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  max-width: 640px;
}
@media (max-width: 820px) {
  .research-hero { min-height: 60vh; }
  .research-hero-content {
    padding: 60px 28px 72px;
  }
  .research-hero-content h1 { font-size: 44px; }
  .research-hero-content p { font-size: 14px; }
}

.research-articles {
  padding: 100px 80px 140px;
  max-width: 1400px;
  margin: 0 auto;
  background: #ffffff;
}
@media (max-width: 820px) {
  .research-articles { padding: 60px 28px 80px; }
}
