:root {
  --ink: #172943;
  --ink-soft: #52647a;
  --navy: #000119;
  --navy-2: #112349;
  --blue: #0095eb;
  --accent: #8bb1df;
  --cream: #f1f5fa;
  --paper: #fbfaf6;
  --white: #fff;
  --line: rgba(16, 36, 45, .15);
  --container: min(1200px, calc(100vw - 48px));
  --shadow: 0 24px 80px rgba(4, 24, 33, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .brand, strong {
  font-family: "Manrope", sans-serif;
}
h1 {
  max-width: 950px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 7vw, 6.8rem);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.065em;
}
h1 em {
  color: var(--accent);
  font-family: Georgia, serif;
  font-weight: 400;
}
h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.6rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.055em;
}
h3 {
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -.03em;
}
.container { width: var(--container); margin-inline: auto; }
.section { padding: 132px 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 4px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.eyebrow {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 28px;
  height: 1px;
  background: currentColor;
  content: "";
}
.eyebrow.light { color: var(--accent); }
.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  font-family: "Manrope", sans-serif;
  font-size: .87rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .25s, background .25s, color .25s;
}
.button:hover { transform: translateY(-2px); }
.button-accent { color: var(--white); background: var(--blue); }
.button-accent:hover { background: #007cc3; }
.button-small {
  min-height: 45px;
  padding: 0 19px;
  color: var(--white);
  background: var(--blue);
}
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--blue);
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
}
.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  transition: transform .2s;
}
.text-link:hover svg { transform: translateX(4px); }
.light-link { color: var(--white); }

/* Navigation */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.site-header.scrolled {
  color: var(--white);
  background: rgba(0, 1, 25, .96);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: 0 10px 36px rgba(5, 26, 34, .08);
  backdrop-filter: blur(14px);
}
.nav-wrap {
  display: flex;
  width: var(--container);
  height: 96px;
  margin: auto;
  align-items: center;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
}
.brand-logo {
  width: 104px;
  height: 92px;
  object-fit: contain;
}
.brand-mark {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  stroke-width: 1.7;
}
.main-nav {
  display: flex;
  gap: 31px;
  margin-left: auto;
  align-items: center;
}
.main-nav a {
  position: relative;
  font-size: .84rem;
  font-weight: 500;
  text-decoration: none;
}
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s;
}
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-cta { margin-left: 28px; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: currentColor;
  transition: transform .25s;
}

/* Hero */
.hero {
  position: relative;
  display: flex;
  min-height: 900px;
  height: 100svh;
  color: var(--white);
  background: var(--navy);
  align-items: center;
  overflow: hidden;
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media {
  background-image: url("assets/hero-restaurant.jpg");
  background-position: center 30%;
  background-size: cover;
  animation: hero-zoom 18s ease-out both;
}
.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 24, 32, .96) 0%, rgba(5, 24, 32, .85) 48%, rgba(5, 24, 32, .25) 100%),
    linear-gradient(0deg, rgba(5, 24, 32, .55), transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  padding-top: 96px;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 70px;
  align-items: end;
}
.hero-copy { padding-bottom: 25px; }
.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(3.25rem, 5.4vw, 5.4rem);
  line-height: 1;
}
.hero-copy h1 > span { display: block; }
.hero-lead {
  max-width: 660px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, .77);
  font-size: 1.15rem;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 30px; align-items: center; }
.hero-card {
  padding: 30px;
  color: var(--white);
  background: rgba(5, 24, 32, .55);
  border: 1px solid rgba(255, 255, 255, .23);
  backdrop-filter: blur(16px);
}
.card-kicker {
  margin-bottom: 25px;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-card .card-kicker { color: var(--accent); }
.hero-stat {
  display: grid;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, .22);
  grid-template-columns: 112px 1fr;
  gap: 12px;
  align-items: center;
}
.hero-stat strong {
  color: var(--accent);
  font-size: 1.65rem;
  letter-spacing: -.05em;
}
.hero-stat span {
  color: rgba(255, 255, 255, .73);
  font-size: .76rem;
  line-height: 1.45;
}
.microcopy {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .53);
  font-size: .68rem;
  line-height: 1.45;
}
.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 22px;
  left: 50%;
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, .65);
  font-size: .64rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-cue span {
  position: relative;
  width: 1px;
  height: 38px;
  background: rgba(255, 255, 255, .28);
  overflow: hidden;
}
.scroll-cue span::after {
  position: absolute;
  top: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent);
  content: "";
  animation: scroll-line 2s infinite;
}
@keyframes hero-zoom { from { transform: scale(1.05); } to { transform: scale(1); } }
@keyframes scroll-line { 0% { top: -100%; } 60%, 100% { top: 100%; } }

