:root {
  --bg: #ffffff;
  --bg-alt: #f7f9fb;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --line: #d7dee6;
  --line-strong: #b8c2ce;
  --ink: #0f2133;
  --ink-soft: #4e6073;
  --ink-muted: #708295;
  --blue: #123f73;
  --blue-deep: #0d2e56;
  --blue-pale: #edf2f7;
  --sand: #d6c4a1;
  --success: #1f7a5c;
  --shadow-sm: 0 10px 24px rgba(15, 33, 51, 0.035);
  --shadow-lg: 0 18px 42px rgba(15, 33, 51, 0.06);
  --radius-xl: 12px;
  --radius-lg: 8px;
  --radius-md: 6px;
  --radius-sm: 4px;
  --max: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  background: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 33, 51, 0.08);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.footer-inner {
  width: 100%;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 0;
  object-fit: contain;
  background: #fff;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-title {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius-sm);
  color: var(--ink);
}

.nav {
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.nav-link:hover,
.nav-button:hover,
.nav-item:focus-within > .nav-link,
.nav-item:focus-within > .nav-button {
  background: var(--blue-pale);
}

.nav-caret {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #071a31;
  border-bottom: 1px solid #071a31;
  transform: rotate(45deg) translateY(-1px);
  transform-origin: center;
  font-size: 0;
  color: transparent;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  padding: 12px 0 0 18px;
  border-radius: 0;
  background: #fff;
  border: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-item:hover .mega-panel,
.nav-item:focus-within .mega-panel,
.nav-item.open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.panel-kicker,
.eyebrow,
.card-kicker,
.meta-line,
.form-label,
.timeline-step {
  margin: 0 0 14px;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
}

.panel-title,
.hero-title,
.section-title,
.card-title,
.division-title,
.timeline-title,
.cta-title,
.stat-value,
.contact-title {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
}

.panel-copy,
.hero-copy,
.section-copy,
.card-copy,
.body-copy,
.timeline-copy,
.cta-copy,
.stat-label,
.contact-copy,
.field-copy,
.footer-copy,
.list,
.division-meta,
.quote-line {
  color: var(--ink-soft);
  line-height: 1.7;
}

.panel-links {
  display: grid;
  gap: 0;
}

.panel-links a {
  padding: 14px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
}

.panel-links a:hover {
  color: var(--blue);
}

.header-cta,
.button,
.button-secondary,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.header-cta,
.button {
  background: #071a31;
  color: #fff;
}

.button:hover,
.header-cta:hover {
  background: #0d2e56;
}

.button-secondary,
.button-link {
  border: 1px solid rgba(15, 33, 51, 0.14);
  background: #fff;
  color: var(--ink);
}

.page-hero {
  padding: 34px 0 18px;
}

.page-hero-home {
  padding: 0;
  background: #071a31;
  color: #ffffff;
}

.page-hero:not(.page-hero-home) {
  padding: 36px 0 6px;
  background: #ffffff;
  color: var(--blue-deep);
}

.page-hero:not(.page-hero-home) .hero-layout {
  grid-template-columns: 1fr;
}

.page-hero:not(.page-hero-home) .hero-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.page-hero:not(.page-hero-home) .hero-title,
.page-hero:not(.page-hero-home) .hero-title-wide,
.page-hero:not(.page-hero-home) .hero-title-platform {
  max-width: 15ch;
  color: var(--blue-deep);
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 0.98;
}

.page-hero:not(.page-hero-home) .hero-copy,
.page-hero:not(.page-hero-home) .hero-copy-home,
.page-hero:not(.page-hero-home) .hero-copy-platform {
  max-width: 56ch;
  color: rgba(13, 46, 86, 0.72);
  font-size: 1.04rem;
}

.page-hero:not(.page-hero-home) .eyebrow {
  color: var(--blue);
}

.page-hero:not(.page-hero-home) .hero-media {
  display: none;
}

.hero-layout,
.hero-grid,
.grid-2,
.detail-grid,
.cta-grid,
.contact-grid,
.opportunity-grid,
.division-grid,
.metric-grid,
.credibility-grid,
.platform-grid {
  display: grid;
  gap: 24px;
}

.hero-layout,
.hero-grid,
.platform-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: start;
}

.hero-layout-home {
  grid-template-columns: 1fr;
  gap: 0;
  min-height: calc(100vh - 76px);
  align-items: center;
}

.grid-2,
.detail-grid,
.cta-grid,
.contact-grid,
.opportunity-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.division-grid,
.credibility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.division-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 72px;
}

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

