:root {
  --bg: #eef2fb;
  --surface: rgba(255, 255, 255, 0.9);
  --surface-strong: #ffffff;
  --ink: #171d2b;
  --muted: #465062;
  --line: rgba(31, 36, 48, 0.1);
  --navy: #243b86;
  --navy-soft: #314ea8;
  --gold: #4f67bb;
  --gold-soft: #dbe4ff;
  --clay: #171d2b;
  --sage: #95a4d6;
  --shadow: 0 24px 60px rgba(36, 59, 134, 0.14);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1200px, calc(100vw - 2.2rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(49, 78, 168, 0.16), transparent 28%),
    radial-gradient(circle at right 15%, rgba(36, 59, 134, 0.12), transparent 24%),
    linear-gradient(180deg, #f7f9ff 0%, #eef3ff 55%, #e8eefb 100%);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(49, 78, 168, 0.34);
  outline-offset: 3px;
}

.site-shell { position: relative; overflow: clip; }
.site-shell::before, .site-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(14px);
}
.site-shell::before {
  top: 6rem;
  right: -6rem;
  width: 20rem;
  height: 20rem;
  background: rgba(49, 78, 168, 0.16);
}
.site-shell::after {
  bottom: 8rem;
  left: -4rem;
  width: 18rem;
  height: 18rem;
  background: rgba(149, 164, 214, 0.18);
}

.container { width: var(--container); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background:
    linear-gradient(90deg, rgba(247, 249, 255, 0.95) 0%, rgba(247, 249, 255, 0.84) 35%, rgba(247, 249, 255, 0.5) 62%, rgba(247, 249, 255, 0.18) 100%),
    url("assets/header-building.webp") center 16% / cover no-repeat;
  border-bottom: 1px solid rgba(31, 36, 48, 0.08);
  box-shadow: inset 0 -1px 0 rgba(36, 59, 134, 0.05);
}

.site-header .container {
  display: grid;
  gap: 1rem;
  padding: 1rem 0 1.1rem;
  position: relative;
}

.site-header .container::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  padding: 1rem 1.15rem 0.2rem;
}

.site-header .container > * { position: relative; z-index: 1; }

.header-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 59, 134, 0.08);
  box-shadow: 0 18px 45px rgba(36, 59, 134, 0.08);
}

.brand { display: flex; align-items: center; gap: 0.9rem; min-width: 0; }
.brand-logo { width: 12rem; max-width: 100%; height: auto; display: block; }

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(17, 35, 59, 0.08);
  background: rgba(255, 255, 255, 0.75);
  border-radius: 14px;
  color: var(--navy);
}

.nav { display: flex; align-items: center; gap: 0.2rem; flex: 1 1 auto; flex-wrap: nowrap; min-width: 0; }
.nav a, .nav summary {
  padding: 0.72rem 0.78rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  transition: 180ms ease;
}
.nav a:hover, .nav a[aria-current="page"], .nav summary:hover, .nav-group[open] summary {
  color: var(--navy);
  background: rgba(17, 35, 59, 0.07);
}

.nav-group { position: relative; }
.nav summary { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.45rem; }
.nav summary::-webkit-details-marker { display: none; }
.nav summary::after { content: "▾"; font-size: 0.8rem; color: rgba(36, 59, 134, 0.65); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 0;
  min-width: 15rem;
  padding: 0.55rem;
  display: grid;
  gap: 0.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(36, 59, 134, 0.08);
  box-shadow: 0 24px 45px rgba(36, 59, 134, 0.12);
}
.nav-dropdown a { border-radius: 14px; }

.nav-meta { display: flex; align-items: center; gap: 0.55rem; margin-left: auto; flex: 0 0 auto; flex-wrap: nowrap; justify-content: flex-end; }
.nav-kicker {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: var(--navy);
  color: #f9fbff;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(36, 59, 134, 0.18);
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

.button, .button-ghost, .button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  border: 0;
  cursor: pointer;
}
.button {
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #f9fbff;
  box-shadow: 0 12px 24px rgba(36, 59, 134, 0.24);
}
.button:hover, .button-ghost:hover, .button-link:hover { transform: translateY(-1px); }
.button-ghost { background: rgba(36, 59, 134, 0.08); color: var(--navy); }
.button-link { padding-inline: 0; color: var(--clay); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(49, 78, 168, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--gold);
}

.section { padding: 5.5rem 0; }
.section-title { max-width: 40rem; }
.section-title-center {
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
.section-title-center .eyebrow {
  margin-left: 0;
  margin-right: 0;
}
.section-title-wide { max-width: 1200px; }
.section-title h2 {
  margin: 0.9rem 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}
.section-title p { margin: 0; color: var(--muted); font-size: 1.05rem; }

.hero { padding: 4.2rem 0 3rem; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.9fr); gap: 2rem; align-items: stretch; }
.hero-copy { padding: 2rem 0; }
.hero-copy .eyebrow { margin-bottom: 0.35rem; }
.about-hero {
  padding: 4.5rem 0 3rem;
}

