:root {
      /* MAIN SITE COLORS */
      --bg: #f5f4f0;
      --surface: #ffffff;
      --text: #161616;
      --muted: #66645f;
      --line: #d9d6cf;
      --accent: #101010;
      --accent-dark: #15343f;
      --gold: #b48a3a;
      --max-width: 980px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;

      /*
        BACKGROUND OPTIONS

        Solid background:
        background: var(--bg);

        Current subtle gradient:
      */
      background:
        radial-gradient(circle at top right, rgba(31, 74, 90, 0.08), transparent 34rem),
        var(--bg);

      /*
        To use a background image instead, replace the background above with:

        background:
          linear-gradient(rgba(245,244,240,0.82), rgba(245,244,240,0.82)),
          url("images/background.jpg") center / cover no-repeat fixed;
      */

      color: var(--text);

      /* GLOBAL BODY FONT */
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
    }

    .page {
      width: min(calc(100% - 40px), var(--max-width));
      margin: 0 auto;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      padding: 28px 0;
      border-bottom: 1px solid var(--line);
    }

    .name {
      /* NAME FONT AND SIZE */
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(1.35rem, 2.5vw, 1.9rem);
      font-weight: 600;
      letter-spacing: -0.02em;
      text-decoration: none;
      color: #386083;
    }

    .linkedin {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--accent);
      font-size: 0.92rem;
      font-weight: 700;
      text-decoration: none;
    }

    .linkedin:hover,
    .linkedin:focus {
      color: var(--accent-dark);
      text-decoration: underline;
    }

    main {
      flex: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.25fr) minmax(370px, 0.68fr);
      gap: clamp(48px, 7vw, 82px);
      align-items: start;
      padding-top: clamp(10px, 4vw, 44px);
      padding-bottom: clamp(64px, 9vw, 100px);
    }