.hero-card,
.card,
.timeline-card,
.stat-card,
.contact-card,
.cta-card,
.quote-card,
.form-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(15, 33, 51, 0.09);
  box-shadow: none;
}

.hero-card {
  padding: 28px;
}

.hero-card.hero-plain {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  max-width: none;
  position: relative;
  padding: 44px 0 36px;
}

.hero-title {
  font-size: clamp(2.25rem, 5.2vw, 3.9rem);
  line-height: 1.02;
  max-width: 14ch;
}

.hero-title-wide {
  max-width: 13ch;
}

.hero-title-home {
  max-width: none;
  white-space: normal;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(3.4rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #f5f7fb;
  position: relative;
  z-index: 1;
}

.hero-layout-home .hero-copy {
  max-width: 22ch;
}

.hero-copy {
  margin: 16px 0 0;
  max-width: 62ch;
  font-size: 1rem;
}

.hero-copy-home {
  margin-top: 30px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.45;
  color: rgba(181, 194, 215, 0.78);
  position: relative;
  z-index: 1;
}

.hero-home-mark {
  position: absolute;
  top: 50%;
  right: -0.02em;
  transform: translateY(-50%);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: clamp(18rem, 36vw, 34rem);
  font-weight: 700;
  line-height: 0.78;
  color: rgba(130, 152, 184, 0.16);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.home-main {
  background: #ffffff;
}

.platform-main {
  background: #ffffff;
}

.platform-main > .section {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 0;
  border-top: 0;
}

.platform-main > .section > .section-inner {
  padding: 72px 0;
}

.platform-main > .page-hero {
  padding-bottom: 0;
}

.platform-main > .page-hero .section-inner {
  padding-bottom: 20px;
}

.platform-main > .page-hero + .section {
  min-height: auto;
  display: block;
}

.platform-main > .page-hero + .section > .section-inner {
  padding-top: 0;
}

.page-hero-platform {
  padding: 36px 0 6px;
}

.hero-platform-plain {
  padding: 0;
}

.hero-title-platform {
  max-width: 14ch;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.96;
}

.hero-copy-platform {
  max-width: 34ch;
}

.home-main > .section {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: 0;
  border-top: 0;
}

.home-main > .section > .section-inner {
  padding: 72px 0;
}

.hero-actions,
.button-row,
.contact-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-media,
.section-media,
.division-media,
.cta-media {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: #ccd6df;
  background-size: cover;
  background-position: center;
  box-shadow: none;
}

.hero-layout-home .hero-media {
  min-height: 260px;
}

.hero-media::before,
.section-media::before,
.division-media::before,
.cta-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 37, 0.04), rgba(8, 23, 37, 0.22));
}

.hero-media-content,
.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.media-caption strong,
.hero-media-content strong {
  display: block;
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-media-content p,
.media-caption p {
  display: none;
}

.section {
  padding: 22px 0 46px;
  border-top: 1px solid rgba(15, 33, 51, 0.06);
}

.page-hero + .section {
  border-top: 0;
}

#divisions.section {
  border-top: 0;
}

#divisions + .section {
  border-top: 0;
}

#divisions + .section + .section {
  border-top: 0;
}

#divisions + .section + .section + .section {
  border-top: 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  line-height: 1.08;
  max-width: 18ch;
}

.section-title-compact {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.3rem, 2.3vw, 1.8rem);
  line-height: 1.15;
}

.section-copy {
  margin: 0;
  max-width: 60ch;
}

.section-copy-below {
  margin-top: 18px;
  max-width: 62ch;
}

.section-copy-tight {
  max-width: 48ch;
}

.section-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
}

.platform-grid {
  margin-top: 14px;
}

.platform-overview {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(15, 33, 51, 0.08);
  box-shadow: none;
}

.platform-copy-block {
  max-width: 74ch;
}

.platform-copy-block .body-copy + .body-copy {
  margin-top: 18px;
}

.platform-intro-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(220px, 0.7fr);
  gap: 40px;
  align-items: start;
}

.platform-graph-placeholder {
  align-self: start;
  justify-self: center;
  color: var(--blue-deep);
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 0.95;
  text-transform: lowercase;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 28px;
  margin-top: 56px;
}

.structure-card {
  padding: 18px 0 20px;
  border-top: 1px solid rgba(15, 33, 51, 0.08);
}

.structure-card-wide {
  grid-column: 1 / -1;
}

.structure-title {
  margin: 0 0 8px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.2rem;
  line-height: 1.12;
}

