@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url("/assets/cormorant-garamond-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2122;
}
@font-face {
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/eb-garamond-latin.woff2") format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2122;
}

:root {
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --navy: #14213d;
  --navy-dark: #0b1628;
  --navy-mid: #1e2f50;
  --gold: #c9a84c;
  --gold-light: #e2c97e;
  --gold-dark: #a8883a;
  --cream: #f8f5ef;
  --cream-dark: #ede9e1;
  --text: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #7a7a7a;
  --white: #ffffff;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
#nav-root, #page-root, #footer-root { display: contents; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

.grid-2        { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.grid-2-gap    { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3        { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.grid-4        { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.grid-5        { display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.grid-contact  { display: grid; grid-template-columns: 1fr 420px; gap: 80px; }
.grid-focus    { display: grid; grid-template-columns: 320px 1fr; gap: 48px; }
.section-pad   { padding: 100px 60px; }
.hero-pad      { padding: 160px 60px 120px; }
.stats-bar     { display: flex; gap: 48px; }
.hero-bottom   {  }

.nav-links         { display: flex; gap: 28px; align-items: center; }
.nav-hamburger     { display: none; }
.nav-mobile-menu   { display: none; }

@media (max-width: 1100px) {
  .nav-logo-text { display: none; }
}
@media (max-width: 1024px) {
  .grid-2       { grid-template-columns: 1fr; gap: 48px; }
  .grid-2-gap   { grid-template-columns: 1fr; gap: 16px; }
  .grid-3       { grid-template-columns: 1fr 1fr; }
  .grid-4       { grid-template-columns: 1fr 1fr; }
  .grid-5       { grid-template-columns: 1fr 1fr; }
  .grid-contact { grid-template-columns: 1fr; gap: 48px; }
  .grid-focus   { grid-template-columns: 1fr; gap: 24px; }
  .section-pad  { padding: 72px 40px; }
  .hero-pad     { padding: 140px 40px 100px; }
  .hero-stats   { gap: 32px; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .nav-links                 { display: none; }
  .nav-hamburger             { display: flex; }
  .nav-mobile-menu.open      { display: flex; }
  .grid-3                    { grid-template-columns: 1fr; }
  .grid-4                    { grid-template-columns: 1fr; }
  .grid-5                    { grid-template-columns: 1fr 1fr; }
  .section-pad               { padding: 56px 20px; }
  .hero-pad                  { padding: 120px 20px 80px; }
  .hero-stats                { gap: 20px; }
  .stats-bar                 { flex-direction: column; gap: 20px; }
  .focus-tabs                { overflow-x: auto; white-space: nowrap; }
  .focus-tabs button         { flex: 0 0 auto; min-width: 180px; }
  .form-grid                 { grid-template-columns: 1fr !important; }
  .footer-grid               { grid-template-columns: 1fr !important; gap: 32px !important; }
  .footer-bottom             { flex-direction: column; gap: 12px; text-align: center; }
  .hero-btns, .cta-btns      { flex-direction: column; }
  h1                         { font-size: 42px !important; }
  h2                         { font-size: 32px !important; }
}
@media (max-width: 480px) {
  .grid-5 { grid-template-columns: 1fr; }
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
.dlg-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease; padding: 0 40px;
  background: transparent; border-bottom: 1px solid transparent;
}
.dlg-nav--solid { background: rgba(11,22,40,0.97); }
.dlg-nav--glass { backdrop-filter: blur(12px); border-bottom-color: rgba(201,168,76,0.2); }
.dlg-nav__inner {
  max-width: 1340px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.dlg-nav__logo { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.dlg-nav__logo-img { height: 56px; width: auto; object-fit: contain; background: #fff; padding: 4px; }
.dlg-nav__logo-divider { border-left: 1px solid rgba(201,168,76,0.4); padding-left: 14px; }
.dlg-nav__logo-name {
  font-family: var(--font-serif); font-size: 18px; font-weight: 700;
  color: #fff; letter-spacing: 0.12em; display: block;
}
.dlg-nav__logo-sub {
  font-size: 9px; color: var(--gold); letter-spacing: 0.18em;
  font-weight: 500; text-transform: uppercase; margin-top: 2px; display: block;
}
.dlg-nav__link {
  background: none; border: none; cursor: pointer; font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.82);
  padding: 4px 0; border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s; font-family: inherit;
}
.dlg-nav__link:hover:not(.dlg-nav__link--active) { color: #fff; }
.dlg-nav__link--active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-hamburger {
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.dlg-nav__bar { width: 24px; height: 2px; background: var(--gold); transition: all 0.25s; }
.dlg-nav__cta {
  background: var(--gold); border: none; cursor: pointer; color: var(--navy-dark);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 11px 22px; transition: background 0.25s; font-family: inherit;
}
.dlg-nav__cta:hover { background: var(--gold-light); }
.nav-mobile-menu {
  position: fixed; top: 80px; left: 0; right: 0; z-index: 999;
  background: rgba(11,22,40,0.98); flex-direction: column;
  padding: 16px 0 24px; border-bottom: 1px solid rgba(201,168,76,0.2);
}
.dlg-nav__mobile-link {
  background: none; border: none; cursor: pointer; font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.82);
  padding: 14px 32px; text-align: left; border-left: 3px solid transparent;
  transition: all 0.2s; font-family: inherit; width: 100%;
}
.dlg-nav__mobile-link--active { color: var(--gold); border-left-color: var(--gold); }

/* ─── GOLD DIVIDER ───────────────────────────────────────────────────────── */
.gold-divider { display: flex; align-items: center; gap: 16px; }
.gold-divider__line-l { flex: 1; height: 1px; background: linear-gradient(to right, transparent, var(--gold)); }
.gold-divider__line-r { flex: 1; height: 1px; background: linear-gradient(to left, transparent, var(--gold)); }
.gold-divider__diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }

/* ─── SECTION LABEL ──────────────────────────────────────────────────────── */
.section-label {
  font-size: 10px; letter-spacing: 0.28em; font-weight: 600;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px;
}
.section-label--light { color: var(--gold); }

/* ─── PAGE HERO ──────────────────────────────────────────────────────────── */
.page-hero { position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.22); }
.page-hero__gradient { position: absolute; inset: 0; background: linear-gradient(to right, rgba(11,22,40,0.95) 40%, transparent); }
.page-hero__accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
}
.page-hero__content { position: relative; z-index: 1; max-width: 1300px; margin: 0 auto; padding: 0 60px 72px; width: 100%; }
.page-hero__title { font-size: clamp(40px, 5vw, 64px); color: #fff; font-weight: 600; margin-bottom: 16px; }
.page-hero__subtitle { font-size: 16px; color: rgba(255,255,255,0.7); max-width: 560px; margin-top: 24px; line-height: 1.75; }

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold); border: none; cursor: pointer; color: var(--navy-dark);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 36px; transition: all 0.25s; font-family: inherit;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; border: 1px solid var(--navy); cursor: pointer; color: var(--navy);
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 16px 36px; transition: all 0.25s; font-family: inherit;
}
.btn-outline:hover { background: var(--navy); color: var(--gold); }
.btn-outline--light { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn-outline--light:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.dlg-footer { background: var(--navy-dark); color: rgba(255,255,255,0.6); padding: 64px 60px 32px; }
.dlg-footer__inner { max-width: 1300px; margin: 0 auto; }
.dlg-footer__logo { height: 64px; object-fit: contain; background: #fff; padding: 6px; margin-bottom: 20px; display: block; }
.dlg-footer__desc { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.5); max-width: 360px; }
.dlg-footer__rule { height: 1px; background: rgba(201,168,76,0.2); margin-top: 28px; margin-bottom: 20px; }
.dlg-footer__platform { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.18em; text-transform: uppercase; }
.dlg-footer__col-title { font-size: 10px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-bottom: 20px; }
.dlg-footer__col-item { margin-bottom: 10px; }
.dlg-footer__col-link {
  background: none; border: none; font-size: 13px; color: rgba(255,255,255,0.5);
  padding: 0; text-align: left; transition: color 0.2s; font-family: inherit;
}
.dlg-footer__col-link--clickable { cursor: pointer; }
.dlg-footer__col-link--clickable:hover { color: rgba(255,255,255,0.85); }
.dlg-footer__col-link--static { cursor: default; }

/* ─── HOME: HERO ─────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.32); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,22,40,0.88) 0%, rgba(20,33,61,0.5) 60%, transparent 100%);
}
.hero__accent {
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; width: 100%; }
.hero__title { font-size: clamp(42px, 5vw, 76px); color: #fff; font-weight: 600; max-width: 880px; line-height: 1.1; margin-bottom: 28px; }
.hero__title-accent { color: var(--gold); }
.hero__desc { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 720px; line-height: 1.85; margin-bottom: 44px; font-weight: 400; letter-spacing: 0.025em; }
.hero-stats {
  padding-top: 36px;
}
.stat-item { border-left: 1px solid rgba(201,168,76,0.4); padding-left: 28px; padding-right: 16px; }
.stat-value { font-size: 40px; font-family: var(--font-serif); color: var(--gold); font-weight: 600; line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 0.16em; text-transform: uppercase; margin-top: 10px; }

/* ─── HOME: SUBTEXT SECTION ──────────────────────────────────────────────── */
.home-subtext { background: #fff; padding: 120px 60px; }
.home-subtext__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.home-subtext__title { font-size: 42px; color: var(--navy); margin-bottom: 28px; line-height: 1.25; }
.home-subtext__body { font-size: 18px; color: var(--text-mid); line-height: 1.85; max-width: 760px; margin: 0 auto; }
.home-subtext__quote { font-family: var(--font-serif); font-size: 24px; color: var(--navy); font-style: italic; line-height: 1.5; max-width: 720px; margin: 40px auto 0; }

/* ─── SHARED SECTION UTILITIES ───────────────────────────────────────────── */
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header__title-lg { font-size: 44px; color: #fff; margin-bottom: 16px; }
.section-header__title-navy { font-size: 44px; color: var(--navy); margin-bottom: 16px; }
.section-header__body-light { font-size: 16px; color: rgba(255,255,255,0.62); max-width: 640px; margin: 24px auto 0; line-height: 1.85; }

/* ─── CARD: GOLD TOP BORDER ──────────────────────────────────────────────── */
.card-gold-top { border-top: 3px solid var(--gold); }
.card-gold-top-2 { border-top: 2px solid var(--gold); }

/* ─── "WHAT DLG CAPITAL IS" ──────────────────────────────────────────────── */
.dlg-what__img { width: 100%; height: 520px; object-fit: cover; display: block; }
.dlg-what__img-wrap { position: relative; }
.dlg-what__badge-bottom {
  position: absolute; bottom: -24px; left: -24px;
  background: var(--navy); color: #fff; padding: 28px 32px; max-width: 280px;
}
.dlg-what__badge-top {
  position: absolute; top: -16px; right: -16px;
  background: var(--gold); color: var(--navy-dark); padding: 18px 22px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
}
.dlg-what__badge-label { font-size: 10px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.dlg-what__badge-text { font-family: var(--font-serif); font-size: 22px; color: #fff; font-weight: 600; line-height: 1.35; }
.dlg-what__points { display: flex; flex-direction: column; gap: 12px; }
.dlg-what__point { display: flex; gap: 14px; align-items: center; padding: 14px 18px; background: #fff; border-left: 3px solid var(--gold); }
.dlg-what__point-diamond { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.dlg-what__point-text { font-size: 14px; color: var(--navy); font-weight: 500; letter-spacing: 0.04em; }

/* ─── STRUCTURAL POSITION CARDS ──────────────────────────────────────────── */
.struct-card { padding: 48px 36px; border-top: 3px solid var(--gold); }
.struct-card--highlight { background: var(--gold); }
.struct-card--regular { background: rgba(255,255,255,0.03); }
.struct-card__num { font-size: 64px; font-family: var(--font-serif); font-weight: 600; line-height: 1; margin-bottom: 16px; }
.struct-card--highlight .struct-card__num { color: rgba(11,22,40,0.18); }
.struct-card--regular .struct-card__num { color: rgba(201,168,76,0.3); }
.struct-card__role { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.struct-card--highlight .struct-card__role { color: var(--navy-dark); }
.struct-card--regular .struct-card__role { color: var(--gold); }
.struct-card__name { font-size: 26px; font-weight: 600; margin-bottom: 16px; }
.struct-card--highlight .struct-card__name { color: var(--navy-dark); }
.struct-card--regular .struct-card__name { color: #fff; }
.struct-card__rule { height: 1px; margin-bottom: 16px; width: 40px; }
.struct-card--highlight .struct-card__rule { background: rgba(11,22,40,0.2); }
.struct-card--regular .struct-card__rule { background: rgba(255,255,255,0.15); }
.struct-card__desc { font-size: 14px; line-height: 1.8; }
.struct-card--highlight .struct-card__desc { color: rgba(11,22,40,0.8); }
.struct-card--regular .struct-card__desc { color: rgba(255,255,255,0.7); }

/* ─── WHY THIS MODEL ─────────────────────────────────────────────────────── */
.why__img { width: 100%; height: 540px; object-fit: cover; display: block; }
.why__img-badge {
  position: absolute; top: 32px; left: 32px;
  background: rgba(11,22,40,0.92); color: #fff; padding: 20px 24px; max-width: 260px;
  border-left: 3px solid var(--gold);
}
.why__img-badge-tag { font-size: 9px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.why__img-badge-text { font-family: var(--font-serif); font-size: 18px; color: #fff; font-weight: 600; line-height: 1.4; }
.why__points { display: flex; flex-direction: column; gap: 16px; }
.why__point { display: flex; gap: 20px; align-items: flex-start; padding: 4px 0; }
.why__point-num { font-size: 13px; font-family: var(--font-serif); font-weight: 700; color: var(--gold-dark); min-width: 28px; padding-top: 2px; }
.why__point-title { font-size: 16px; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.why__point-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* ─── CAPITAL MODEL CALLOUT ──────────────────────────────────────────────── */
.capital-callout { position: relative; background-size: cover; background-position: center; background-attachment: fixed; }
.capital-callout__overlay { position: absolute; inset: 0; background: rgba(11,22,40,0.92); }
.capital-callout__inner { position: relative; z-index: 1; max-width: 1300px; margin: 0 auto; }
.capital-callout__title { font-size: 48px; color: #fff; margin-bottom: 16px; }
.capital-card { background: rgba(255,255,255,0.04); padding: 44px 32px; border-top: 2px solid var(--gold); }
.capital-card__num { font-size: 44px; font-family: var(--font-serif); color: var(--gold); font-weight: 600; line-height: 1; margin-bottom: 20px; }
.capital-card__title { font-size: 22px; color: #fff; margin-bottom: 14px; }
.capital-card__rule { height: 1px; background: rgba(255,255,255,0.18); margin-bottom: 16px; width: 40px; }
.capital-card__desc { font-size: 14px; color: rgba(255,255,255,0.72); line-height: 1.8; }

/* ─── FOCUS CARDS (HOME PREVIEW) ─────────────────────────────────────────── */
.focus-card { position: relative; overflow: hidden; min-height: 260px; cursor: pointer; }
.focus-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.focus-card:hover .focus-card__img { transform: scale(1.06); }
.focus-card__overlay { position: absolute; inset: 0; background: rgba(11,22,40,0.78); transition: background 0.3s; }
.focus-card:hover .focus-card__overlay { background: rgba(11,22,40,0.55); }
.focus-card__bar { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gold); }
.focus-card__content { position: relative; z-index: 1; padding: 28px 22px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 260px; }
.focus-card__num { font-size: 9px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.focus-card__name { font-size: 19px; font-family: var(--font-serif); font-weight: 600; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.focus-card__sub { font-size: 12px; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; }

/* ─── APPROACH PREVIEW (HOME) ────────────────────────────────────────────── */
.approach-steps { display: flex; align-items: stretch; justify-content: center; gap: 24px; flex-wrap: wrap; }
.approach-step { background: var(--cream); padding: 40px 36px; flex: 1 1 240px; max-width: 320px; border-top: 3px solid var(--gold); }
.approach-step__num { font-size: 52px; font-family: var(--font-serif); color: var(--gold-dark); font-weight: 600; line-height: 1; margin-bottom: 16px; }
.approach-step__name { font-size: 26px; color: var(--navy); margin-bottom: 12px; }
.approach-step__rule { height: 1px; background: var(--cream-dark); margin-bottom: 16px; width: 40px; }
.approach-step__desc { font-size: 14px; color: var(--text-mid); line-height: 1.8; }
.approach-arrow { display: flex; align-items: center; color: var(--gold); font-size: 22px; }

/* ─── STRATEGY PAGE ──────────────────────────────────────────────────────── */
.strategy-shift { display: flex; align-items: center; gap: 16px; padding: 18px 22px; background: #fff; border-left: 3px solid var(--gold); }
.strategy-shift__num { font-family: var(--font-serif); font-size: 22px; color: var(--gold-dark); font-weight: 700; }
.strategy-shift__text { font-size: 15px; color: var(--navy); }
.strategy-shift__text strong { font-weight: 600; }
.strategy-shift__text span { color: var(--text-mid); }
.strategy-demand { background: var(--navy); padding: 48px 44px; color: #fff; }
.strategy-demand__items { display: flex; flex-direction: column; }
.strategy-demand__item { padding: 16px 0; display: flex; align-items: center; gap: 16px; }
.strategy-demand__item--bordered { border-bottom: 1px solid rgba(255,255,255,0.08); }
.strategy-demand__bullet { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.strategy-demand__text { font-size: 15px; color: rgba(255,255,255,0.85); }
.strategy-demand__rule { height: 1px; background: var(--gold); width: 80px; margin-bottom: 28px; }
.strategy-demand__cta { margin-top: 32px; padding: 20px 24px; background: rgba(201,168,76,0.12); border-left: 3px solid var(--gold); }
.strategy-demand__quote { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--gold-light); line-height: 1.5; }
.strategy-adv__img { width: 100%; height: 540px; object-fit: cover; display: block; }
.strategy-adv__caption { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(11,22,40,0.92); padding: 24px 28px; border-left: 3px solid var(--gold); }
.strategy-adv__caption-tag { font-size: 10px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.strategy-adv__caption-text { font-family: var(--font-serif); font-size: 22px; color: #fff; font-weight: 600; line-height: 1.35; }
.strategy-criterion { background: rgba(255,255,255,0.04); padding: 44px 36px; border-top: 2px solid var(--gold); }
.strategy-criterion__icon { font-size: 36px; color: var(--gold); margin-bottom: 20px; line-height: 1; }
.strategy-criterion__title { font-size: 26px; color: #fff; margin-bottom: 12px; }
.strategy-criterion__rule { height: 1px; background: rgba(255,255,255,0.15); margin-bottom: 16px; width: 40px; }
.strategy-criterion__desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.8; }
.strategy-op-item { padding: 20px 24px; background: var(--cream); display: flex; gap: 18px; align-items: flex-start; }
.strategy-op-icon { width: 32px; height: 32px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-serif); font-size: 14px; color: var(--gold); font-weight: 600; }
.strategy-op-title { font-size: 16px; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.strategy-op-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.strategy-quote-block { margin-top: 56px; padding: 32px 40px; background: rgba(201,168,76,0.1); border-left: 3px solid var(--gold); max-width: 900px; margin-left: auto; margin-right: auto; }
.strategy-quote-block__text { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--gold-light); line-height: 1.55; }

/* ─── FOCUS PAGE ─────────────────────────────────────────────────────────── */
.focus-tabs-bar { display: flex; gap: 0; margin-bottom: 0; border-bottom: 1px solid var(--cream-dark); overflow-x: auto; }
.focus-tab {
  flex: 1; min-width: 180px; background: transparent; border: none; cursor: pointer;
  padding: 24px 20px; text-align: left; border-bottom: 3px solid transparent;
  transition: all 0.25s; font-family: inherit;
}
.focus-tab--active { background: var(--navy); border-bottom-color: var(--gold); }
.focus-tab__num { font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.focus-tab--active .focus-tab__num { color: var(--gold); }
.focus-tab:not(.focus-tab--active) .focus-tab__num { color: var(--text-light); }
.focus-tab__name { font-size: 15px; font-family: var(--font-serif); font-weight: 600; }
.focus-tab--active .focus-tab__name { color: #fff; }
.focus-tab:not(.focus-tab--active) .focus-tab__name { color: var(--navy); }
.focus-detail { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.focus-detail__left { padding: 56px 56px 56px 0; }
.focus-detail__tag { font-size: 10px; color: var(--gold-dark); letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
.focus-detail__title { font-size: 38px; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.focus-detail__summary { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; font-weight: 500; }
.focus-detail__body { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 28px; }
.focus-detail__themes-label { font-size: 10px; color: var(--gold-dark); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
.focus-detail__themes { display: flex; flex-wrap: wrap; gap: 8px; }
.focus-theme-tag { padding: 8px 14px; font-size: 11px; background: var(--cream); color: var(--navy); letter-spacing: 0.1em; font-weight: 600; border: 1px solid var(--cream-dark); }
.focus-detail__right { position: relative; min-height: 460px; }
.focus-detail__img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.focus-detail__img-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11,22,40,0.5) 0%, transparent 50%); }
.focus-active-badge { position: absolute; top: 28px; right: 28px; background: var(--gold); color: var(--navy-dark); padding: 12px 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; }

/* ─── APPROACH PAGE ──────────────────────────────────────────────────────── */
.phase-tabs { display: flex; align-items: stretch; gap: 0; margin-bottom: 0; flex-wrap: wrap; }
.phase-tab {
  flex: 1 1 240px; min-width: 220px; border: none; cursor: pointer;
  padding: 36px 32px; text-align: left; border-top: 3px solid transparent;
  transition: all 0.25s; font-family: inherit;
}
.phase-tab--active { background: var(--navy); border-top-color: var(--gold); }
.phase-tab:not(.phase-tab--active) { background: var(--cream); }
.phase-tab__num { font-size: 56px; font-family: var(--font-serif); font-weight: 600; line-height: 1; margin-bottom: 14px; }
.phase-tab--active .phase-tab__num { color: var(--gold); opacity: 1; }
.phase-tab:not(.phase-tab--active) .phase-tab__num { color: var(--gold-dark); opacity: 0.4; }
.phase-tab__tag { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.phase-tab--active .phase-tab__tag { color: var(--gold); }
.phase-tab:not(.phase-tab--active) .phase-tab__tag { color: var(--text-light); }
.phase-tab__name { font-size: 24px; font-family: var(--font-serif); font-weight: 600; }
.phase-tab--active .phase-tab__name { color: #fff; }
.phase-tab:not(.phase-tab--active) .phase-tab__name { color: var(--navy); }
.phase-arrow { display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--gold); padding: 0 12px; }
.phase-detail { background: var(--navy); color: #fff; padding: 56px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; }
.phase-detail__title { font-size: 36px; color: #fff; margin-bottom: 20px; }
.phase-detail__rule { height: 1px; background: var(--gold); width: 80px; margin-bottom: 28px; }
.phase-detail__desc { font-size: 16px; color: rgba(255,255,255,0.78); line-height: 1.85; }
.phase-nav { display: flex; gap: 16px; margin-top: 40px; }
.phase-nav__btn {
  background: none; border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  color: #fff; padding: 10px 22px; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; font-family: inherit; transition: all 0.2s;
}
.phase-nav__btn--disabled { cursor: not-allowed; color: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.2); }
.phase-nav__btn--next { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); font-weight: 600; }
.phase-nav__btn--next-disabled { background: none; border-color: var(--gold); cursor: not-allowed; color: rgba(255,255,255,0.2); }
.phase-points { display: flex; flex-direction: column; gap: 16px; }
.phase-point { padding: 22px 26px; background: rgba(255,255,255,0.04); border-left: 3px solid var(--gold); }
.phase-point__num { font-size: 11px; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.phase-point__title { font-size: 17px; color: #fff; font-weight: 600; margin-bottom: 8px; font-family: var(--font-serif); }
.phase-point__desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; }
.time-horizon-item { padding: 20px 24px; background: rgba(201,168,76,0.08); border-left: 2px solid var(--gold); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.time-horizon-item__value { font-family: var(--font-serif); font-size: 22px; color: var(--gold-light); font-weight: 600; }
.time-horizon-item__desc { font-size: 13px; color: rgba(255,255,255,0.7); text-align: right; max-width: 240px; line-height: 1.6; }

/* ─── PORTFOLIO PAGE ─────────────────────────────────────────────────────── */
.portfolio-card { position: relative; overflow: hidden; background: var(--cream); min-height: 380px; }
.portfolio-card__img-wrap { position: relative; height: 200px; overflow: hidden; }
.portfolio-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.5); }
.portfolio-card:hover .portfolio-card__img { transform: scale(1.06); }
.portfolio-card__img-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,22,40,0.6) 0%, rgba(11,22,40,0.85) 100%); }
.portfolio-card__stage { position: absolute; top: 16px; right: 16px; background: var(--gold); color: var(--navy-dark); padding: 6px 12px; font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.portfolio-card__sector-area { position: absolute; bottom: 16px; left: 20px; right: 20px; }
.portfolio-card__sector-label { font-size: 9px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 8px; }
.portfolio-card__sector-name { font-size: 14px; color: #fff; font-family: var(--font-serif); font-weight: 600; }
.portfolio-card__body { padding: 28px 28px 32px; border-top: 3px solid var(--gold); }
.portfolio-card__title { font-size: 20px; color: var(--navy); margin-bottom: 14px; font-weight: 600; }
.portfolio-card__desc { font-size: 13px; color: var(--text-mid); line-height: 1.75; }
.portfolio-note { padding: 28px 32px; background: var(--cream); border-left: 3px solid var(--gold); }
.portfolio-note__label { font-size: 10px; color: var(--gold-dark); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 12px; }
.portfolio-note__quote { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--navy); line-height: 1.55; }
.portfolio-note__body { font-size: 13px; color: var(--text-mid); margin-top: 14px; line-height: 1.7; }
.portfolio-struct-row { display: flex; justify-content: space-between; padding: 20px 24px; background: rgba(255,255,255,0.04); border-left: 2px solid var(--gold); }
.portfolio-struct-row__label { font-size: 10px; color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; align-self: center; }
.portfolio-struct-row__value { font-size: 14px; color: rgba(255,255,255,0.85); text-align: right; align-self: center; }

/* ─── INVESTOR PAGE ──────────────────────────────────────────────────────── */
.investor-notice { background: rgba(201,168,76,0.08); border-left: 4px solid var(--gold); padding: 40px 44px; }
.investor-notice__hd { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.investor-notice__icon { width: 36px; height: 36px; background: var(--gold); color: var(--navy-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 18px; flex-shrink: 0; }
.investor-notice__tag { font-size: 11px; color: var(--gold); letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; }
.investor-notice__title { font-size: 32px; color: #fff; margin-bottom: 18px; line-height: 1.35; }
.investor-notice__body { font-size: 15px; color: rgba(255,255,255,0.78); line-height: 1.85; max-width: 760px; }
.investor-access-item { padding: 22px 24px; background: var(--cream); display: flex; gap: 18px; align-items: flex-start; }
.investor-access-icon { width: 36px; height: 36px; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--font-serif); font-size: 14px; font-weight: 600; }
.investor-access-title { font-size: 16px; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.investor-access-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.investor-struct { background: var(--navy); padding: 44px 40px; color: #fff; }
.investor-struct__rule { height: 1px; background: var(--gold); width: 60px; margin-bottom: 28px; }
.investor-struct-item { padding: 18px 0; }
.investor-struct-item--bordered { border-bottom: 1px solid rgba(255,255,255,0.08); }
.investor-struct-item__hd { display: flex; align-items: center; gap: 12px; margin-bottom: 6px; }
.investor-struct-item__bullet { width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; }
.investor-struct-item__title { font-size: 15px; color: #fff; font-weight: 600; }
.investor-struct-item__desc { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.7; padding-left: 18px; }

/* ─── CONTACT PAGE ───────────────────────────────────────────────────────── */
.contact-success { min-height: 100vh; background: var(--navy); display: flex; align-items: center; justify-content: center; padding: 160px 40px 80px; }
.contact-success__inner { text-align: center; max-width: 560px; }
.contact-success__icon { width: 72px; height: 72px; border: 2px solid var(--gold); margin: 0 auto 32px; display: flex; align-items: center; justify-content: center; transform: rotate(45deg); }
.contact-success__check { font-size: 30px; color: var(--gold); transform: rotate(-45deg); }
.contact-success__title { font-size: 44px; color: #fff; margin-bottom: 20px; }
.contact-success__body { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 32px; }
.contact-success__btn { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #fff; padding: 14px 32px; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.contact-success__btn:hover { border-color: var(--gold); color: var(--gold); }
.contact-cat-btn { background: var(--cream); border: none; cursor: pointer; padding: 40px 32px; text-align: left; border-top: 3px solid var(--gold); transition: all 0.25s; font-family: inherit; }
.contact-cat-btn--active { background: var(--navy); }
.contact-cat-btn__num { font-size: 52px; font-family: var(--font-serif); font-weight: 600; line-height: 1; margin-bottom: 14px; }
.contact-cat-btn--active .contact-cat-btn__num { color: var(--gold); opacity: 1; }
.contact-cat-btn:not(.contact-cat-btn--active) .contact-cat-btn__num { color: var(--gold-dark); opacity: 0.5; }
.contact-cat-btn__name { font-size: 20px; font-family: var(--font-serif); font-weight: 600; margin-bottom: 12px; }
.contact-cat-btn--active .contact-cat-btn__name { color: #fff; }
.contact-cat-btn:not(.contact-cat-btn--active) .contact-cat-btn__name { color: var(--navy); }
.contact-cat-btn__desc { font-size: 13px; line-height: 1.7; }
.contact-cat-btn--active .contact-cat-btn__desc { color: rgba(255,255,255,0.7); }
.contact-cat-btn:not(.contact-cat-btn--active) .contact-cat-btn__desc { color: var(--text-mid); }
.form-label { font-size: 10px; color: var(--text-light); letter-spacing: 0.18em; text-transform: uppercase; display: block; margin-bottom: 8px; font-weight: 600; }
.form-err { font-size: 11px; color: #c0392b; margin-top: 4px; }
.form-section { margin-bottom: 24px; }
.form-section__label { font-size: 10px; color: var(--gold-dark); letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--cream-dark); }
.form-input {
  width: 100%; padding: 14px 16px; background: #fff; border: 1px solid #e0dbd0;
  font-size: 14px; color: var(--text); outline: none; font-family: inherit; transition: border-color 0.2s;
}
.form-input--error { border-color: #c0392b; }
.form-input:focus { border-color: var(--gold); }
.form-consent { padding: 18px 22px; background: #fff; border-left: 3px solid var(--gold); margin-bottom: 28px; display: flex; gap: 14px; align-items: flex-start; }
.form-consent__cb { margin-top: 4px; width: 16px; height: 16px; cursor: pointer; accent-color: var(--gold); flex-shrink: 0; }
.form-consent__label { font-size: 13px; color: var(--text-mid); line-height: 1.7; cursor: pointer; }
.form-submit { background: var(--navy); border: none; cursor: pointer; color: var(--gold); font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; padding: 18px 48px; transition: all 0.25s; width: 100%; font-family: inherit; }
.form-submit:hover { background: var(--gold); color: var(--navy); }
.contact-sidebar-eval { background: var(--navy); padding: 36px 32px; margin-bottom: 20px; }
.contact-sidebar-eval__title { font-size: 10px; color: var(--gold); letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.contact-sidebar-eval__item { display: flex; gap: 14px; margin-bottom: 14px; align-items: flex-start; }
.contact-sidebar-eval__bullet { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); flex-shrink: 0; margin-top: 7px; }
.contact-sidebar-eval__text { font-size: 13px; color: rgba(255,255,255,0.78); line-height: 1.6; }
.contact-sidebar-sectors { background: #fff; padding: 32px 28px; border-top: 3px solid var(--gold); margin-bottom: 20px; }
.contact-sidebar-sectors__title { font-size: 10px; color: var(--gold-dark); letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.contact-sidebar-sector { padding: 11px 0; font-size: 13px; color: var(--text-mid); display: flex; align-items: center; gap: 12px; }
.contact-sidebar-sector--bordered { border-bottom: 1px solid var(--cream-dark); }
.contact-sidebar-sector__bullet { width: 5px; height: 5px; background: var(--navy); transform: rotate(45deg); flex-shrink: 0; }
.contact-sidebar-clarity { padding: 24px 26px; background: var(--cream-dark); border-left: 3px solid var(--gold); }
.contact-sidebar-clarity__label { font-size: 10px; color: var(--gold-dark); letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
.contact-sidebar-clarity__text { font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--navy); line-height: 1.55; }

/* ─── SHARED: DARK NAVY BOX ──────────────────────────────────────────────── */
.navy-box { background: var(--navy); padding: 48px 44px; color: #fff; }
.navy-box__rule { height: 1px; background: var(--gold); width: 80px; margin-bottom: 28px; }
.navy-cta-box { padding: 32px 40px; background: rgba(201,168,76,0.1); border-left: 3px solid var(--gold); }
.navy-cta-box__text { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--gold-light); line-height: 1.55; }
.img-overlay-navy { position: absolute; bottom: 24px; left: 24px; right: 24px; background: rgba(11,22,40,0.92); padding: 24px 28px; border-left: 3px solid var(--gold); }

/* ─── CTA SECTION ────────────────────────────────────────────────────────── */
.cta-section__inner-light { max-width: 760px; margin: 0 auto; }
.cta-section__title-light { font-size: 48px; color: #fff; margin-bottom: 24px; }
.cta-section__title-navy { font-size: 48px; color: var(--navy); margin-bottom: 24px; }
.cta-section__body-light { font-size: 16px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 44px; }
.cta-section__body-navy { font-size: 16px; color: var(--text-mid); line-height: 1.85; margin-bottom: 40px; }

/* ─── RESPONSIVE ADDITIONS ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .page-hero__content { padding: 0 40px 72px; }
  .focus-detail { grid-template-columns: 1fr; }
  .focus-detail__left { padding: 40px 0; }
  .phase-detail { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .home-subtext { padding: 72px 20px; }
  .page-hero__content { padding: 0 20px 56px; }
  .hero-stats { padding-top: 40px; }
  .dlg-footer { padding: 48px 20px 24px; }
  .phase-detail { padding: 40px 24px; }
  .contact-success { padding: 140px 20px 60px; }
}