.about-hero .container {
  width: min(1200px, calc(100vw - 2.2rem));
}

.about-hero-grid {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 26rem);
}

.about-title {
  margin: 1rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

.about-lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.about-metrics {
  margin-top: 1.4rem;
}

.award-metrics.about-metrics span {
  background: rgba(36, 59, 134, 0.14);
  border-color: rgba(36, 59, 134, 0.24);
  color: var(--navy);
}

.about-portrait {
  justify-self: end;
  width: min(100%, 26rem);
  padding: 1rem;
  border-radius: 32px;
  background: linear-gradient(160deg, rgba(17, 29, 68, 0.92), rgba(49, 78, 168, 0.9));
  box-shadow: 0 28px 58px rgba(31, 42, 93, 0.2);
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.about-profile {
  margin-top: 0;
}

.contact-qr-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  width: min(100%, 24rem);
  justify-self: end;
  padding: 1.25rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.92));
  border: 1px solid rgba(36, 59, 134, 0.12);
  box-shadow: 0 24px 52px rgba(36, 59, 134, 0.12);
  text-align: center;
}

.contact-qr-frame {
  width: 100%;
  max-width: 18rem;
  padding: 0.9rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(36, 59, 134, 0.08);
  box-shadow: inset 0 0 0 1px rgba(36, 59, 134, 0.04);
}

.contact-qr-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.contact-qr-card strong {
  color: var(--navy);
  font-size: 1.08rem;
}

.contact-qr-card span {
  color: var(--muted);
  font-size: 0.94rem;
}

.hero h1 {
  margin: 1rem 0 1.2rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  max-width: 12ch;
}
.hero p { max-width: 42rem; font-size: 1.1rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.7rem; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.hero-note::before {
  content: "";
  width: 2.25rem;
  height: 1px;
  background: rgba(17, 35, 59, 0.25);
}

.hero-values {
  margin-top: 0.75rem;
  color: var(--navy);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.9rem; margin-top: 2rem; }
.hero-point, .card, .quote-card, .feature-card, .story-card, .contact-panel, .page-banner, .page-panel, .plan-card, .metric-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-point { border-radius: 18px; padding: 1rem; }
.hero-point strong { display: block; font-size: 1.35rem; color: var(--navy); }
.hero-point span { display: block; color: var(--muted); font-size: 0.9rem; }

.hero-visual {
  padding: 1.3rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(170deg, rgba(23, 29, 43, 0.97), rgba(36, 59, 134, 0.94) 48%, rgba(49, 78, 168, 0.9));
  color: #fdf7ee;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 1rem;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: auto -15% -20% auto;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: rgba(219, 228, 255, 0.12);
  border: 1px solid rgba(219, 228, 255, 0.16);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 18, 31, 0.18) 100%);
  pointer-events: none;
}
.hero-badge, .trust-list, .stack-list { position: relative; z-index: 1; }
.hero-badge {
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(219, 228, 255, 0.2);
  color: var(--gold-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.hero-visual h2 { margin: 0; font-size: 2rem; font-family: "Cormorant Garamond", Georgia, serif; line-height: 0.95; }
.hero-visual p { margin: 0; color: rgba(255, 247, 238, 0.8); }
.trust-list, .stack-list { display: grid; gap: 0.8rem; }
.trust-item, .stack-item {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.trust-item strong, .stack-item strong { display: block; font-size: 1rem; }
.trust-item span, .stack-item span { display: block; color: rgba(255, 247, 238, 0.76); font-size: 0.95rem; }
.stack-item-featured { background: rgba(17, 35, 59, 0.93); color: #fff6ea; }

.hero-art {
  position: relative;
  z-index: 1;
  min-height: 19rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)), rgba(255, 255, 255, 0.03);
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }

.grid-3, .grid-4, .quote-grid { display: grid; gap: 1rem; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quote-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card, .feature-card, .story-card, .page-panel, .plan-card, .metric-card {
  border-radius: 24px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}
.card h3, .feature-card h3, .story-card h3, .page-panel h3, .plan-card h3 {
  margin: 0 0 0.7rem;
  font-size: 1.3rem;
  color: var(--navy);
}
.card p, .feature-card p, .story-card p, .page-panel p, .plan-card p, .metric-card p {
  margin: 0;
  color: var(--muted);
}
.card ul, .page-panel ul, .plan-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}
.card ul li, .page-panel ul li, .plan-card ul li { margin-bottom: 0.5rem; }

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 1.65rem 1.45rem 1.4rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.92)),
    radial-gradient(circle at top right, rgba(79, 103, 187, 0.12), transparent 34%);
  border: 1px solid rgba(36, 59, 134, 0.1);
  box-shadow: 0 18px 38px rgba(36, 59, 134, 0.1);
}

.quote-card p {
  margin: 0;
  color: var(--clay);
  font-size: 1rem;
  line-height: 1.7;
}

.quote-card strong {
  display: block;
  margin-top: 1.25rem;
  color: var(--navy);
  font-size: 1rem;
}