.structure-copy {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.platform-lifecycle {
  margin: 0;
  color: var(--blue-deep);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.platform-cycle-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.platform-main .timeline-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.platform-statement {
  margin-top: 42px;
  max-width: 68ch;
}

.platform-statement .quote-line {
  margin-top: 0;
  font-weight: 700;
  color: var(--blue-deep);
}

.note-what-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: start;
}

.note-what-grid .platform-copy-block {
  max-width: none;
}

.note-map-card {
  border: 1px solid rgba(15, 33, 51, 0.08);
  padding: 8px;
  background: #fff;
}

.note-map-image {
  display: block;
  width: 100%;
  height: auto;
  filter: grayscale(1) contrast(1.02);
}

.note-deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 56px;
}

.note-deal-card {
  border: 1px solid rgba(15, 33, 51, 0.1);
  background: #fff;
}

.note-deal-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 290px;
  background: #e7edf4;
  overflow: hidden;
}

.note-deal-photo-image {
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.note-deal-body {
  padding: 24px 26px 28px;
  border-top: 1px solid rgba(15, 33, 51, 0.1);
}

.note-deal-line {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.04rem;
  line-height: 1.28;
  color: var(--ink);
}

.note-deal-line + .note-deal-line {
  margin-top: 8px;
}

.metric-strip {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid rgba(15, 33, 51, 0.08);
  border-bottom: 1px solid rgba(15, 33, 51, 0.08);
}

.stat-card {
  padding: 18px;
  border: 0;
  border-right: 1px solid rgba(15, 33, 51, 0.08);
  border-radius: 0;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-value {
  font-size: 1.75rem;
  line-height: 1;
  color: var(--blue-deep);
}

.stat-label {
  margin-top: 8px;
}

.division-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
  padding: 16px 0 18px;
  border-radius: 0;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.division-card:hover {
  border-color: rgba(18, 63, 115, 0.24);
  transition: border-color 160ms ease;
}

.division-grid .division-card:nth-child(n + 5) {
  border-top: 1px solid rgba(15, 33, 51, 0.09);
}

.division-badge {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: #f3f6fa;
  color: var(--blue-deep);
  font-weight: 700;
}

.division-title {
  font-size: 1.3rem;
  line-height: 1.12;
  min-height: 2.9em;
}

.division-meta {
  margin: 0;
  flex: 1;
}

.division-rail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 600;
}

.timeline-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 56px;
}

.timeline-card {
  min-height: 100%;
  border: 0;
  border-right: 1px solid rgba(15, 33, 51, 0.08);
  border-radius: 0;
  padding: 18px 18px 22px;
}

.timeline-card:last-child {
  border-right: 0;
}

.timeline-title {
  margin-bottom: 10px;
  font-size: 1.15rem;
  line-height: 1.1;
}

.quote-card {
  background: #fff;
}

.quote-line {
  margin-top: 18px;
  font-size: 1.02rem;
}

.credibility-grid .card,
.opportunity-grid .card {
  min-height: 100%;
}

.contact-card,
.cta-card,
.form-card {
  min-height: 100%;
}

.contact-card strong,
.cta-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.contact-detail {
  display: block;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 26px;
  margin-top: 56px;
}

.team-card {
  display: flex;
  flex-direction: column;
  padding-top: 18px;
  border-top: 1px solid rgba(15, 33, 51, 0.08);
}

.team-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-sm);
  background: #eef2f6;
  margin-bottom: 16px;
}

.team-name {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.2rem;
  line-height: 1.1;
  min-height: 2em;
}

.team-role {
  margin: 0;
  color: var(--blue);
  font-size: 0.82rem;
  line-height: 1.15;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 2.1em;
}

.team-bio {
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-input,
.field-textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
  padding: 14px 16px;
}

.field-textarea {
  min-height: 140px;
  resize: vertical;
}

.opportunity-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
}

.opportunity-item {
  padding: 16px 0;
  border-radius: 0;
  background: #fff;
  border: 0;
  border-top: 1px solid rgba(15, 33, 51, 0.08);
}

.footer {
  padding: 0;
}

.footer-card {
  display: flex;
  flex-direction: column;
  gap: 52px;
  padding: 56px 40px 30px;
  border-radius: 0;
  background: #071a31;
  color: #fff;
}

.footer-copy {
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.58);
  margin: 16px 0 0;
}

.footer-title {
  margin: 0 0 10px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.35rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
  text-underline-offset: 6px;
}

.footer-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 1.9fr);
  gap: 48px;
  align-items: start;
}

