:root {
  /* Brand colours derive from the theme.json palette (single source of truth).
     The --wp--preset--color--* custom properties are emitted by WordPress from
     theme.json; fallbacks mirror the palette for non-WP contexts.
     NOTE: the two -rgb tokens and --max are literals — update them alongside
     theme.json (primary-red / accent-red / settings.layout.contentSize). */
  --red: var(--wp--preset--color--primary-red, #b90717);
  --red-rgb: 185, 7, 23;
  --red2: var(--wp--preset--color--accent-red, #e51b2f);
  --red2-rgb: 229, 27, 47;
  --black: var(--wp--preset--color--black, #0d0d0f);
  --ink: var(--wp--preset--color--ink, #161616);
  --soft: var(--wp--preset--color--soft, #f6f3ef);
  --white: #fff;
  --gray: var(--wp--preset--color--gray, #6b6f76);
  --line: var(--wp--preset--color--line, #e6e0d8);
  --radius: 24px;
  --shadow: 0 20px 55px rgba(13, 13, 15, 0.12);
  --max: 1180px; /* tracks theme.json settings.layout.contentSize */
  --header-stack: 121px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.topbar {
  background: var(--black);
  color: #fff;
  font-size: 14px;
}
.topbar .inner {
  max-width: var(--max);
  margin: auto;
  padding: 9px 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.topbar a {
  color: #fff;
  opacity: 0.9;
}
.topbar strong {
  color: #fff;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.nav {
  max-width: var(--max);
  margin: auto;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.brand span {
  display: block;
}
.brand small {
  display: block;
  color: var(--gray);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.menu {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 750;
  font-size: 15px;
}
.menu-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-list li {
  position: relative;
}
.menu-list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 9px 11px;
  border-radius: 10px;
  white-space: nowrap;
}
.menu-list a:hover {
  color: var(--red);
}
.menu-list .current-menu-item > a,
.menu-list .current-menu-ancestor > a,
.menu-list a.active {
  color: var(--red);
}
/* caret on parent items */
.menu-list .menu-item-has-children > a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.55;
  transition: transform 0.2s ease;
}
/* desktop dropdown panel */
.sub-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  min-width: 226px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.16s ease,
    transform 0.16s ease,
    visibility 0.16s;
  z-index: 40;
}
/* invisible bridge across the gap so the dropdown stays open on the way down */
.menu-list > li.menu-item-has-children::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}
.menu-list > li:hover > .sub-menu,
.menu-list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu-list > li:hover > a::after,
.menu-list > li:focus-within > a::after {
  transform: translateY(1px) rotate(-135deg);
}
.sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  white-space: nowrap;
  color: var(--ink);
  font-size: 14.5px;
}
.sub-menu a:hover,
.sub-menu .current-menu-item > a {
  background: var(--soft);
  color: var(--red);
}
.btn,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 19px;
  font-weight: 850;
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 25px rgba(var(--red-rgb), 0.22);
  border: 0;
  text-decoration: none;
}
.btn.dark,
.is-style-dark .wp-block-button__link {
  background: var(--black);
  box-shadow: none;
}
.btn.light,
.is-style-light .wp-block-button__link {
  background: #fff;
  color: var(--black);
  box-shadow: none;
  border: 1px solid var(--line);
}
.btn:hover,
.wp-block-button__link:hover {
  transform: translateY(-1px);
}
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 0%,
      rgba(var(--red2-rgb), 0.18),
      transparent 34%
    ),
    linear-gradient(135deg, #fff 0%, #fbf8f3 50%, #f3e9df 100%);
}
.hero:before {
  content: "";
  position: absolute;
  inset: auto -10% -45% auto;
  width: 620px;
  height: 620px;
  background: repeating-linear-gradient(
    135deg,
    rgba(var(--red-rgb), 0.09) 0 10px,
    transparent 10px 24px
  );
  border-radius: 50%;
  opacity: 0.9;
}
.hero .inner {
  max-width: var(--max);
  margin: auto;
  padding: 88px 22px 78px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 13px;
  font-weight: 850;
  color: var(--red);
  font-size: 14px;
}
.eyebrow:before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--red);
  border-radius: 50%;
}
h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.95;
  margin: 22px 0 18px;
  letter-spacing: -0.06em;
}
h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}
h3 {
  font-size: 24px;
  line-height: 1.14;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
p {
  margin: 0 0 16px;
  color: #3f4248;
}
.lead {
  font-size: 21px;
  color: #333;
  max-width: 680px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.hero-card {
  position: relative;
  background: var(--black);
  border-radius: 36px;
  padding: 28px;
  color: #fff;
  box-shadow: var(--shadow);
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.hero-card:before {
  content: "";
  position: absolute;
  inset: -80px -70px auto auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(var(--red2-rgb), 0.9),
    rgba(var(--red-rgb), 0.18),
    transparent 70%
  );
}
.hero-card .logo-mark {
  width: 210px;
  opacity: 0.95;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.35));
  position: relative;
  z-index: 1;
  margin: auto;
}
.stat-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 17px;
}
.stat b {
  font-size: 26px;
  display: block;
}
.stat span {
  color: #e8e8e8;
  font-size: 13px;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 78px 22px;
}
.section.alt {
  max-width: none;
  background: #fff;
}
.section.alt > .wrap {
  max-width: var(--max);
  margin: auto;
}
.kicker {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  margin-bottom: 12px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.grid.two {
  grid-template-columns: repeat(2, 1fr);
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(13, 13, 15, 0.05);
}
.alt .card {
  background: #faf8f4;
}
.icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--red), #ec5865);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}
/* Scoped to div.photo: WordPress tags avatar <img> with class "photo" (hCard
   microformat), so a bare .photo rule blows up the admin-bar Gravatar to 360px. */