.quote-card span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 0.35rem;
  left: 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.6rem;
  line-height: 1;
  color: rgba(79, 103, 187, 0.22);
  pointer-events: none;
}

.page-panel-categories {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 255, 0.88)),
    radial-gradient(circle at top right, rgba(79, 103, 187, 0.12), transparent 38%);
}

.page-panel-intro {
  max-width: 48rem;
}

.page-panel-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(36, 59, 134, 0.08);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-pill-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.25rem 0 0;
  padding: 0;
}

.category-pill-grid li {
  margin: 0;
  min-height: 100%;
  padding: 1rem 1.05rem 1rem 3rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(36, 59, 134, 0.1);
  box-shadow: 0 14px 28px rgba(36, 59, 134, 0.08);
  color: var(--clay);
  font-weight: 700;
  position: relative;
}

.category-pill-grid li::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  box-shadow: 0 0 0 0.28rem rgba(79, 103, 187, 0.12);
}

.memberperks-offer {
  padding: 1.5rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(36, 59, 134, 0.98), rgba(49, 78, 168, 0.94) 58%, rgba(79, 103, 187, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 22px 44px rgba(36, 59, 134, 0.18);
  color: #f8fbff;
}

.memberperks-copy {
  max-width: 58rem;
}

.memberperks-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(248, 251, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.memberperks-offer h3 {
  margin: 0.9rem 0 0.8rem;
  max-width: 22ch;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem);
  line-height: 1.02;
}

.memberperks-offer p {
  margin: 0;
  max-width: 60rem;
  color: rgba(243, 246, 255, 0.86);
  font-size: 1rem;
}

.memberperks-offer p + p {
  margin-top: 0.8rem;
}

.memberperks-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.memberperks-actions .button {
  flex: 1 1 0;
  min-height: 3.2rem;
  text-align: center;
}

.icon-card { padding-top: 4.8rem; }
.icon-card::before {
  content: attr(data-icon);
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(79, 103, 187, 0.18), rgba(36, 59, 134, 0.09));
  color: var(--navy);
  font-size: 1.2rem;
}

.section-band { position: relative; }
.section-band::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -2rem;
  transform: translateX(-50%);
  width: min(100%, 70rem);
  height: 12rem;
  background: url("assets/ornament-lines.svg") center/cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
}
.section-band .container { position: relative; }

.trust-marquee { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.trust-pill {
  padding: 1rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 35, 59, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 10px 30px rgba(17, 35, 59, 0.06);
}

.award-banner {
  margin-top: 1rem;
  padding: 1.35rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(122, 63, 242, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(17, 29, 68, 0.98), rgba(36, 59, 134, 0.95) 50%, rgba(79, 103, 187, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 48px rgba(31, 42, 93, 0.22);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.9fr);
  gap: 1.25rem;
  align-items: center;
  overflow: hidden;
}

.award-banner::before {
  content: "";
  position: absolute;
  inset: auto auto -5rem -4rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(8px);
  pointer-events: none;
}

.award-banner {
  position: relative;
}

.award-copy,
.award-visuals {
  position: relative;
  z-index: 1;
}

.award-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.award-image {
  width: 100%;
  max-width: 12rem;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(10, 18, 31, 0.24);
}

.award-video {
  width: 100%;
  min-height: 15rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(10, 18, 31, 0.24);
  background: #0f172a;
  position: relative;
}

.award-video iframe {
  display: block;
  width: 132%;
  height: 100%;
  min-height: 15rem;
  border: 0;
  margin-left: -16%;
}

.award-copy strong {
  display: block;
  margin-top: 0.8rem;
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1;
  max-width: 14ch;
  text-wrap: balance;
}

.award-copy p {
  margin: 0.9rem 0 0;
  max-width: 34rem;
  color: rgba(243, 246, 255, 0.8);
  font-size: 1rem;
}

.award-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.award-metrics span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f7f9ff;
  font-size: 0.88rem;
  font-weight: 700;
}

.award-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: center;
}

.award-founder {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 30px rgba(10, 18, 31, 0.16);
  width: min(100%, 18rem);
}

