/* ============================================================
   JG CAPITAL — Layout V24
   ============================================================ */

*, *::before, *::after { box-sizing: border-box }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 15.5px / 1.72 var(--font);
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.01em;
}

h1, h2, h3, p, figure { margin: 0 }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 560;
  letter-spacing: -.035em;
  line-height: 1.18;
  text-wrap: balance;
  overflow-wrap: normal;
  color: var(--ink);
}

h1 { font-size: clamp(34px, 3.9vw, 56px); line-height: 1.12; letter-spacing: -.04em }
h2 { font-size: clamp(26px, 2.6vw, 36px); line-height: 1.18; letter-spacing: -.035em }
h3 { font-size: clamp(17px, 1.5vw, 21px); letter-spacing: -.02em }

p { color: var(--muted) }
a { color: inherit; text-decoration: none }
button, input, textarea { font: inherit }
button { cursor: pointer; color: inherit }
button:disabled { cursor: default; opacity: .55 }
img { display: block; max-width: 100%; height: auto }
svg { flex-shrink: 0 }
a, button { -webkit-tap-highlight-color: transparent }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

[hidden] { display: none !important }

/* ── Grid & spacing ─────────────────────────────────────────── */
.container {
  width: min(var(--container), calc(100% - 72px));
  margin-inline: auto;
}

.section {
  padding-block: var(--section);
}

.section-tight  { padding-top: 0 }
.section-muted  { background: var(--surface) }

.section-heading {
  margin-bottom: 36px;
  max-width: 780px;
}

.section-heading h2 + p {
  margin-top: 14px;
  max-width: 62ch;
}

/* ── Utility typography ─────────────────────────────────────── */
.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.5;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.body-lead {
  font-size: 15.5px;
  line-height: 1.9;
  max-width: 60ch;
  color: var(--muted);
}

.fine-print {
  font-size: 11.5px;
  line-height: 1.75;
  color: var(--muted);
}

.icon         { width: 20px; height: 20px }
.icon-whatsapp { width: 24px; height: 24px }

/* ── Buttons ────────────────────────────────────────────────── */
.button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  padding: 13px 22px;
  min-height: 46px;
  font-size: 13.5px;
  line-height: 1.4;
  font-weight: 580;
  letter-spacing: .01em;
  background: var(--navy);
  color: #fff;
  transition:
    background var(--duration-fast) var(--ease),
    box-shadow var(--duration-fast) var(--ease),
    transform  var(--duration-fast) var(--ease);
}

.button:hover {
  background: color-mix(in srgb, var(--navy) 82%, #fff);
  box-shadow: var(--shadow-md);
}

.button:active { transform: scale(.985) }

.button-light {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border-color: rgba(255, 255, 255, .3);
  border-radius: var(--radius-pill);
  padding-inline: 26px;
  backdrop-filter: var(--blur-card);
}

.button-light:hover {
  background: rgba(255, 255, 255, .22);
  border-color: rgba(255, 255, 255, .5);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18);
}

.button-small {
  min-height: 38px;
  padding: 9px 16px;
  font-size: 12.5px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: background var(--duration-fast), border-color var(--duration-fast);
}

.icon-button:hover {
  background: var(--surface);
  border-color: color-mix(in srgb, var(--line) 60%, var(--accent));
}