.footer-wordmark {
  margin: 0;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.94;
  color: #ffffff;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  column-gap: 56px;
  row-gap: 28px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-heading {
  margin: 0 0 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom-copy {
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 28px;
}

.simple-grid {
  display: grid;
  gap: 0 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(15, 33, 51, 0.08);
}

.simple-item {
  padding: 18px 0 0;
}

.simple-item + .simple-item {
  border-left: 1px solid rgba(15, 33, 51, 0.08);
  padding-left: 28px;
}

.simple-title {
  margin: 0 0 8px;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1.15rem;
  line-height: 1.15;
}

.simple-copy {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
}

.cta-inline-home .button-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(15, 33, 51, 0.14);
}

.cta-inline-home .button-secondary:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.page-intro {
  margin-bottom: 22px;
}

.anchor-offset {
  scroll-margin-top: 110px;
}

.bg-home-hero {
  background-image: url("https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1400&q=80");
}

.bg-platform {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=80");
}

.bg-lifecycle {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1400&q=80");
}

.bg-opportunities {
  background-image: url("https://images.unsplash.com/photo-1462396240927-52058a6a84ec?auto=format&fit=crop&w=1400&q=80");
}

.bg-contact {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=80");
}

.bg-multifamily {
  background-image: url("https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1400&q=80");
}

.bg-management {
  background-image: url("https://images.unsplash.com/photo-1460317442991-0ec209397118?auto=format&fit=crop&w=1400&q=80");
}

.bg-commercial {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=80");
}

.bg-residential {
  background-image: url("https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=1400&q=80");
}

.bg-notes {
  background-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1400&q=80");
}

.bg-auction {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=80");
}

.bg-ai {
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1400&q=80");
}

.bg-process {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1400&q=80");
}

.bg-execution {
  background-image: url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1400&q=80");
}

@media (max-width: 1100px) {
  .hero-layout,
  .hero-grid,
  .platform-grid,
  .division-grid,
  .credibility-grid,
  .metric-grid,
  .timeline-grid,
  .simple-grid,
  .structure-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-card {
    padding: 24px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  .header-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 16px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .nav.open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding-top: 8px;
  }

  .nav-link,
  .nav-button {
    justify-content: space-between;
    width: 100%;
    min-height: 48px;
    border-radius: var(--radius-sm);
    background: #fff;
    border: 1px solid var(--line);
  }

  .mega-panel {
    position: static;
    transform: none;
    width: 100%;
    margin-top: 8px;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
  }

  .nav-item.open .mega-panel {
    display: block;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-layout,
  .hero-grid,
  .grid-2,
  .detail-grid,
  .cta-grid,
  .contact-grid,
  .opportunity-grid,
  .division-grid,
  .metric-grid,
  .credibility-grid,
  .timeline-grid,
  .platform-grid,
  .metric-strip,
  .simple-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .hero-title-home {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-title-platform {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .section-title-compact {
    white-space: normal;
  }

  .hero-copy-home {
    max-width: 28ch;
    font-size: 1.05rem;
  }

  .hero-home-mark {
    right: -0.08em;
    top: 44%;
    font-size: clamp(11rem, 34vw, 18rem);
  }

  .stat-card,
  .timeline-card,
  .simple-item,
  .simple-item + .simple-item {
    border-right: 0;
    border-left: 0;
    padding-left: 0;
  }

  .page-hero {
    padding-top: 26px;
  }

  .hero-layout-home {
    min-height: calc(100vh - 92px);
    align-items: center;
  }

  .platform-main .timeline-grid {
    grid-template-columns: 1fr;
  }

  .platform-intro-row {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .note-what-grid,
  .note-deal-grid {
    grid-template-columns: 1fr;
  }

  .platform-main > .section {
    min-height: calc(100vh - 92px);
  }

  .platform-main > .section > .section-inner {
    padding: 40px 0;
  }

  .platform-main > .page-hero .section-inner {
    padding-bottom: 14px;
  }

  .platform-main > .page-hero + .section > .section-inner {
    padding-top: 0;
  }

  .home-main > .section {
    min-height: calc(100vh - 92px);
  }

  .home-main > .section > .section-inner {
    padding: 40px 0;
  }

  .hero-title {
    max-width: none;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-media,
  .section-media,
  .division-media,
  .cta-media {
    min-height: 180px;
  }

  .footer-card {
    flex-direction: column;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero-card,
  .card,
  .timeline-card,
  .stat-card,
  .contact-card,
  .cta-card,
  .quote-card,
  .form-card,
  .platform-overview {
    padding: 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand-subtitle {
    letter-spacing: 0.18em;
  }
}