.award-founder-image {
  width: 100%;
  max-width: 13rem;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

.award-founder-copy strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.award-founder-copy span {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-video-feature {
  padding-top: 0;
}

.video-feature {
  display: grid;
  gap: 1.4rem;
  padding: 1.5rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(36, 59, 134, 0.1);
  box-shadow: 0 20px 48px rgba(36, 59, 134, 0.08);
}

.video-feature-copy {
  max-width: 46rem;
}

.video-feature-lead,
.video-feature-subtitle,
.video-feature-question {
  margin: 0;
}

.video-feature-lead {
  margin-top: 1rem;
  color: var(--navy);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.video-feature-subtitle {
  margin-top: 0.55rem;
  color: var(--clay);
  font-size: 1.02rem;
  font-weight: 700;
}

.video-feature-question {
  margin-top: 0.7rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.video-feature-image {
  margin-top: 1rem;
  overflow: hidden;
  max-width: 34rem;
  padding: 0.8rem;
  border-radius: 28px;
  border: 1px solid rgba(36, 59, 134, 0.14);
  box-shadow: 0 18px 42px rgba(36, 59, 134, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 242, 255, 0.92));
}

.video-feature-image img {
  display: block;
  width: 100%;
  height: 21rem;
  object-fit: cover;
  object-position: left center;
  border-radius: 20px;
}

.video-feature-copy h2 {
  margin: 0.9rem 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.video-feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.video-feature-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.video-feature-actions .button {
  flex: 1 1 0;
  min-height: 3.2rem;
  text-align: center;
}

.video-embed {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(36, 59, 134, 0.08);
  box-shadow: 0 16px 36px rgba(36, 59, 134, 0.12);
  background: #0f172a;
}

.video-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 18rem;
  border: 0;
}

.photo-embed {
  background: transparent;
}

.photo-embed img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 18rem;
  object-fit: cover;
  object-position: center;
}

.equal-access-feature {
  padding: 1.7rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(79, 103, 187, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 245, 255, 0.9));
  border: 1px solid rgba(36, 59, 134, 0.1);
  box-shadow: 0 20px 48px rgba(36, 59, 134, 0.08);
}

.equal-access-copy {
  max-width: 62rem;
}

.equal-access-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(36, 59, 134, 0.08);
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.equal-access-feature h2 {
  margin: 0.9rem 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--clay);
}

.equal-access-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.equal-access-feature p + p {
  margin-top: 1rem;
}

.join-cta {
  padding: 1.7rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(17, 29, 68, 0.98), rgba(36, 59, 134, 0.95) 54%, rgba(79, 103, 187, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 48px rgba(31, 42, 93, 0.2);
  color: #f8fbff;
}

.join-cta-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(248, 251, 255, 0.88);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.join-cta h2 {
  margin: 0.9rem 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.join-cta p {
  margin: 0;
  max-width: 56rem;
  color: rgba(243, 246, 255, 0.84);
  font-size: 1.04rem;
}

.page-banner {
  position: relative;
  padding: 1.8rem;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(17, 29, 68, 0.98), rgba(36, 59, 134, 0.94) 52%, rgba(79, 103, 187, 0.88)),
    url("assets/header-building.webp") center 30% / cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(23, 29, 43, 0.2);
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(17, 29, 68, 0.72), rgba(17, 29, 68, 0.44) 42%, rgba(17, 29, 68, 0.18) 100%);
  pointer-events: none;
}

.page-banner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.25rem;
  align-items: center;
}

.page-banner-copy,
.page-banner-side {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  margin: 0.9rem 0 0.8rem;
  max-width: 12ch;
  color: #ffffff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.page-banner p {
  margin: 0;
  max-width: 40rem;
  color: rgba(243, 246, 255, 0.82);
  font-size: 1.02rem;
}

.page-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.category-button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: 0.8rem;
}