.skip-link {
  position: fixed;
  top: -100px;
  z-index: 1000;
  padding: 14px 24px;
  background: var(--raised);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.skip-link:focus { top: 8px }

/* ── Header & Nav ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  backdrop-filter: var(--blur-nav);
  -webkit-backdrop-filter: var(--blur-nav);
  box-shadow: 0 1px 0 rgba(7, 32, 48, .03);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

/* ── Brand ──────────────────────────────────────────────────── */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

[data-theme="dark"] .brand img {
  mix-blend-mode: screen;
  filter: invert(1) brightness(1.1);
}

.brand strong {
  display: block;
  font-size: 14.5px;
  letter-spacing: .14em;
  line-height: 1.35;
  font-weight: 680;
  color: var(--ink);
}

.brand small {
  display: block;
  font-size: 8px;
  letter-spacing: .09em;
  color: var(--muted);
}

/* ── Navigation ─────────────────────────────────────────────── */
.navigation {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12.5px;
  font-weight: 560;
}

.navigation a {
  white-space: nowrap;
  padding: 7px 13px;
  border-radius: var(--radius-pill);
  color: var(--muted);
  transition: background var(--duration-fast), color var(--duration-fast);
}

.navigation a[aria-current="page"],
.navigation a:hover {
  background: var(--navy);
  color: #fff;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switch {
  display: flex;
  gap: 4px;
  font-size: 11px;
  font-weight: 550;
  white-space: nowrap;
  color: var(--muted);
}

.language-switch .selected {
  font-weight: 720;
  color: var(--ink);
}

.theme-button {
  border: 0;
  width: 30px;
  height: 30px;
}

.mobile-menu { display: none }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: clamp(520px, 72svh, 700px);
  display: grid;
  place-items: center;
  overflow: clip;
  background: var(--navy);
  color: #fff;
}

.home-hero { min-height: calc(100svh - 72px) }

.hero-media,
.hero-poster,
.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-media { z-index: 1 }

.hero-video,
.hero-poster {
  object-fit: cover;
  object-position: center;
}

.hero-video {
  z-index: 1;
  opacity: 0;
  transition: opacity .6s var(--ease);
}

.hero-video.is-playing {
  opacity: 1;
  transform: translateZ(0);
  will-change: transform;
}

.hero-shade {
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(4, 16, 28, .25) 0%,
    rgba(4, 14, 24, .55) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-block: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-inner h1 {
  max-width: 860px;
  color: #fff;
}

.hero .eyebrow {
  color: rgba(210, 190, 160, .85);
  margin-bottom: 18px;
}

.hero-lead {
  margin-top: 22px;
  max-width: 620px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.8;
  font-size: 16.5px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255, 255, 255, .75);
  border: 0;
  padding: 12px 4px;
  font-size: 13.5px;
  font-weight: 500;
  transition: color var(--duration-fast);
}

.hero-link:hover { color: #fff }

.video-control {
  position: absolute;
  z-index: 4;
  right: 22px;
  bottom: 18px;
  background: rgba(7, 20, 32, .5);
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
  backdrop-filter: blur(6px);
}

.hero-poster.asset-wealth-seaside { object-position: center 15% }

/* ── Audience cards ─────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.audience-card {
  position: relative;
  isolation: isolate;
  overflow: clip;
  border-radius: var(--radius-xl);
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--duration-base) var(--ease);
}

.audience-card:hover { box-shadow: var(--shadow-xl) }

.audience-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.audience-card:hover > img { transform: scale(1.04) }

.audience-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(6,22,38,.88) 100%);
}

.audience-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
  text-align: center;
}

.audience-content h2 { font-size: 24px; color: #fff }

.audience-content p {
  color: rgba(220, 234, 242, .85);
  font-size: 13.5px;
  line-height: 1.8;
  margin-top: 12px;
}

.audience-content > span {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-weight: 530;
  margin-top: 20px;
  color: rgba(210, 190, 160, .9);
}

/* ── Editorial row ──────────────────────────────────────────── */
.editorial-row {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, .82fr);
  gap: 80px;
  align-items: center;
}

.editorial-row > div,
.editorial-row > figure { min-width: 0 }

.editorial-row .section-heading { margin-bottom: 18px }

.editorial-row.reversed {
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
}

.editorial-row.reversed > div {
  order: 2;
  text-align: center;
  display: grid;
  justify-items: center;
}

.editorial-row.reversed .section-heading {
  margin-inline: auto;
  text-align: center;
}

.editorial-row.reversed .body-lead {
  text-align: center;
  max-width: 56ch;
}