div.photo {
  border-radius: 32px;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(13, 13, 15, 0.72), rgba(var(--red-rgb), 0.32)),
    url("../img/community.svg") center/cover;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.photo.family {
  background:
    linear-gradient(135deg, rgba(13, 13, 15, 0.62), rgba(var(--red-rgb), 0.25)),
    url("../img/family.svg") center/cover;
}
.photo.book {
  background:
    linear-gradient(135deg, rgba(13, 13, 15, 0.76), rgba(var(--red-rgb), 0.25)),
    url("../img/book.svg") center/cover;
}
.quote {
  font-size: 25px;
  line-height: 1.25;
  color: var(--ink);
  font-weight: 850;
}
.list {
  display: grid;
  gap: 12px;
}
.check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.check:before {
  content: "✓";
  flex: 0 0 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  margin-top: 2px;
}
.band {
  background: var(--black);
  color: #fff;
  border-radius: 36px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.band h2,
.band p {
  color: #fff;
}
.band p {
  opacity: 0.85;
}
.band:after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  background: rgba(var(--red-rgb), 0.45);
  border-radius: 50%;
}
.form {
  display: grid;
  gap: 12px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  background: #fff;
}
.form textarea {
  min-height: 140px;
}
.footer {
  background: var(--black);
  color: #fff;
}
.footer .inner {
  max-width: var(--max);
  margin: auto;
  padding: 44px 22px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
}
.footer p,
.footer a {
  color: #c9cbd1;
}
.footer h4 {
  margin: 0 0 12px;
}
.footer a {
  display: block;
  margin: 7px 0;
}
.page-hero {
  background: linear-gradient(
    135deg,
    var(--ink),
    color-mix(in srgb, var(--red) 28%, var(--black))
  );
  color: #fff;
}
.page-hero .section {
  padding: 62px 22px;
}
.page-hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  margin: 0 0 12px;
}
.page-hero p {
  color: #e8e8e8;
  max-width: 760px;
}
.pillrow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.pill {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
}
.mini {
  font-size: 14px;
  color: var(--gray);
}
.nav-note {
  background: #fff3f4;
  border: 1px solid #ffd0d5;
  border-radius: 18px;
  padding: 18px;
  margin-top: 20px;
  color: color-mix(in srgb, var(--red) 55%, black);
}
.timeline {
  display: grid;
  gap: 16px;
}
.timeitem {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  border-left: 4px solid var(--red);
  padding-left: 16px;
}
.timeitem b {
  color: var(--red);
}
@media (max-width: 900px) {
  .hero .inner,
  .split,
  .band,
  .footer .inner {
    grid-template-columns: 1fr;
  }
  .grid,
  .grid.two {
    grid-template-columns: 1fr;
  }
  .menu {
    display: none;
  }
  .hero-card {
    min-height: 380px;
  }
  h1 {
    letter-spacing: -0.04em;
  }
  .topbar .inner {
    display: block;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  div.photo {
    min-height: 240px;
  }
}

/* --- logo refinements --- */
.hero-card .logo-mark {
  background: #fff;
  border-radius: 28px;
  padding: 18px;
  width: 240px;
}
.footer .brand img {
  background: #fff;
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

/* --- book page refresh --- */
.book-hero {
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(var(--red2-rgb), 0.14),
      transparent 24%
    ),
    linear-gradient(135deg, #f8f4ef 0%, #fff 35%, #efe5db 100%);
  color: var(--ink);
}
.book-hero .section {
  padding: 76px 22px;
}
.book-page .page-hero h1 {
  color: var(--ink);
  margin: 0 0 18px;
}
.book-page .page-hero p {
  color: #40444b;
  max-width: unset;
}
.book-spotlight {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}
.book-lead {
  font-size: 20px;
  line-height: 1.65;
  max-width: 700px;
}
.pillrow.dark .pill {
  border-color: rgba(13, 13, 15, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}
.book-note {
  margin-top: 18px;
  background: #fff3f4;
  border: 1px solid #ffd0d5;
  border-radius: 18px;
  padding: 18px;
  color: color-mix(in srgb, var(--red) 55%, black);
  max-width: 700px;
}
.book-shell {
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px;
  min-height: 640px;
}
.book-shell:before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 50% 18%,
      rgba(var(--red2-rgb), 0.16),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      var(--ink),
      color-mix(in srgb, var(--red) 28%, var(--black))
    );
  box-shadow: var(--shadow);
}
.book-shell:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: rgba(var(--red2-rgb), 0.18);
  filter: blur(8px);
}
.book-cover-art {
  position: relative;
  z-index: 1;
  max-width: 390px;
  width: 100%;
  border-radius: 26px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(-4deg);
}
.book-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.metric-card {
  padding-top: 18px;
}
.metric-top {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff3f4;
  color: var(--red);
  font-weight: 850;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.book-grid-two {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 34px;
  align-items: start;
}
.stacked-cards {
  display: grid;
  gap: 20px;
}
.quote-card {
  background: linear-gradient(135deg, #fff, #faf5f0);
}
.timeline-card {
  background: #fff;
}
@media (max-width: 900px) {
  .book-spotlight,
  .book-metrics,
  .book-grid-two {
    grid-template-columns: 1fr;
  }
  .book-shell {
    min-height: 420px;
    padding: 18px;
  }
  .book-cover-art {
    max-width: 320px;
    transform: none;
  }
}

/* --- cinematic video hero --- */
.video-hero {
  position: relative;
  min-height: min(90vh, calc(100svh - var(--header-stack)));
  height: calc(100svh - var(--header-stack));
  max-height: calc(100svh - var(--header-stack));
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--black);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(var(--red-rgb), 0.35),
      transparent 32%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.62) 42%,
      rgba(0, 0, 0, 0.32) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 120px 22px 100px;
  color: #fff;
}
.video-hero .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  backdrop-filter: blur(10px);
}
.video-hero h1 {
  max-width: 780px;
  color: #fff;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}
.video-hero .lead {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.video-hero .btn.light {
  background: rgba(255, 255, 255, 0.92);
  color: var(--black);
  border-color: rgba(255, 255, 255, 0.4);
}
.video-hero .nav-note {
  display: inline-block;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  backdrop-filter: blur(10px);
}
.hero-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sound-toggle,
.play-toggle {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.56);
  color: #fff;
  border-radius: 999px;
  padding: 11px 15px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
  font: inherit;
}
.sound-toggle:hover,
.play-toggle:hover {
  background: rgba(var(--red-rgb), 0.85);
}
@media (max-width: 900px) {
  :root {
    --header-stack: 173px;
  }
  .video-hero {
    min-height: min(78vh, calc(100svh - var(--header-stack)));
    height: calc(100svh - var(--header-stack));
    max-height: calc(100svh - var(--header-stack));
    text-align: center;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
  }
  .hero-content {
    padding: 56px 18px 12px;
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .video-hero h1 {
    font-size: clamp(31px, 8.8vw, 42px);
    margin: 14px 0 12px;
    line-height: 1.02;
  }
  .video-hero .lead {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 0;
  }
  .video-hero h1,
  .video-hero .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .video-hero .nav-note {
    margin-top: 12px;
    margin-bottom: 8px;
    padding: 14px 16px;
    font-size: 14px;
  }
  .video-hero .actions {
    margin-top: 14px;
    gap: 8px;
    justify-content: center;
  }
  .hero-overlay {
    background:
      radial-gradient(
        circle at 50% 20%,
        rgba(var(--red-rgb), 0.32),
        transparent 36%
      ),
      linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.72) 100%);
  }
  .hero-controls {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    padding: 0 18px 16px;
    justify-content: center;
    flex-shrink: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
  }
}