.category-button-grid .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.page-banner-note {
  margin-top: 1rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

.page-banner-side {
  padding: 1.35rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(36, 59, 134, 0.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(36, 59, 134, 0.08);
}

.page-banner-side h3 {
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.supplemental-slideshow {
  position: relative;
  margin-bottom: 1rem;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 38px rgba(17, 35, 59, 0.18);
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
}

.supplemental-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: supplemental-slideshow-fade 32s infinite;
}

.supplemental-slide:nth-child(1) { animation-delay: 0s; }
.supplemental-slide:nth-child(2) { animation-delay: 4s; }
.supplemental-slide:nth-child(3) { animation-delay: 8s; }
.supplemental-slide:nth-child(4) { animation-delay: 12s; }
.supplemental-slide:nth-child(5) { animation-delay: 16s; }
.supplemental-slide:nth-child(6) { animation-delay: 20s; }
.supplemental-slide:nth-child(7) { animation-delay: 24s; }
.supplemental-slide:nth-child(8) { animation-delay: 28s; }

@keyframes supplemental-slideshow-fade {
  0%,
  10% {
    opacity: 0;
  }
  12%,
  22% {
    opacity: 1;
  }
  25%,
  100% {
    opacity: 0;
  }
}

.supplemental-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.page-banner-side p {
  color: var(--muted);
}

.page-side-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.page-side-item {
  display: grid;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(49, 78, 168, 0.08);
}

.page-side-item strong {
  color: var(--navy);
}

.page-side-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.page-banner .page-banner-side {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.page-banner .page-banner-side h3 {
  color: #ffffff;
}

.page-banner .page-banner-side p {
  color: rgba(243, 246, 255, 0.8);
}

.page-banner .page-side-item {
  background: rgba(255, 255, 255, 0.1);
}

.page-banner .page-side-item strong {
  color: #ffffff;
}

.page-banner .page-side-item span {
  color: rgba(243, 246, 255, 0.78);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-chip {
  padding: 1rem 1.1rem;
  border-radius: 22px;
}

.stat-chip strong {
  display: block;
  font-size: 1.45rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.stat-chip span {
  display: block;
  font-size: 0.92rem;
}

.stat-strip-banner {
  margin-top: 1.4rem;
}

.page-banner .stat-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.retention-stat-strip .stat-chip strong {
  color: #ffffff;
}

.retention-stat-strip .stat-chip span {
  color: rgba(255, 248, 240, 0.88);
}

.page-banner .stat-chip strong,
.page-banner .stat-chip span {
  color: #ffffff !important;
}

.page-banner .stat-chip span {
  opacity: 0.84;
}

.hispanic-slideshow {
  position: relative;
  overflow: hidden;
  margin-top: 1.5rem;
  border-radius: 30px;
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 18px 42px rgba(17, 35, 59, 0.12);
  background: rgba(255, 255, 255, 0.95);
  aspect-ratio: 16 / 7;
}

.hispanic-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  animation: hispanic-slideshow-fade 40s infinite;
}

.hispanic-slide:nth-child(1) { animation-delay: 0s; }
.hispanic-slide:nth-child(2) { animation-delay: 5s; }
.hispanic-slide:nth-child(3) { animation-delay: 10s; }
.hispanic-slide:nth-child(4) { animation-delay: 15s; }
.hispanic-slide:nth-child(5) { animation-delay: 20s; }
.hispanic-slide:nth-child(6) { animation-delay: 25s; }
.hispanic-slide:nth-child(7) { animation-delay: 30s; }
.hispanic-slide:nth-child(8) { animation-delay: 35s; }

@keyframes hispanic-slideshow-fade {
  0%,
  10% {
    opacity: 0;
  }
  12%,
  22% {
    opacity: 1;
  }
  25%,
  100% {
    opacity: 0;
  }
}

.hispanic-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 720px) {
  .category-pill-grid {
    grid-template-columns: 1fr;
  }

  .award-banner {
    grid-template-columns: 1fr;
  }
  .award-copy strong {
    max-width: none;
  }
  .award-visuals {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .award-founder {
    width: 100%;
  }
}

.image-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.image-card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(36, 59, 134, 0.08);
  box-shadow: var(--shadow);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #fff;
}

.image-card figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.image-card-wide {
  grid-column: span 2;
}

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.25rem; }
.app-showcase { display: grid; grid-template-columns: minmax(16rem, 0.85fr) minmax(0, 1.15fr); gap: 1.5rem; align-items: center; }
.app-phone { display: grid; place-items: center; }
.app-phone-shell {
  width: min(100%, 20rem);
  padding: 0.9rem;
  border-radius: 40px;
  background: #111318;
  box-shadow: 0 28px 60px rgba(23, 29, 43, 0.24);
}
.app-notch {
  width: 34%;
  height: 1.1rem;
  margin: 0 auto 0.6rem;
  border-radius: 999px;
  background: #050608;
}
.app-screen {
  border-radius: 30px;
  padding: 1rem;
  min-height: 34rem;
  background: linear-gradient(180deg, #a33cff 0%, #7f35f3 50%, #38195f 100%);
  color: #ffffff;
  display: grid;
  align-content: start;
  gap: 1rem;
}
.app-status { font-size: 0.78rem; opacity: 0.92; }
.app-hero-text span { display: block; font-size: 0.82rem; opacity: 0.85; }
.app-hero-text strong {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 0.92;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.app-hero-text p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.92rem;
}
.app-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3rem;
  border-radius: 999px;
  background: #111318;
  color: #ffffff;
  font-weight: 700;
}
.app-footer-card {
  margin-top: auto;
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.12);
}
.app-footer-card strong { display: block; }
.app-footer-card span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}
.app-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  text-align: center;
}

.app-resource-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 1rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #7a3ff2, #9b5cff);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(122, 63, 242, 0.26);
}
.metric-card strong {
  display: block;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.process { counter-reset: process; display: grid; gap: 1rem; }
.process-step {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 4.4rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 35, 59, 0.08);
}
.process-step::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
}

.contact-wrap { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 1.05fr); gap: 1.25rem; }
.contact-panel { border-radius: 30px; padding: 1.7rem; }
.contact-panel h3 { margin: 0 0 0.8rem; font-size: 1.5rem; color: var(--navy); }
.contact-list { display: grid; gap: 0.9rem; margin-top: 1.3rem; }
.contact-list a {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(17, 35, 59, 0.05);
}

.contact-list .contact-link-featured {
  background: linear-gradient(135deg, #7a3ff2, #9b5cff);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(122, 63, 242, 0.28);
  border: 1px solid rgba(122, 63, 242, 0.2);
  transform: scale(1.01);
}

.contact-list .contact-link-featured:hover {
  transform: translateY(-1px) scale(1.01);
}

.contact-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 5.5rem;
  gap: 0.9rem;
  align-items: center;
  margin: 1.1rem 0 0.4rem;
  padding: 0.8rem;
  border-radius: 20px;
  background: rgba(17, 35, 59, 0.05);
}

.contact-profile img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 18px;
}