.editorial-row figure {
  overflow: clip;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.editorial-row figure img {
  width: 100%;
  aspect-ratio: 1.22 / 1;
  object-fit: cover;
  display: block;
}

/* ── Brand panel ────────────────────────────────────────────── */
.editorial-row figure.brand-panel {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #f5f4f0, #ece9e0);
  border: 1px solid rgba(7, 32, 48, .07);
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .editorial-row figure.brand-panel {
  background: linear-gradient(145deg, #101f2c, #0c1923);
  border-color: rgba(255,255,255,.07);
}

.brand-panel__content {
  min-height: 100%;
  display: grid;
  place-items: center;
  gap: 14px;
  padding: clamp(32px, 4.5vw, 54px);
  text-align: center;
}

.brand-panel .brand-mark {
  width: min(160px, 38%);
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

[data-theme="dark"] .brand-panel .brand-mark {
  filter: invert(1) brightness(1.1);
}

.brand-panel__caption strong {
  display: block;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: .18em;
  font-weight: 640;
  color: var(--navy);
}

[data-theme="dark"] .brand-panel__caption strong { color: var(--ink) }

/* ── Wealth layout ──────────────────────────────────────────── */
.wealth-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.6fr);
  gap: 52px;
  align-items: center;
}

.wealth-layout header h2 { font-size: 30px }
.wealth-layout header p  { margin-top: 18px; font-size: 15px }

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.photo-card { min-width: 0 }

.photo-card > h3 {
  margin-top: 13px;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
}

.image-story {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: var(--radius-lg);
  overflow: clip;
  aspect-ratio: 3 / 4;
  background: var(--navy);
  isolation: isolate;
  cursor: pointer;
}

.image-story > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.image-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease);
}

.image-story__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: #fff;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.75;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  transition: opacity var(--duration-base) var(--ease), transform .4s var(--ease);
}

.image-story:hover::after,
.image-story:focus-visible::after,
.image-story[aria-expanded="true"]::after { opacity: 1 }

.image-story:hover .image-story__overlay,
.image-story:focus-visible .image-story__overlay,
.image-story[aria-expanded="true"] .image-story__overlay { opacity: 1; transform: none }

.image-story:hover > img { transform: scale(1.04) }

/* object-position helpers */
.asset-succession-family      { object-position: center 45% }
.asset-wealth-seaside         { object-position: 65% 45% }
.asset-advisory-meeting       { object-position: 50% 34% }
.asset-corporate-hero         { object-position: center 47% }
.asset-corporates-towers      { object-position: center 52% }
.asset-pymes-workshop         { object-position: center 48% }
.asset-corporate-partnership  { object-position: center 50% }
.asset-capital-markets-advisory { object-position: center 42% }
.asset-markets-hero           { object-position: center 44% }

/* ── Service / process cards ────────────────────────────────── */
.service-grid {
  display: grid;
  gap: 18px;
}

.service-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)) }
.service-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)) }

.service-card {
  background: var(--raised);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  min-height: 220px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  box-shadow: var(--shadow-sm);
  transition:
    transform  var(--duration-base) var(--ease),
    box-shadow var(--duration-base) var(--ease),
    border-color var(--duration-base) var(--ease);
}

.service-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--gold) 30%, var(--line));
}

.service-card h3 {
  font-size: 18px;
  min-height: 44px;
  display: grid;
  align-items: center;
  line-height: 1.35;
}

.service-card p {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.82;
}

.service-icon {
  display: block;
  margin: 0 auto 16px;
  color: var(--gold);
}

.service-icon .icon { width: 28px; height: 28px }

/* Process / implementation cards ─ same grammar as service cards */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  border: 0;
}

.process-card {
  min-height: 210px;
  padding: 28px 22px;
  background: var(--raised);
  border: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition:
    transform  var(--duration-base) var(--ease),
    box-shadow var(--duration-base) var(--ease);
}

.process-card:hover {
  transform: translate3d(0, -3px, 0);
  box-shadow: var(--shadow-md);
}

.process-card h3 {
  font-size: 18px;
  line-height: 1.35;
  min-height: 0;
}

.process-card p {
  margin: 14px auto 0;
  max-width: 30ch;
  font-size: 13.5px;
  line-height: 1.82;
  color: var(--muted);
}

/* ── Corporate / business pages ─────────────────────────────── */
.business-audiences {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.business-card {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.05;
  overflow: clip;
  border-radius: var(--radius-xl);
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--duration-base) var(--ease);
}