.trust-strip {
  color: var(--white);
  background: var(--blue);
}
.trust-grid {
  display: grid;
  min-height: 102px;
  grid-template-columns: auto 1fr;
  gap: 42px;
  align-items: center;
}
.trust-grid strong {
  color: rgba(255, 255, 255, .62);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-grid p {
  margin: 0;
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, .3);
  font-family: "Manrope", sans-serif;
  font-size: clamp(.95rem, 1.5vw, 1.18rem);
  font-weight: 500;
  line-height: 1.45;
}
.trust-grid span { margin-right: 8px; color: rgba(255, 255, 255, .52); }

/* Opportunity */
.intro-section { background: var(--paper); }
.split-heading {
  display: grid;
  margin-bottom: 72px;
  grid-template-columns: 1.25fr .75fr;
  gap: 100px;
  align-items: end;
}
.split-heading h2 { max-width: 750px; margin: 0; }
.section-intro { color: var(--ink-soft); font-size: 1.03rem; }
.section-intro p { margin-bottom: 26px; }
.benefit-grid {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}
.benefit-card {
  position: relative;
  min-height: 0;
  padding: 36px 28px 8px 0;
  border-right: 1px solid var(--line);
  background: transparent;
}
.benefit-card:last-child { border-right: 0; padding-right: 0; }
.benefit-card:not(:first-child) { padding-left: 28px; }
.card-number {
  display: block;
  margin-bottom: 28px;
  color: #7a898f;
  font-size: .72rem;
  letter-spacing: .12em;
}
.line-icon {
  width: 44px;
  margin-bottom: 28px;
  color: var(--blue);
}
.line-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: bevel;
  stroke-width: 1.25;
}
.benefit-card h3 { margin-bottom: 14px; }
.benefit-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}
.benefit-card .benefit-note {
  margin-top: 16px;
  color: #7a898f;
  font-size: .72rem;
  line-height: 1.45;
}

/* Strategy */
.dark-section {
  color: var(--white);
  background: var(--navy);
}
.dark-heading { align-items: start; }
.dark-heading h2 { color: var(--white); }
.dark-heading .section-intro { color: rgba(255, 255, 255, .62); }
.strategy-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 85px;
  align-items: center;
}
.strategy-image { position: relative; margin: 0; }
.strategy-image::before {
  position: absolute;
  z-index: 1;
  top: -18px;
  left: -18px;
  width: 110px;
  height: 110px;
  border-top: 1px solid var(--accent);
  border-left: 1px solid var(--accent);
  content: "";
}
.strategy-image img { width: 100%; aspect-ratio: 1.12; object-fit: cover; }
.strategy-image figcaption {
  position: absolute;
  inset: auto 0 0;
  padding: 56px 28px 24px;
  color: var(--white);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 1, 25, .72) 55%, rgba(0, 1, 25, .92) 100%);
  font-family: "Manrope", sans-serif;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: -.015em;
  line-height: 1.35;
}
.strategy-image figcaption::before {
  display: block;
  width: 36px;
  height: 1px;
  margin-bottom: 14px;
  background: var(--accent);
  content: "";
}
.strategy-list article {
  display: grid;
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  grid-template-columns: 55px 1fr;
  gap: 18px;
}
.strategy-list article:last-child { border-bottom: 1px solid rgba(255, 255, 255, .18); }
.strategy-list article > span {
  color: var(--accent);
  font-size: .7rem;
  letter-spacing: .14em;
}
.strategy-list h3 { margin-bottom: 8px; color: var(--white); }
.strategy-list p { margin: 0; color: rgba(255, 255, 255, .58); font-size: .87rem; }

/* Method */
.method-section { background: var(--cream); }
.method-title {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: end;
}
.method-title h2 { margin: 0; }
.method-title p { margin: 0; color: var(--ink-soft); }
.method-steps {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
  grid-template-columns: repeat(4, 1fr);
}
.method-steps li {
  position: relative;
  min-height: 275px;
  padding: 30px;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}