.contact-profile strong {
  display: block;
  color: var(--navy);
}

.contact-profile span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}
.contact-form { display: grid; gap: 0.95rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.95rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.92rem; color: var(--navy); font-weight: 700; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid rgba(17, 35, 59, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
}
.field input:invalid, .field textarea:invalid { box-shadow: none; }
.field textarea { min-height: 10rem; resize: vertical; }
.anti-bot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-note, .fine-print { color: var(--muted); font-size: 0.92rem; }

.footer { padding: 1.4rem 0 2.5rem; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  border-radius: 24px;
  background: rgba(17, 35, 59, 0.92);
  color: rgba(249, 251, 255, 0.88);
}

.footer-tagline {
  display: inline-block;
  margin-top: 0.55rem;
  padding: 0.6rem 0.9rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(122, 63, 242, 0.22), rgba(79, 103, 187, 0.18));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 24px rgba(122, 63, 242, 0.16);
}

/* Accessibility pass: improve shared reading contrast and minimum text sizes */
.nav a,
.nav summary {
  font-size: 0.96rem;
}

.nav-kicker,
.hero-badge,
.app-status,
.app-hero-text span {
  font-size: 0.9rem;
}

.eyebrow,
.section-eyebrow,
.hero-values,
.fine-print,
.form-note,
.field label,
.contact-profile span,
.contact-qr-card span,
.hero-note,
.hero-point span,
.trust-item span,
.stack-item span,
.page-side-item span,
.page-banner-note {
  font-size: 1rem;
}

.card p,
.feature-card p,
.story-card p,
.page-panel p,
.plan-card p,
.metric-card p,
.section-title p,
.hero p,
.page-banner p,
.page-banner-side p,
.contact-panel p,
.process-step p {
  font-size: 1.06rem;
}

.page-side-item strong,
.contact-profile strong,
.trust-item strong,
.stack-item strong {
  font-size: 1.02rem;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.footer-button { white-space: nowrap; }
.footer-links a:hover { color: var(--gold-soft); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.family-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
}
.family-hero-copy,
.family-hero-side {
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}
.family-hero-copy {
  padding: 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(79, 103, 187, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 255, 0.92));
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 22px 48px rgba(36, 59, 134, 0.08);
}
.family-hero-copy h1 {
  margin: 1rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  max-width: 11ch;
}
.family-lead {
  margin: 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.08rem;
}
.family-hero-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.family-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 700;
}
.family-hero-points span::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--navy-soft));
  box-shadow: 0 0 0 6px rgba(79, 103, 187, 0.12);
}
.family-hero-side {
  display: grid;
  gap: 1rem;
}
.family-photo-card {
  min-height: 21rem;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 24px 52px rgba(17, 35, 59, 0.16);
}
.family-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.family-proof {
  padding: 1.35rem;
  border-radius: 26px;
  background:
    linear-gradient(155deg, rgba(17, 29, 68, 0.98), rgba(36, 59, 134, 0.95) 52%, rgba(79, 103, 187, 0.9));
  color: #f9fbff;
}
.family-proof strong {
  display: block;
  font-size: 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.family-proof p {
  margin: 0.55rem 0 0;
  color: rgba(255, 247, 238, 0.78);
}
.family-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}
.family-proof-grid div {
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.family-proof-grid span,
.family-mini-card span {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 247, 238, 0.72);
}
.family-proof-grid strong,
.family-mini-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  font-family: inherit;
}

.family-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.family-stat {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 12px 30px rgba(17, 35, 59, 0.06);
}
.family-stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.4rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.family-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.family-video {
  padding: 1rem;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 246, 255, 0.92));
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 18px 42px rgba(17, 35, 59, 0.08);
}
.family-video-frame {
  overflow: hidden;
  border-radius: 24px;
  aspect-ratio: 16 / 9;
  background: #0f1728;
}
.family-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.family-video-caption {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.family-image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.family-image-card {
  margin: 0;
  min-height: 18rem;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 18px 42px rgba(17, 35, 59, 0.1);
  background: rgba(255, 255, 255, 0.9);
}
.family-image-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.family-plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.family-plan-card {
  position: relative;
  padding: 1.55rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 248, 255, 0.94));
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 18px 45px rgba(17, 35, 59, 0.08);
}
.family-plan-card-featured {
  background:
    radial-gradient(circle at top right, rgba(79, 103, 187, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(239, 244, 255, 0.98));
  border-color: rgba(49, 78, 168, 0.2);
  transform: translateY(-0.35rem);
}
.family-plan-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(36, 59, 134, 0.1);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.family-plan-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}
.family-plan-kicker {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.family-plan-price {
  color: var(--navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.2rem;
  line-height: 1;
}
.family-plan-price span {
  font-size: 0.95rem;
  color: var(--muted);
}
.family-plan-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.45rem;
  color: var(--navy);
}
.family-plan-card p {
  margin: 0;
  color: var(--muted);
}
.family-checklist {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.family-checklist li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink);
}
.family-checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--navy);
  font-size: 1.1rem;
}