.business-card:hover { box-shadow: var(--shadow-xl) }

.business-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(3, 15, 26, .38);
}

.business-card h2 {
  position: relative;
  z-index: 2;
  font-size: 28px;
  padding: 26px;
  text-align: center;
  color: #fff;
}

.business-card:hover img { transform: scale(1.04) }

.financing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.financing-grid .image-story { aspect-ratio: 3 / 4 }

/* ── Banner ─────────────────────────────────────────────────── */
.banner {
  position: relative;
  isolation: isolate;
  min-height: 380px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: clip;
}

.banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.banner-copy {
  position: relative;
  z-index: 3;
  padding-block: 56px;
}

.banner-copy h2 {
  max-width: 720px;
  color: #fff;
}

.banner-copy p {
  color: rgba(255, 255, 255, .82);
  max-width: 640px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.82;
}

/* ── Research ───────────────────────────────────────────────── */
.legal-page     { max-width: 840px }
.legal-page h1  { margin-bottom: 36px }
.legal-page h2  { font-size: 22px; margin: 28px 0 12px }

.page-title h1,
.page-title h2  { max-width: 850px }

.research-card       { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); margin-bottom: 18px }
.research-card h2    { font-size: 24px; margin: 12px 0 }
.research-card time  { font-size: 12px; color: var(--muted) }
.report-body         { white-space: pre-wrap; margin-top: 22px }
.research-list       { min-height: 80px }

.research-page .eyebrow               { font-size: 12px; letter-spacing: .18em; font-weight: 700; margin-bottom: 18px }
.research-page .section-heading h2    { font-size: clamp(38px, 5vw, 60px); letter-spacing: -.045em }
.research-page .section-heading > p   { font-size: 16.5px; line-height: 1.85; max-width: 620px }

.research-article { padding: 26px 0; border-bottom: 1px solid var(--line); max-width: 800px }
.research-article h2 { font-size: clamp(22px, 2.4vw, 30px); margin: 10px 0 14px }
.research-article time { font-size: 12px; color: var(--muted) }
.research-article p { white-space: pre-line; overflow-wrap: anywhere }
.research-article a { display: inline-flex; margin-top: 16px; text-decoration: underline; text-underline-offset: 4px }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #060f18;
  color: #ecf2f5;
  padding: 52px 0 22px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.1fr 1fr .7fr;
  gap: 56px;
  align-items: start;
}

.footer .brand img {
  width: 44px;
  height: 44px;
  filter: invert(1);
}

.footer .brand strong {
  font-size: 17px;
  letter-spacing: .17em;
  font-weight: 640;
  color: #ecf2f5;
}

.footer .brand small {
  font-size: 8.5px;
  color: #7fa0b2;
  letter-spacing: .1em;
}

.footer h2 {
  font-size: 10px;
  font-weight: 680;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 16px;
}

.footer section a,
.footer section p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c4d5de;
  font-size: 12px;
  line-height: 1.75;
  margin-top: 12px;
}

.footer nav a {
  display: block;
  font-size: 12px;
  line-height: 1.9;
  margin-bottom: 4px;
  color: #c4d5de;
  transition: color var(--duration-fast);
}