.method-steps li::before {
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--blue);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}
.method-steps li > span {
  display: block;
  margin-bottom: 70px;
  color: var(--blue);
  font-size: .72rem;
}
.method-steps h3 { margin-bottom: 12px; }
.method-steps p { margin: 0; color: var(--ink-soft); font-size: .85rem; }

/* Figures and portfolio */
.key-figures { background: var(--paper); }
.key-figures-head {
  display: grid;
  margin-bottom: 70px;
  grid-template-columns: 1fr 350px;
  gap: 90px;
  align-items: end;
}
.key-figures-head h2 { max-width: 780px; margin: 0; }
.key-figures-head > p { margin: 0; color: var(--ink-soft); font-size: .85rem; }
.metrics {
  display: grid;
  margin-bottom: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}
.metric { padding: 34px 25px; border-right: 1px solid var(--line); }
.metric:last-child { border: 0; }
.metric strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue);
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.06em;
}
.metric span, .metric small { display: block; }
.metric span { font-size: .85rem; font-weight: 600; }
.metric small { margin-top: 5px; color: #7a898f; font-size: .68rem; }
.portfolio-label { margin: 0 0 22px; }
.portfolio-grid {
  display: grid;
  height: 620px;
  grid-template-columns: 1.35fr .65fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}
.portfolio-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}
.portfolio-main { grid-row: 1 / 3; }
.portfolio-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.portfolio-grid figure:hover img { transform: scale(1.035); }
.portfolio-grid figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  padding: 20px;
  color: var(--white);
  background: linear-gradient(90deg, rgba(5, 24, 32, .85), rgba(5, 24, 32, .3));
}
.portfolio-grid figcaption span, .portfolio-grid figcaption strong { display: block; }
.portfolio-grid figcaption span { color: var(--accent); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.portfolio-grid figcaption strong { font-size: 1.15rem; }

/* Manager */
.manager-section { color: var(--white); background: var(--blue); }
.manager-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.manager-portrait { position: relative; }
.manager-portrait img {
  width: 100%;
  max-height: 620px;
  aspect-ratio: .82;
  object-fit: cover;
}
.image-placeholder {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--accent);
  font-size: .65rem;
  font-weight: 700;
}
.manager-copy .eyebrow { color: var(--accent); }
.manager-copy h2 { max-width: 700px; color: var(--white); }
.manager-copy blockquote {
  max-width: 760px;
  margin: 40px 0 32px;
  padding-left: 28px;
  border-left: 2px solid var(--accent);
  font-family: Georgia, serif;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-style: italic;
  line-height: 1.45;
}
.manager-name { display: flex; gap: 14px; margin-bottom: 30px; align-items: baseline; }
.manager-name strong { color: var(--accent); }
.manager-name span { color: rgba(255, 255, 255, .66); font-size: .78rem; }
.manager-copy > p { max-width: 710px; color: rgba(255, 255, 255, .72); font-size: .9rem; }

.investor-section { color: var(--white); background: var(--navy); }
.investor-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.investor-layout h2 { max-width: 600px; margin: 0; }
.profile-list p {
  display: grid;
  margin: 0;
  padding: 20px 0;
  color: rgba(255, 255, 255, .72);
  border-top: 1px solid rgba(255, 255, 255, .16);
  grid-template-columns: 30px 1fr;
}
.profile-list p:last-child { border-bottom: 1px solid rgba(255, 255, 255, .16); }
.profile-list span { color: var(--accent); font-weight: 700; }

/* Risks */
.risk-section { background: var(--cream); }
.risk-layout {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 120px;
}
.risk-layout h2 { font-size: clamp(2.3rem, 4vw, 4rem); }
.risk-layout > div:first-child > p:last-child { color: var(--ink-soft); }
.risk-accordion details { border-top: 1px solid var(--line); }
.risk-accordion details:last-child { border-bottom: 1px solid var(--line); }
.risk-accordion summary {
  display: flex;
  padding: 23px 0;
  align-items: center;
  justify-content: space-between;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}