.family-band {
  position: relative;
}
.family-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.family-included-grid,
.family-mini-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
.family-included-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.family-included-item,
.family-mini-card {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(17, 35, 59, 0.04);
  border: 1px solid rgba(17, 35, 59, 0.08);
}
.family-included-item strong,
.family-mini-card strong {
  display: block;
  color: var(--navy);
}
.family-included-item span,
.family-mini-card span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
}

.family-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.family-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.6rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(79, 103, 187, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(17, 29, 68, 0.98), rgba(36, 59, 134, 0.95));
  color: #f9fbff;
  box-shadow: 0 24px 48px rgba(17, 35, 59, 0.18);
}
.family-cta h2 {
  margin: 0.8rem 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.96;
}
.family-cta p {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 247, 238, 0.82);
}
.family-cta .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fdf7ee;
}
.family-cta .eyebrow::before {
  background: #f7d58b;
}
.family-cta-actions {
  display: grid;
  gap: 0.8rem;
  min-width: 15rem;
}

.business-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.88fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
}
.business-hero-copy,
.business-hero-side {
  border-radius: 30px;
}
.business-hero-copy {
  padding: 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(79, 103, 187, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 247, 255, 0.92));
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 22px 48px rgba(36, 59, 134, 0.08);
}
.business-hero-copy h1 {
  margin: 1rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  max-width: 11ch;
}
.business-lead {
  margin: 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.08rem;
}
.business-hero-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.business-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 700;
}
.business-hero-points span::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #2b478f, #1b2b55);
  box-shadow: 0 0 0 6px rgba(36, 59, 134, 0.1);
}
.business-hero-side {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}
.business-photo-card {
  min-height: 19rem;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 24px 52px rgba(17, 35, 59, 0.16);
}
.business-photo-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.business-proof {
  width: 100%;
  padding: 1.45rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(122, 63, 242, 0.12), transparent 30%),
    linear-gradient(155deg, rgba(17, 29, 68, 0.98), rgba(36, 59, 134, 0.95) 54%, rgba(21, 37, 77, 0.92));
  color: #f9fbff;
  box-shadow: 0 24px 52px rgba(17, 35, 59, 0.16);
}
.business-proof strong {
  display: block;
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.business-proof p {
  margin: 0.6rem 0 0;
  color: rgba(255, 247, 238, 0.8);
}
.business-proof-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}
.business-proof-grid div {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.business-proof-grid span {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 247, 238, 0.72);
}
.business-proof-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  font-family: inherit;
}

.business-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.business-stat {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 12px 30px rgba(17, 35, 59, 0.06);
}
.business-stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.business-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.business-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.business-service-card {
  padding: 1.35rem;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 248, 255, 0.93));
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 16px 38px rgba(17, 35, 59, 0.07);
}
.business-service-card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.3rem;
}
.business-service-card p {
  margin: 0;
  color: var(--muted);
}

.business-band {
  position: relative;
}
.business-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.business-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}
.business-list-item {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(17, 35, 59, 0.04);
  border: 1px solid rgba(17, 35, 59, 0.08);
}
.business-list-item strong {
  display: block;
  color: var(--navy);
}
.business-list-item span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
}

.business-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.business-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.6rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(79, 103, 187, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(17, 29, 68, 0.98), rgba(36, 59, 134, 0.95));
  color: #f9fbff;
  box-shadow: 0 24px 48px rgba(17, 35, 59, 0.18);
}
.business-cta h2 {
  margin: 0.8rem 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}
.business-cta p {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 247, 238, 0.82);
}
.business-cta .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fdf7ee;
}
.business-cta .eyebrow::before {
  background: #f7d58b;
}
.business-cta-actions {
  display: grid;
  gap: 0.8rem;
  min-width: 15rem;
}

.estate-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(19rem, 0.88fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 2.5rem;
}
.estate-hero-copy,
.estate-hero-side {
  border-radius: 30px;
}
.estate-hero-copy {
  padding: 2.2rem;
  background:
    radial-gradient(circle at top left, rgba(196, 162, 94, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 247, 241, 0.94));
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 22px 48px rgba(36, 59, 134, 0.08);
}
.estate-hero-copy h1 {
  margin: 1rem 0 1rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  max-width: 11ch;
}
.estate-lead {
  margin: 0;
  max-width: 44rem;
  color: var(--muted);
  font-size: 1.08rem;
}
.estate-hero-points {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.35rem;
}
.estate-hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-weight: 700;
}
.estate-hero-points span::before {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #b38a46, #243b86);
  box-shadow: 0 0 0 6px rgba(179, 138, 70, 0.12);
}
.estate-hero-side {
  display: flex;
  align-items: stretch;
}
.estate-proof {
  width: 100%;
  padding: 1.45rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(196, 162, 94, 0.14), transparent 30%),
    linear-gradient(155deg, rgba(27, 40, 76, 0.98), rgba(36, 59, 134, 0.95) 56%, rgba(72, 56, 25, 0.88));
  color: #f9fbff;
  box-shadow: 0 24px 52px rgba(17, 35, 59, 0.16);
}
.estate-proof strong {
  display: block;
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.estate-proof p {
  margin: 0.6rem 0 0;
  color: rgba(255, 247, 238, 0.8);
}
.estate-proof-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}
.estate-proof-grid div {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.estate-proof-grid span {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 247, 238, 0.72);
}
.estate-proof-grid strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
  font-family: inherit;
}