.footer a:hover { color: #fff }

.footer .icon { width: 16px; height: 16px; margin-top: 2px; color: #7fa0b2 }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 36px;
  padding-top: 18px;
  text-align: center;
}

.footer-bottom p {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #5a7d8e;
}

.modal-open { overflow: hidden }

/* ── Responsive ─────────────────────────────────────────────── */
@media (min-width: 1600px) {
  .hero           { min-height: 700px }
  .home-hero      { min-height: calc(100svh - 72px) }
  .hero-inner h1  { font-size: 60px }
}

@media (max-width: 1180px) {
  .container          { width: calc(100% - 52px) }
  .navigation         { gap: 0; font-size: 12px }
  .navigation a       { padding-inline: 9px }
  .nav-account        { display: none }
  .nav-inner          { gap: 10px }
  .editorial-row      { gap: 48px }
  .wealth-layout      { grid-template-columns: 1fr; gap: 28px }
  .wealth-layout header { max-width: 640px }
  .story-grid .image-story { aspect-ratio: 4 / 4.5 }
  .service-card       { padding: 24px 18px }
  .footer-columns     { gap: 36px }
}

@media (max-width: 900px) {
  .process-grid              { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px }
  .navigation                { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--line); padding: 16px 20px; flex-direction: column; align-items: stretch; gap: 4px; font-size: 15px; box-shadow: var(--shadow-md) }
  .navigation.is-open        { display: flex }
  .mobile-menu               { display: inline-grid }
  .nav-inner                 { min-height: 68px }
  .service-grid--4           { grid-template-columns: repeat(2, minmax(0, 1fr)) }
  .service-grid--3           { grid-template-columns: repeat(3, minmax(0, 1fr)) }
  .service-card              { min-height: 200px }
  .service-card h3           { font-size: 17px }
  .editorial-row             { gap: 28px }
  .business-card             { aspect-ratio: 3 / 4 }
  .business-card h2          { font-size: 24px }
  .financing-grid            { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px }
  .financing-grid .image-story { aspect-ratio: 4 / 3 }
  .footer-columns            { grid-template-columns: 1fr 1fr; gap: 28px }
  .footer-columns > div      { grid-column: 1 / -1 }
  .hero-inner                { padding-block: 60px }
  .hero-poster.asset-wealth-seaside { object-position: 62% 15% }
}

@media (max-width: 600px) {
  :root { --section: 44px }

  .container           { width: calc(100% - 32px) }
  .brand strong        { font-size: 13.5px }
  .brand small         { display: none }
  .brand img           { width: 30px; height: 30px }
  .nav-actions         { gap: 6px }
  .nav-inner           { min-height: 64px }

  .hero                { min-height: 580px }
  .home-hero           { min-height: calc(100svh - 64px) }
  .hero-inner          { padding-block: 60px }
  .hero-inner h1       { font-size: clamp(29px, 8vw, 40px); line-height: 1.17 }
  .hero-lead           { font-size: 14.5px; line-height: 1.78 }
  .hero-actions        { gap: 14px; margin-top: 26px }
  .hero-poster.asset-wealth-seaside { object-position: 67% 15% }

  .audience-grid       { grid-template-columns: 1fr; gap: 18px }
  .audience-card       { min-height: 340px }
  .audience-content    { padding: 26px }
  .audience-content h2 { font-size: 24px }

  .editorial-row,
  .editorial-row.reversed { grid-template-columns: 1fr; gap: 24px }
  .editorial-row.reversed > div { order: 0; text-align: left; justify-items: start }
  .editorial-row figure img { aspect-ratio: 4 / 3 }

  .story-grid          { grid-template-columns: 1fr; gap: 24px }
  .story-grid .image-story { aspect-ratio: 4 / 3 }

  .service-grid--3,
  .service-grid--4     { grid-template-columns: 1fr; gap: 14px }
  .service-card        { min-height: 0; padding: 26px 20px }
  .service-card h3     { min-height: 0; font-size: 19px }
  .service-card p      { margin-top: 12px; font-size: 14px }

  .business-audiences  { grid-template-columns: 1fr; gap: 18px }
  .business-card       { aspect-ratio: 4 / 3 }
  .business-card h2    { font-size: 24px }

  .financing-grid      { gap: 20px 14px }
  .financing-grid .image-story { aspect-ratio: 3 / 4 }
  .financing-grid .image-story__overlay { font-size: 12px; padding: 12px; line-height: 1.65 }

  .photo-card > h3     { font-size: 15px }
  .banner              { min-height: 360px }
  .banner-copy p       { font-size: 14.5px }
  .process-grid        { grid-template-columns: 1fr; gap: 12px }
  .process-card        { min-height: 0; padding: 24px 18px }
  .process-card p      { font-size: 13.5px }

  .footer              { padding-top: 38px }
  .footer-columns      { gap: 24px }
  .footer-bottom       { margin-top: 24px }
  .footer-bottom p     { letter-spacing: .1em }
  .footer .brand strong { font-size: 18px }
}