.eyebrow {
      /* SMALL ROLE LINE */
      margin: 0 0 37px;
      color: var(--accent);
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    h1 {
      /* MAIN HEADLINE FONT AND RESPONSIVE SIZE */
      margin: 0;
      color: #386083;
      max-width: 820px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: clamp(2.4rem, 4.2vw, 4.2rem);
      font-weight: 500;
      letter-spacing: -0.01em;
      line-height: 1.02;
    }

    .summary {
      /* MAIN PARAGRAPH FONT SIZE AND LINE SPACING */
      margin: 26px 0 0;
      max-width: 730px;
      color: #343331;
      font-size: clamp(1rem, 1.6vw, 1.16rem);
      line-height: 1.72;
    }

    .status {
      margin: 28px 0 0;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .card {
      padding: 28px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid var(--line);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.05);
      backdrop-filter: blur(8px);
    }

    .card h2 {
      /* FORM HEADING */
      margin: 0 0 8px;
      font-family: Georgia, "Times New Roman", serif;
      font-size: 1.55rem;
      font-weight: 500;
    }

    .card-intro {
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 0.91rem;
    }

    .field {
      margin-bottom: 16px;
    }

    label {
      display: block;
      margin-bottom: 6px;
      font-size: 0.82rem;
      font-weight: 700;
    }

    input,
    textarea,
    select {
      width: 100%;
      border: 1px solid #c9c5bd;
      border-radius: 0;
      background: var(--surface);
      color: var(--text);
      font: inherit;
      font-size: 0.82rem;
      padding: 12px 13px;
      outline: none;
      transition: border-color 160ms ease, box-shadow 160ms ease;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(31, 74, 90, 0.11);
    }

    textarea {
      min-height: 112px;
      resize: vertical;
    }

    .phone-row {
      display: grid;
      grid-template-columns: 135px minmax(0, 1fr);
      gap: 10px;
    }

    .inquiry-options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 26px;
      padding: 6px 0 2px;
    }

    .inquiry-option {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      font-size: 0.82rem;
      font-weight: 400;
      cursor: pointer;
    }

    .inquiry-option input[type="checkbox"] {
      width: 18px;
      height: 18px;
      margin: 0;
      padding: 0;
      accent-color: var(--accent);
    }

	.required {
    color: #c62828;
    margin-left: 3px;
}
	::placeholder {
    color: #A6A6A6;
    opacity: 1;
}

    .optional {
      color: var(--muted);
      font-weight: 400;
    }

    .website-field {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .button-row {
      display: flex;
      justify-content: center;
      margin-top: 18px;
    }

    button {
      width: auto;
      min-width: 140px;
      border: 0;
      background: var(--accent);
      color: #ffffff;
      cursor: pointer;
      font: inherit;
      font-size: 0.9rem;
      font-weight: 800;
      letter-spacing: 0.02em;
      padding: 12px 24px;
      transition: background 160ms ease, transform 160ms ease;
    }

    button:hover,
    button:focus {
      background: var(--accent-dark);
    }

    button:active {
      transform: translateY(1px);
    }

    .privacy {
      margin: 13px 0 0;
      color: var(--muted);
      font-size: 0.74rem;
      line-height: 1.45;
    }

    footer {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      padding: 24px 0 30px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.8rem;
    }

    @media (max-width: 760px) {
      header {
        padding: 22px 0;
      }

      main {
        grid-template-columns: 1fr;
        gap: 46px;
        align-items: start;
        padding-top: 34px;
        padding-bottom: 64px;
      }
.card {
        padding: 24px;
      }

      .phone-row {
        grid-template-columns: 1fr;
      }

      footer {
        flex-direction: column;
        gap: 6px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      * {
        transition: none !important;
      }
    }
/* --- Main hamburger navigation --- */

header {
  position: relative;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.linkedin-icon {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0A66C2;
  text-decoration: none;
}

.linkedin-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.linkedin-icon:hover,
.linkedin-icon:focus-visible {
  color: #0A66C2;
}

.linkedin-icon:focus-visible,
.menu-toggle:focus-visible,
.submenu-toggle:focus-visible {
  outline: 2px solid #386083;
  outline-offset: 4px;
}

/* Hamburger: no hover color change */
.menu-toggle {
  width: 34px;
  min-width: 0;
  height: 25px;
  padding: 1px 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus {
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 3px;
  background: #386083;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Turn hamburger into X when open */
.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* Compact drop-down: width and height are content-driven */
.site-menu {
  position: absolute;
  top: 75px;
  right: max(20px, calc((100vw - var(--max-width)) / 2));
  z-index: 99;
  width: max-content;
  min-width: 235px;
  max-width: min(330px, calc(100vw - 40px));
  height: auto;
  padding: 7px 0;
  background: var(--text);
  border: 1px solid var(--text);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-links {
  padding: 0;
}

.menu-links > a,
.submenu-toggle {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 9px 16px;
  border: 0;
  background: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.menu-links > a:hover,
.menu-links > a:focus-visible,
.submenu-toggle:hover,
.submenu-toggle:focus-visible {
  background: #386083;
  color: #ffffff;
}

.submenu-mark {
  flex: 0 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 140ms ease;
}

.menu-group.is-open .submenu-mark {
  transform: rotate(45deg);
}

.submenu {
  display: none;
  padding: 2px 0 5px;
  background: var(--text);
}

.menu-group.is-open .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 8px 16px 8px 28px;
  color: #d9d6cf;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: #386083;
  color: #ffffff;
}

@media (max-width: 760px) {
  .header-actions {
    gap: 15px;
  }

  .site-menu {
    top: 68px;
    right: 20px;
    min-width: 225px;
    max-width: calc(100vw - 40px);
  }
}

@media (max-width: 380px) {
  .site-menu {
    right: 12px;
    max-width: calc(100vw - 24px);
  }

  .menu-links > a,
  .submenu-toggle {
    white-space: normal;
  }

  .submenu a {
    white-space: normal;
  }
}


/* =========================================================
   LOCKED SITE BASELINE — FINAL RESTORATION
   Restores the approved menu, MORE, TOP, homepage feature
   cards and About statistics layout.
   ========================================================= */

/* ---------- Approved compact menu ---------- */

header {
  position: relative;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.linkedin-icon {
  width: 27px;
  height: 27px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0A66C2;
  text-decoration: none;
}

.linkedin-icon svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}

.linkedin-icon:hover,
.linkedin-icon:focus-visible {
  color: #0A66C2;
}

.menu-toggle {
  width: 34px;
  min-width: 0;
  height: 25px;
  padding: 1px 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle:hover,
.menu-toggle:focus {
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 34px;
  height: 3px;
  background: #386083;
}

/* Hamburger remains a hamburger when the menu is open. */
.menu-toggle.is-open span:nth-child(1),
.menu-toggle.is-open span:nth-child(2),
.menu-toggle.is-open span:nth-child(3) {
  transform: none;
  opacity: 1;
}

.site-menu {
  position: fixed;
  top: 76px;
  right: max(20px, calc((100vw - var(--max-width)) / 2));
  bottom: auto;
  left: auto;
  z-index: 999;
  width: max-content;
  min-width: 250px;
  max-width: min(340px, calc(100vw - 40px));
  height: auto;
  padding: 0;
  background: rgba(22, 22, 22, 0.64);
  border: 1px solid rgba(22, 22, 22, 0.18);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease;
}

.site-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-panel {
  min-height: 0;
  padding: 0;
  display: block;
}

.menu-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px 7px 16px;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.menu-label {
   color: rgba(255,255,255,.78);
	color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.menu-close {
  min-width: 0;
  width: auto;
  margin: 0;
  padding: 2px 3px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}

.menu-close:hover,
.menu-close:focus {
  background: transparent;
  color: #fff;
}

.menu-links {
  padding: 7px 0;
}

.menu-links > a,
.submenu-toggle {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 9px 16px;
  border: 0;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.menu-links > a:hover,
.menu-links > a:focus-visible,
.submenu-toggle:hover,
.submenu-toggle:focus-visible {
  background: #386083;
  color: #fff;
}

.submenu-mark {
  flex: 0 0 auto;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 140ms ease;
}

.menu-group.is-open .submenu-mark {
  transform: rotate(45deg);
}

.submenu {
  display: none;
  padding: 2px 0 5px;
  background: transparent;
  border: 0;
}

.menu-group.is-open .submenu {
  display: block;
}

.submenu a {
  display: block;
  padding: 8px 16px 8px 28px;
  color: rgba(255,255,255,.82);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: #386083;
  color: #fff;
}

/* ---------- MORE / page action links ---------- */

.more-link {
  display: block;
  width: fit-content;
  margin: 24px 0 0 auto;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
}

.more-link:hover,
.more-link:focus-visible {
  color: #386083;
  text-decoration: none;
}

/* ---------- Homepage feature cards ---------- */

.home-features {

  margin-top: 18px;
  margin-bottom: 76px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
  background: transparent;
  border: 0;
}

.feature-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(0,0,0,.045);
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 22px 20px;
}

.feature-kicker {
  margin: 0 0 9px;
  color: #386083;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.feature-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  font-weight: 500;
  line-height: 1.2;
}

.feature-copy > p:not(.feature-kicker) {
  margin: 14px 0 18px;
  color: #4a4844;
  font-size: .86rem;
  line-height: 1.6;
}

.feature-copy a {
  margin-top: auto;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.feature-copy a:hover,
.feature-copy a:focus-visible {
  color: #386083;
}

/* ---------- About page ---------- */

.about-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: clamp(48px, 7vw, 82px);
  align-items: start;
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(64px, 9vw, 100px);
}

.about-content {
  min-width: 0;
}

.about-content .eyebrow {
  margin-bottom: 18px;
}

.about-content h1 {
  margin-bottom: 30px;
}

.about-content p {
  margin: 0 0 20px;
  max-width: 760px;
  color: #343331;
  font-size: clamp(.98rem, 1.35vw, 1.08rem);
  line-height: 1.72;
}

.about-content .about-lead {
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
}

.about-side {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: start;
  border: 1px solid var(--line);
  background: var(--line);
  gap: 1px;
}

.about-stat {
  min-width: 0;
  min-height: 132px;
  padding: 24px 18px;
  background: rgba(255,255,255,.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-stat strong {
  display: block;
  color: #386083;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  font-weight: 500;
  line-height: 1;
}

.about-stat span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .055em;
}
.predictions-lead {
  margin: 20px 0 0;
  max-width: 760px;
  color: #343331;
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  line-height: 1.72;
}


/* ---------- 404 page ---------- */

.error-main {
  flex: 1;
  display: block;
  padding-top: clamp(64px, 10vw, 120px);
  padding-bottom: clamp(80px, 12vw, 140px);
}

.error-content {
  max-width: 720px;
}

/* ---------- TOP button ---------- */

.top-button {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 1000;
  transform: translate(-50%, 14px);
  padding: 8px 13px 7px;
  background: rgba(22, 22, 22, 0.78);
  color: #fff;
  border: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms ease, background 150ms ease;
}

.top-button.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.top-button:hover,
.top-button:focus-visible {
  background: #386083;
  color: #fff;
  text-decoration: none;
}

/* ---------- Responsive ---------- */

@media (max-width: 800px) {
  .home-features {
    width: min(calc(100vw - 40px), 980px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-main {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-side {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .site-menu {
    top: 68px;
    right: 20px;
    min-width: 240px;
    max-width: calc(100vw - 40px);
  }
}

@media (max-width: 520px) {
  .home-features {
    width: calc(100vw - 40px);
    grid-template-columns: 1fr;
  }

  .about-side {
    grid-template-columns: 1fr 1fr;
  }

  .feature-copy {
    padding: 20px;
  }
}

@media (max-width: 380px) {
  .site-menu {
    right: 12px;
    max-width: calc(100vw - 24px);
  }

  .menu-links > a,
  .submenu-toggle,
  .submenu a {
    white-space: normal;
  }

  .about-side {
    grid-template-columns: 1fr;
  }
}


/* V26 correction: About statistics are one row on desktop. */
.about-side {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 800px) {
  .about-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 380px) {
  .about-side {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V27 FINAL CORRECTIONS
   ========================================================= */

/* ABOUT: copy first, then four statistics in one row on desktop. */
.about-main {
  grid-template-columns: 1fr;
  gap: 0;
}

.about-content {
  width: 100%;
}

.about-content p {
  max-width: 760px;
}

.about-side {
  width: 100%;
  max-width: none;
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.about-stat {
  min-height: 128px;
  padding: 24px 20px;
  background: rgba(255,255,255,.92);
  border: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 800px) {
  .about-main {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  .about-side {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   V28 ABOUT PAGE — vertical statistics at right of text
   ========================================================= */

.about-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 270px);
  gap: clamp(44px, 6vw, 78px);
  align-items: start;
  padding-top: clamp(44px, 6vw, 72px);
  padding-bottom: clamp(64px, 9vw, 100px);
}

.about-content {
  min-width: 0;
}

.about-content p {
  max-width: 760px;
}

.about-side {
  width: 100%;
  max-width: 270px;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-self: start;
  border: 1px solid var(--line);
  background: transparent;
}

.about-stat {
  width: 100%;
  min-width: 0;
  min-height: 118px;
  padding: 22px 20px;
  background: rgba(255,255,255,.92);
  border: 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.about-stat:last-child {
  border-bottom: 0;
}

.about-stat strong {
  display: block;
  max-width: 100%;
  color: #386083;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.about-stat span {
  display: block;
  max-width: 100%;
  margin-top: 9px;
  color: var(--muted);
  font-size: .70rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .035em;
  text-transform: uppercase;
  white-space: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 800px) {
  .about-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-side {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat {
    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }

  .about-stat:nth-child(2n) {
    border-right: 0;
  }

  .about-stat:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

@media (max-width: 520px) {
  .about-side {
    grid-template-columns: 1fr;
  }

  .about-stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-stat:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .about-stat:last-child {
    border-bottom: 0;
  }
}


/* V29: Match Home and About eyebrow font sizes */
.hero .eyebrow,
.about-main .eyebrow {
  font-size: .73rem;
}

/* V30: About statistic label size */
.about-stat span {
  font-size: .82rem;
}


/* V31: Global eyebrow size + centered About statistics */
.eyebrow {
  font-size: .82rem !important;
}

.about-stat {
  align-items: center;
  text-align: center;
}

.about-stat strong,
.about-stat span {
  text-align: center;
}


/* V32: About portrait below statistics */
.about-photo {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 24px;
  object-fit: cover;
}


/* About portrait: same width as statistics, full image, no crop */
.about-photo {
  display: block;
  width: 100%;
  max-width: 270px;
  height: auto;
  margin-top: 16px;
  padding: 0;
  border: 0;
  outline: 0;
  box-shadow: none;
  object-fit: contain;
}

@media (max-width: 800px) {
  .about-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/* Global H2 brand color */
h2 {
  color: var(--blue-dark);
}
/* Header logo — approved size */
.logo-web {
  display: block;
  width: 208px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 760px) {
  .logo-web {
    width: 163px;
    height: auto;
  }
}
img {
  max-width: 100%;
  height: auto;
}