/* --- LinkedIn social --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  color: var(--black);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}
.social-link:hover {
  transform: translateY(-1px);
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 25px rgba(var(--red-rgb), 0.22);
}
.linkedin-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.linkedin-cta {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(13, 13, 15, 0.05);
}
.linkedin-cta .btn {
  margin-top: 12px;
}
.linkedin-cta h2 {
  margin-bottom: 12px;
}
.linkedin-subtle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.linkedin-subtle p {
  margin-bottom: 0;
  font-size: 18px;
  color: #3f4248;
}
.linkedin-contact {
  margin-top: 28px;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.footer-linkedin-text {
  display: inline-flex;
  align-items: center;
  font-weight: 800;
  color: #fff;
}
.footer-linkedin-text:hover {
  color: #fff;
  opacity: 0.92;
}
.footer .social-link {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}
.footer .social-link:hover {
  background: var(--red);
  color: #fff;
}
@media (max-width: 900px) {
  .nav-actions {
    gap: 10px;
  }
  .footer-social {
    margin-top: 14px;
  }
}

/* --- mobile nav toggle + dropdown --- */
.nav {
  position: relative;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.menu .menu-cta {
  display: none;
}
@media (max-width: 1100px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-actions {
    display: none;
  }
  .nav .menu {
    display: none;
  }
  .nav.open .menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: #fff;
    padding: 10px 22px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 30;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }
  .nav.open .menu-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav.open .menu-list > li > a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  /* submenus expand inline + indented on mobile (no hover needed) */
  .nav.open .menu-item-has-children > a::after {
    display: none;
  }
  .nav.open .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    min-width: 0;
    padding: 0 0 0 14px;
    background: transparent;
  }
  .nav.open .sub-menu a {
    padding: 11px 4px;
    border-bottom: 1px solid var(--line);
    color: var(--gray);
  }
  .nav.open .menu .menu-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    border: 0;
    border-bottom: 0;
    border-radius: 999px;
    padding: 13px 19px;
    font-weight: 850;
    background: var(--black);
    color: #fff;
  }
  .nav.open .menu .menu-cta.cta-primary {
    background: var(--red);
  }
  .nav.open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav.open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav.open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* --- about portraits + framed photos --- */
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.hero-portrait {
  border-radius: 28px;
  overflow: hidden;
  max-width: 380px;
  justify-self: end;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
.framed {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}
.framed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-figure {
  display: grid;
  gap: 10px;
}
.story-figure figcaption {
  font-size: 14px;
  color: var(--gray);
}
.story-figure .framed {
  min-height: 0;
}
.story-figure .framed img {
  aspect-ratio: 4 / 5;
}

/* --- media & public engagement --- */
.engage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.engage {
  background: #faf8f4;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
}
.engage h4 {
  margin: 0 0 6px;
  font-size: 16px;
}
.engage p {
  margin: 0;
  font-size: 14px;
  color: #51555c;
}
.engage .tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

/* --- team / advisor cards --- */
.person {
  text-align: left;
}
.person .avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  box-shadow: 0 12px 28px rgba(13, 13, 15, 0.16);
  border: 3px solid #fff;
}
.person .role {
  color: var(--red);
  font-weight: 850;
  font-size: 14px;
  margin: 0 0 8px;
}

/* --- welcome banner + values --- */
.welcome-band {
  background: var(--red);
  color: #fff;
  text-align: center;
  border-radius: 24px;
  padding: 26px 22px;
}
.welcome-band span {
  display: block;
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 3vw, 30px);
}
.welcome-band small {
  display: block;
  margin-top: 6px;
  opacity: 0.9;
  font-size: 15px;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hero-portrait {
    justify-self: start;
    max-width: 280px;
  }
  .engage-grid {
    grid-template-columns: 1fr;
  }
}

/* --- form labels (static demo forms) --- */
.form label {
  display: grid;
  gap: 6px;
  font-weight: 750;
  font-size: 14px;
  color: var(--ink);
}

/* --- inline person row (bio left, photo right) --- */
.person-row {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 18px;
  align-items: center;
}
.person-row .role {
  color: var(--red);
  font-weight: 850;
  font-size: 13px;
  margin-top: 2px;
}
.person-row .person-photo {
  min-height: 0;
}
.person-row .person-photo img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media (max-width: 900px) {
  .person-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .person-row .person-photo {
    max-width: 200px;
  }
}