.risk-accordion summary::-webkit-details-marker { display: none; }
.risk-accordion summary span {
  color: var(--blue);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform .25s;
}
.risk-accordion details[open] summary span { transform: rotate(45deg); }
.risk-accordion details p {
  max-width: 620px;
  padding: 0 45px 24px 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

/* Contact */
.contact-section {
  padding: 130px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 25, 34, .97), rgba(6, 25, 34, .84)),
    url("assets/contact-commerce.jpg") center/cover;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 420px;
  gap: 110px;
  align-items: center;
}
.contact-copy h2 { max-width: 720px; color: var(--white); }
.contact-copy > p { max-width: 610px; color: rgba(255, 255, 255, .68); }
.direct-contact {
  display: grid;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .24);
}
.direct-contact a {
  display: grid;
  padding: 23px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  text-decoration: none;
  transition: padding-left .25s, background .25s;
}
.direct-contact a:hover {
  padding-left: 16px;
  background: rgba(139, 177, 223, .08);
}
.direct-contact span, .direct-contact strong { display: block; }
.direct-contact span { margin-bottom: 4px; color: rgba(255, 255, 255, .5); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.direct-contact strong {
  color: var(--accent);
  font-size: clamp(1.33rem, 2.17vw, 1.925rem);
  line-height: 1.18;
  letter-spacing: -.045em;
}
.newsletter-card {
  padding: 42px;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.newsletter-card h3 { margin-bottom: 12px; font-size: 1.85rem; }
.newsletter-card > p:not(.card-kicker) { margin-bottom: 28px; color: var(--ink-soft); font-size: .86rem; }
.newsletter-card label { display: block; margin-bottom: 8px; font-size: .72rem; font-weight: 600; }
.form-row { display: grid; grid-template-columns: 1fr auto; }
.form-row input {
  width: 100%;
  min-width: 0;
  height: 56px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 0;
  outline: 0;
}
.form-row input:focus { border-color: var(--blue); box-shadow: inset 0 0 0 1px var(--blue); }
.form-row button {
  display: flex;
  min-width: 118px;
  padding: 0 17px;
  gap: 6px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: var(--blue);
  border: 0;
  font-size: .8rem;
  font-weight: 700;
}
.form-row button svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}
.consent {
  display: grid !important;
  margin-top: 18px;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  color: #687980;
  font-weight: 400 !important;
  line-height: 1.45;
}
.consent input { margin: 3px 0 0; accent-color: var(--blue); }
.consent a { color: var(--blue); }
.honeypot { position: absolute; left: -9999px; }
.form-status { min-height: 21px; margin: 12px 0 0; color: var(--blue); font-size: .75rem; }
.form-status.error { color: #b23b38; }

/* Footer */
.site-footer { padding: 70px 0 28px; color: var(--white); background: var(--navy); }
.footer-top {
  display: grid;
  padding-bottom: 60px;
  grid-template-columns: .7fr 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.footer-brand .brand-logo {
  width: 130px;
  height: 120px;
}
.footer-top > p { color: rgba(255, 255, 255, .55); line-height: 1.45; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 40px; }
.footer-links a { font-size: .82rem; text-decoration: none; }
.footer-bottom {
  display: flex;
  padding-top: 25px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, .42);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .68rem;
}
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 25px; }
.footer-bottom a { text-decoration: none; }

/* Legal page */
.legal-page { background: var(--paper); }
.legal-header {
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.legal-header .nav-wrap { justify-content: space-between; }
.legal-hero {
  padding: 105px 0 85px;
  color: var(--white);
  background: var(--navy);
}
.legal-hero h1 {
  margin-bottom: 15px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}
.legal-hero > .container > p:last-child {
  color: rgba(255, 255, 255, .5);
  font-size: .78rem;
}
.legal-layout {
  display: grid;
  padding: 100px 0 120px;
  grid-template-columns: 240px minmax(0, 760px);
  gap: 110px;
  justify-content: center;
}
.legal-layout aside nav {
  position: sticky;
  top: 30px;
  display: grid;
  border-top: 1px solid var(--line);
}
.legal-layout aside a {
  padding: 13px 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: .8rem;
  text-decoration: none;
}
.legal-content section {
  padding-bottom: 70px;
  scroll-margin-top: 30px;
}
.legal-content section + section { padding-top: 70px; border-top: 1px solid var(--line); }
.legal-content h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
.legal-content p { color: var(--ink-soft); }
.legal-content a { color: var(--blue); }
.legal-warning {
  margin: 35px 0;
  padding: 28px;
  background: var(--cream);
  border-left: 3px solid var(--blue);
}
.legal-warning p { margin: 10px 0 0; font-size: .9rem; }
.legal-footer { padding-top: 28px; }

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .main-nav { gap: 20px; }
  .main-nav a { font-size: .76rem; }
  .header-cta { margin-left: 18px; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card { min-height: 0; }
  .benefit-card:nth-child(2) { border-right: 0; }
  .benefit-card:nth-child(n+3) {
    padding-top: 36px;
    border-top: 1px solid var(--line);
  }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr 420px; gap: 70px; }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 34px, 720px); }
  .section { padding: 92px 0; }
  h1 { font-size: clamp(3.2rem, 11vw, 5.2rem); }
  .hero-copy h1 { font-size: clamp(3.2rem, 9vw, 4.2rem); }
  .menu-toggle { display: block; }
  .header-cta { display: none; }
  .hero-actions .button-accent { display: none; }
  .main-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    padding: 120px 28px 60px;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
    color: var(--white);
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .25s, transform .25s;
  }
  .main-nav a { padding: 17px 0; border-bottom: 1px solid rgba(255, 255, 255, .15); font-family: "Manrope", sans-serif; font-size: 1.3rem; }
  .main-nav a::after { display: none; }
  .menu-open .main-nav { opacity: 1; pointer-events: auto; transform: none; }
  .menu-open .site-header { color: var(--white); background: var(--navy); border-color: rgba(255, 255, 255, .15); }
  .menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .hero { min-height: 900px; height: auto; padding: 155px 0 80px; align-items: stretch; }
  .hero-inner { grid-template-columns: 1fr; gap: 55px; padding: 0; }
  .hero-card { width: min(100%, 500px); }
  .scroll-cue { display: none; }
  .split-heading, .method-title, .key-figures-head { grid-template-columns: 1fr; gap: 35px; }
  .strategy-layout, .manager-layout, .investor-layout, .risk-layout, .contact-layout { grid-template-columns: 1fr; gap: 60px; }
  .manager-portrait { max-width: 500px; }
  .manager-portrait img { max-height: 560px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .portfolio-grid { height: auto; grid-template-columns: 1fr 1fr; grid-template-rows: 480px 280px; }
  .portfolio-main { grid-row: auto; grid-column: 1 / 3; }
  .contact-section { padding: 100px 0; }
  .newsletter-card { max-width: 560px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 45px; }
  .footer-links { grid-column: 1 / 3; }
  .legal-layout { grid-template-columns: 1fr; gap: 50px; padding-top: 70px; }
  .legal-layout aside nav { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  :root { --container: calc(100% - 28px); }
  body { font-size: 15px; }
  .nav-wrap { height: 70px; }
  .brand-logo { width: 82px; height: 70px; }
  .hero { min-height: 0; padding: 125px 0 70px; }
  .hero-media { background-position: 60% center; }
  .hero-shade { background: rgba(5, 24, 32, .79); }
  h1 { font-size: 3.25rem; }
  .hero-copy h1 { font-size: clamp(2.65rem, 13vw, 3.25rem); }
  .hero-copy h1 > span { display: inline; }
  h2 { font-size: 2.5rem; }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-card { padding: 24px; }
  .trust-grid { grid-template-columns: 1fr; gap: 10px; padding: 24px 0; }
  .trust-grid p { padding: 0; border: 0; font-size: .95rem; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card {
    min-height: 0;
    padding: 28px 0 !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }
  .benefit-card:last-child { border-bottom: 0; }
  .benefit-card:nth-child(n+3) { border-top: 0; }
  .strategy-layout { gap: 45px; }
  .strategy-image::before { display: none; }
  .method-steps { grid-template-columns: 1fr; }
  .method-steps li { min-height: 230px; }
  .method-steps li > span { margin-bottom: 45px; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:nth-child(3) { border-bottom: 1px solid var(--line); }
  .portfolio-grid { display: block; }
  .portfolio-grid figure { height: 320px; margin-bottom: 12px; }
  .manager-layout, .investor-layout, .risk-layout, .contact-layout { gap: 45px; }
  .manager-name { flex-direction: column; gap: 2px; }
  .direct-contact { flex-direction: column; gap: 22px; }
  .newsletter-card { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 8px; }
  .form-row input { border-right: 1px solid var(--line); }
  .form-row button { height: 50px; }
  .footer-top { grid-template-columns: 1fr; gap: 35px; }
  .footer-links { grid-column: auto; grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 18px; align-items: flex-start; }
}