.estate-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}
.estate-stat {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 12px 30px rgba(17, 35, 59, 0.06);
}
.estate-stat strong {
  display: block;
  color: var(--navy);
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.estate-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.estate-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.estate-card {
  padding: 1.45rem;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 247, 242, 0.94));
  border: 1px solid rgba(17, 35, 59, 0.08);
  box-shadow: 0 16px 38px rgba(17, 35, 59, 0.07);
}
.estate-card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy);
  font-size: 1.34rem;
}
.estate-card p {
  margin: 0;
  color: var(--muted);
}

.estate-band {
  position: relative;
}
.estate-two-up {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.estate-value-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1rem;
}
.estate-value-item {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(17, 35, 59, 0.04);
  border: 1px solid rgba(17, 35, 59, 0.08);
}
.estate-value-item strong {
  display: block;
  color: var(--navy);
}
.estate-value-item span {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
}

.estate-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.estate-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1.6rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(196, 162, 94, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(17, 29, 68, 0.98), rgba(36, 59, 134, 0.95));
  color: #f9fbff;
  box-shadow: 0 24px 48px rgba(17, 35, 59, 0.18);
}
.estate-cta h2 {
  margin: 0.8rem 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.96;
}
.estate-cta p {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 247, 238, 0.82);
}
.estate-cta .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fdf7ee;
}
.estate-cta .eyebrow::before {
  background: #f7d58b;
}
.estate-cta-actions {
  display: grid;
  gap: 0.8rem;
  min-width: 15rem;
}

@media (max-width: 1080px) {
  .nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.65rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 35, 59, 0.08);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .nav-toggle { display: inline-grid; place-items: center; }
  .header-bottom {
    position: relative;
    display: block;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .nav-meta { display: none; }
  .nav a { padding: 0.9rem 1rem; border-radius: 16px; }
  .nav-group { width: 100%; }
  .nav summary { width: 100%; justify-content: space-between; border-radius: 16px; }
  .nav-dropdown {
    position: static;
    min-width: 0;
    margin-top: 0.35rem;
    padding: 0.35rem 0 0 0.75rem;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .header-actions { margin-left: auto; }
  .header-top {
    padding: 0;
  }
  .site-header .container {
    padding: 0.9rem 0 1rem;
  }
  .site-header {
    background:
      linear-gradient(90deg, rgba(247, 249, 255, 0.96) 0%, rgba(247, 249, 255, 0.87) 46%, rgba(247, 249, 255, 0.58) 72%, rgba(247, 249, 255, 0.22) 100%),
      url("assets/header-building.webp") center 12% / cover no-repeat;
  }
  .hero-grid, .contact-wrap, .split, .grid-3, .grid-4, .trust-marquee, .image-wall, .app-showcase, .family-hero, .family-two-up, .family-plan-grid, .family-journey, .family-stat-strip, .family-image-grid, .business-hero, .business-two-up, .business-service-grid, .business-journey, .business-stat-strip, .estate-hero, .estate-two-up, .estate-card-grid, .estate-journey, .estate-stat-strip { grid-template-columns: 1fr; }
  .hero-points { grid-template-columns: 1fr; }
  .family-proof-grid, .family-included-grid, .business-list-grid { grid-template-columns: 1fr; }
  .family-plan-card-featured { transform: none; }
  .family-cta,
  .business-cta,
  .estate-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .family-cta-actions,
  .business-cta-actions,
  .estate-cta-actions {
    min-width: 0;
  }
  .about-portrait {
    justify-self: start;
    width: min(100%, 22rem);
  }
}

@media (max-width: 720px) {
  .site-header .container { align-items: start; }
  .brand-logo { width: 9.5rem; }
  .site-header .container {
    padding: 0.75rem 0 0.9rem;
  }
  .site-header {
    background:
      linear-gradient(90deg, rgba(247, 249, 255, 0.97) 0%, rgba(247, 249, 255, 0.9) 52%, rgba(247, 249, 255, 0.72) 100%),
      url("assets/header-building.webp") center 10% / cover no-repeat;
  }
  .header-top { padding: 0.7rem 0 0; }
  .header-actions .button-ghost { display: none; }
  .contact-profile { grid-template-columns: 1fr; }
  .hero, .section { padding: 4rem 0; }
  .hero h1, .section-title h2 { line-height: 0.97; }
  .form-grid { grid-template-columns: 1fr; }
  .button, .button-ghost { width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .page-banner-actions,
  .family-cta-actions,
  .business-cta-actions,
  .estate-cta-actions { grid-template-columns: 1fr; }
}
