﻿:root {
      --green: #66BD29;
      --green-dark: #2d6f14;
      --black: #050505;
      --charcoal: #101010;
      --ink: #f4f4f0;
      --muted: #a8a8a8;
      --paper: #f7f5ef;
      --line: rgba(255,255,255,.14);
      --gold: #b9974c;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Inter, Arial, Helvetica, sans-serif;
      background: var(--paper);
      color: #111;
    }

    .wrap {
      width: min(1180px, calc(100% - 36px));
      margin: 0 auto;
    }

    .dark-shell {
      background:
        radial-gradient(circle at 78% 22%, rgba(102,189,41,.18), transparent 28%),
        linear-gradient(130deg, #020202 0%, #0c0c0c 54%, #111 100%);
      color: white;
      overflow: hidden;
      position: relative;
    }

    .texture::before {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .12;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, black, transparent 70%);
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(5,5,5,.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .nav {
      height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: white;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 13px;
      text-decoration: none;
      color: white;
    }

    .logo-script {
      font-family: "Segoe Script", "Brush Script MT", cursive;
      font-size: 40px;
      line-height: .8;
      transform: rotate(-3deg);
      letter-spacing: -2px;
    }

    .slash {
      height: 40px;
      width: 1px;
      background: rgba(255,255,255,.35);
    }

    .logo-small {
      font-size: 12px;
      letter-spacing: .18em;
      line-height: 1.35;
      text-transform: uppercase;
      color: #f6f6f6;
    }

    .logo-small span { color: var(--green); }

    nav a {
      color: #e8e8e8;
      text-decoration: none;
      margin-left: 25px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-weight: 800;
    }

    nav a:hover { color: var(--green); }

    .phone {
      border: 1px solid var(--green);
      padding: 12px 16px;
      color: white;
      text-decoration: none;
      font-weight: 900;
      letter-spacing: .03em;
      margin-left: 24px;
      display: inline-block;
    }

    .hero {
      min-height: 700px;
      display: grid;
      align-items: center;
      padding: 78px 0 72px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 50px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      color: var(--green);
      text-transform: uppercase;
      letter-spacing: .19em;
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 17px;
    }

    h1 {
      font-size: clamp(48px, 7vw, 86px);
      line-height: .91;
      margin: 0;
      letter-spacing: -.06em;
      text-transform: uppercase;
      font-weight: 950;
    }

    .green-word {
      color: var(--green);
      display: inline-block;
      position: relative;
    }

    .brush {
      position: relative;
      display: inline-block;
    }

    .brush::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 8px;
      background: var(--green);
      border-radius: 999px;
      transform: rotate(-1.5deg);
      opacity: .85;
      clip-path: polygon(0 35%, 8% 20%, 22% 46%, 45% 22%, 63% 60%, 85% 28%, 100% 45%, 100% 100%, 0 100%);
    }

    .hero-copy {
      margin-top: 30px;
      font-size: 18px;
      line-height: 1.65;
      color: #eeeeee;
      max-width: 530px;
    }

    .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .btn {
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 22px;
      text-transform: uppercase;
      letter-spacing: .10em;
      font-weight: 950;
      font-size: 12px;
      min-height: 52px;
    }

    .btn-green {
      background: var(--green);
      color: #071007;
      box-shadow: 0 12px 35px rgba(102,189,41,.22);
      clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
    }

    .btn-outline {
      border: 1px solid rgba(102,189,41,.8);
      color: white;
    }

    .hero-art {
      min-height: 500px;
      border-radius: 0;
      position: relative;
      background:
        linear-gradient(90deg, rgba(5,5,5,.22), rgba(5,5,5,.04)),
        url("hero-midwestern-home.png") 62% center / cover no-repeat;
      filter: contrast(1.08) saturate(.95);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.10), 0 30px 90px rgba(0,0,0,.45);
    }

    .hero-art::before {
      content: "";
      position: absolute;
      inset: -1px;
      background:
        linear-gradient(90deg, rgba(5,5,5,.22), transparent 42%),
        linear-gradient(0deg, rgba(5,5,5,.35), transparent 45%);
      pointer-events: none;
    }

    .note-card {
      position: absolute;
      right: 26px;
      top: 28px;
      border: 1px solid rgba(102,189,41,.75);
      padding: 18px 20px;
      background: rgba(0,0,0,.52);
      color: white;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 12px;
      font-weight: 900;
    }

    .script-note {
      position: absolute;
      right: 20px;
      bottom: 24px;
      font-family: "Segoe Script", "Brush Script MT", cursive;
      font-size: 32px;
      line-height: 1.12;
      color: white;
      transform: rotate(-4deg);
    }

    .script-note span { color: var(--green); }

    .section {
      padding: 84px 0;
      position: relative;
    }

    .section-title {
      text-align: center;
      margin: 0 auto 44px;
      max-width: 760px;
    }

    .section-title h2 {
      font-size: clamp(33px, 5vw, 54px);
      line-height: 1;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: -.04em;
      font-weight: 950;
    }

    .section-title p {
      font-size: 18px;
      line-height: 1.65;
      color: #555;
      margin: 18px auto 0;
      max-width: 680px;
    }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0,0,0,.12);
      border: 1px solid rgba(0,0,0,.10);
    }

    .solution {
      background: #fbfaf5;
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
    }

    .circle {
      width: 62px;
      height: 62px;
      border-radius: 999px;
      background: #0b0b0b;
      color: var(--green);
      display: grid;
      place-items: center;
      font-weight: 950;
      margin-bottom: 22px;
      border: 1px solid rgba(102,189,41,.55);
      font-size: 18px;
    }

    .solution h3 {
      font-size: 26px;
      line-height: 1;
      margin: 0 0 16px;
      text-transform: uppercase;
      letter-spacing: -.03em;
    }

    .solution p {
      margin: 0;
      font-size: 16px;
      line-height: 1.65;
      color: #222;
      position: relative;
      z-index: 1;
    }

    .learn {
      color: #111;
      text-decoration: none;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 12px;
      font-weight: 950;
      display: inline-block;
      margin-top: 22px;
      position: relative;
      z-index: 2;
    }

    .learn span { color: var(--green); }

    .proof {
      background: #050505;
      color: white;
      padding: 34px 0;
      border-top: 1px solid rgba(255,255,255,.12);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.12);
    }

    .proof-item {
      background: #050505;
      padding: 24px 26px;
      display: grid;
      grid-template-columns: 50px 1fr;
      gap: 16px;
      align-items: start;
    }

    .proof-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(102,189,41,.5);
      color: var(--green);
      font-weight: 950;
    }

    .proof-item strong {
      display: block;
      text-transform: uppercase;
      letter-spacing: .10em;
      font-size: 13px;
      margin-bottom: 7px;
    }

    .proof-item span {
      color: #cfcfcf;
      line-height: 1.45;
      font-size: 14px;
    }

    .about-section {
      background: #f8f6ef;
      padding: 80px 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 44px;
      align-items: stretch;
    }

    .about-photo {
      min-height: 500px;
      background:
        linear-gradient(0deg, rgba(0,0,0,.18), rgba(0,0,0,0)),
        url("alex-craig-about.png") center 38% / cover no-repeat;
      border: 1px solid rgba(0,0,0,.12);
      position: relative;
      filter: contrast(1.04) saturate(1.03);
    }

    .about-photo::after {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(102,189,41,.55);
      pointer-events: none;
    }

    .about-copy {
      background: white;
      padding: 48px;
      border: 1px solid rgba(0,0,0,.10);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-copy h2 {
      margin: 0 0 22px;
      font-size: clamp(32px, 5vw, 56px);
      line-height: .96;
      text-transform: uppercase;
      letter-spacing: -.05em;
    }

    .about-copy p {
      font-size: 17px;
      line-height: 1.72;
      color: #333;
    }

    .quote {
      border-left: 6px solid var(--green);
      padding: 16px 0 16px 20px;
      margin-top: 24px;
      font-weight: 800;
      font-size: 20px;
      line-height: 1.35;
    }

    .cta {
      background:
        linear-gradient(90deg, rgba(102,189,41,.88), rgba(102,189,41,.62)),
        #66BD29;
      padding: 28px 0;
      color: #071007;
    }

    .cta-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .cta strong {
      font-size: 24px;
      text-transform: uppercase;
      letter-spacing: -.02em;
    }

    .cta span {
      display: block;
      color: rgba(0,0,0,.72);
      margin-top: 3px;
    }

    .cta .btn {
      background: #050505;
      color: white;
      min-width: 200px;
    }

    footer {
      background: #050505;
      color: #d9d9d9;
      padding: 52px 0 36px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr 1fr;
      gap: 32px;
    }

    footer h4 {
      color: white;
      margin: 0 0 16px;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: 12px;
    }

    footer a, footer p {
      color: #cfcfcf;
      text-decoration: none;
      font-size: 14px;
      line-height: 1.8;
      margin: 0;
      display: block;
    }

    .social-links {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
    }

    footer .social-links a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(102,189,41,.55);
      color: var(--green);
      background: rgba(255,255,255,.04);
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    footer .social-links a:hover {
      background: var(--green);
      color: #050505;
      transform: translateY(-2px);
    }

    .social-links svg {
      width: 21px;
      height: 21px;
      fill: currentColor;
    }

    .disclosure {
      border-top: 1px solid rgba(255,255,255,.12);
      margin-top: 34px;
      padding-top: 20px;
      font-size: 12px;
      color: #9d9d9d;
      line-height: 1.6;
    }

    @media (max-width: 920px) {
      nav { display: none; }
      .phone { display: none; }
      .hero { padding: 54px 0 54px; min-height: auto; }
      .hero-grid { grid-template-columns: 1fr; gap: 34px; }
      .hero-art {
        min-height: 410px;
        background-position: 50% center;
      }
      .solution-grid, .proof-grid, .about-grid, .footer-grid { grid-template-columns: 1fr; }
      .cta-grid { align-items: flex-start; flex-direction: column; }
      .logo-script { font-size: 35px; }
      .logo-small { font-size: 10px; }
    }

    @media (max-width: 520px) {
      .wrap { width: min(100% - 28px, 1180px); }
      .nav { height: 70px; }
      .hero-copy { font-size: 16px; }
      .buttons { flex-direction: column; }
      .btn { width: 100%; }
      .hero-art {
        min-height: 320px;
        background-position: 56% center;
      }
      .note-card { display: none; }
      .script-note { font-size: 25px; }
      .section { padding: 62px 0; }
      .section-title { text-align: left; }
      .solution { padding: 30px 24px; }
      .proof-item { grid-template-columns: 44px 1fr; padding: 22px 18px; }
      .about-copy { padding: 34px 24px; }
      .about-photo {
        min-height: 380px;
        background-position: center 32%;
      }
    }

.nav-links { display: inline-block; }

.footer-logo { margin-bottom: 18px; }

.gold-word { color: var(--gold); }

/* Broker representation page */
    .sub-hero {
      min-height: 650px;
      padding: 88px 0 72px;
    }

    .sub-hero-grid {
      position: relative;
      z-index: 2;
    }

    .sub-hero h1 {
      max-width: 760px;
    }

    .path-strip {
      background: #050505;
      color: white;
      border-top: 1px solid rgba(255,255,255,.12);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .path-strip .wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 20px 0;
    }

    .path-strip span {
      border: 1px solid rgba(102,189,41,.45);
      color: #e9e9e9;
      padding: 9px 12px;
      text-transform: uppercase;
      letter-spacing: .1em;
      font-size: 11px;
      font-weight: 900;
      background: rgba(255,255,255,.03);
    }

    .split-section {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 46px;
      align-items: start;
    }

    .plain-card {
      background: white;
      border: 1px solid rgba(0,0,0,.10);
      padding: 34px;
    }

    .plain-card.dark {
      background: #050505;
      color: white;
      border-color: rgba(102,189,41,.55);
    }

    .plain-card h3 {
      margin: 0 0 18px;
      font-size: 28px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -.03em;
    }

    .plain-card p,
    .plain-card li {
      color: #333;
      line-height: 1.68;
      font-size: 16px;
    }

    .plain-card.dark p,
    .plain-card.dark li {
      color: #d8d8d8;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 20px 0 0;
      display: grid;
      gap: 13px;
    }

    .check-list li {
      position: relative;
      padding-left: 30px;
    }

    .check-list li::before {
      content: "\2713";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--green);
      font-weight: 950;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(0,0,0,.12);
      border: 1px solid rgba(0,0,0,.10);
    }

    .audience-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0,0,0,.12);
      border: 1px solid rgba(0,0,0,.10);
    }

    .audience-card {
      background: white;
      padding: 34px 30px;
      min-height: 335px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .audience-card h3 {
      margin: 0 0 16px;
      font-size: 27px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -.03em;
    }

    .audience-card p {
      color: #333;
      line-height: 1.68;
      font-size: 16px;
      margin: 0;
    }

    .audience-note {
      margin-top: 24px;
      padding-top: 18px;
      border-top: 4px solid rgba(102,189,41,.45);
      color: #111;
      font-size: 13px;
      font-weight: 950;
      text-transform: uppercase;
      letter-spacing: .1em;
      line-height: 1.45;
    }

    .experience-band {
      background:
        radial-gradient(circle at 18% 12%, rgba(102,189,41,.16), transparent 28%),
        #050505;
      color: white;
      border-top: 1px solid rgba(255,255,255,.12);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .experience-grid {
      display: grid;
      grid-template-columns: .86fr 1.14fr;
      gap: 42px;
      align-items: center;
    }

    .experience-copy h2 {
      color: white;
      font-size: clamp(34px, 5vw, 58px);
      line-height: .95;
      margin: 0;
      text-transform: uppercase;
      letter-spacing: -.04em;
      font-weight: 950;
    }

    .experience-copy p {
      color: #dedede;
      font-size: 17px;
      line-height: 1.7;
      margin: 22px 0 0;
    }

    .experience-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      margin-top: 30px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.12);
    }

    .experience-stat {
      background: #050505;
      padding: 22px 18px;
    }

    .experience-stat strong {
      display: block;
      color: var(--green);
      font-size: 28px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .experience-stat span {
      color: #d5d5d5;
      font-size: 12px;
      line-height: 1.4;
      text-transform: uppercase;
      letter-spacing: .1em;
      font-weight: 900;
    }

    .map-frame {
      position: relative;
      min-height: 410px;
      border: 1px solid rgba(102,189,41,.55);
      overflow: hidden;
      background: #080808;
      box-shadow: 0 30px 80px rgba(0,0,0,.38);
    }

    .map-frame img {
      width: 100%;
      height: 100%;
      min-height: 410px;
      object-fit: cover;
      display: block;
      filter: contrast(1.05) brightness(.96);
    }

    .map-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(5,5,5,.45), transparent 36%),
        linear-gradient(0deg, rgba(5,5,5,.32), transparent 45%);
      pointer-events: none;
    }

    .map-label {
      position: absolute;
      left: 22px;
      bottom: 22px;
      z-index: 2;
      background: rgba(0,0,0,.74);
      border: 1px solid rgba(102,189,41,.65);
      padding: 14px 16px;
      color: white;
      text-transform: uppercase;
      letter-spacing: .11em;
      font-size: 12px;
      font-weight: 950;
    }

    .faq-grid {
      display: grid;
      gap: 1px;
      background: rgba(0,0,0,.12);
      border: 1px solid rgba(0,0,0,.10);
    }

    .faq-item {
      background: #fbfaf5;
      padding: 0;
    }

    .faq-item summary {
      cursor: pointer;
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 34px;
      gap: 18px;
      align-items: center;
      padding: 26px 28px;
      font-size: 21px;
      line-height: 1.12;
      text-transform: uppercase;
      letter-spacing: -.02em;
      font-weight: 950;
      color: #101010;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(102,189,41,.75);
      color: var(--green);
      font-size: 24px;
      line-height: 1;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    .faq-item[open] summary::after {
      content: "\2212";
      background: var(--green);
      color: #050505;
    }

    .faq-item summary:hover::after {
      transform: translateY(-1px);
    }

    .faq-item p {
      margin: 0;
      padding: 0 28px 28px;
      color: #333;
      line-height: 1.68;
      font-size: 15px;
    }

    .process-step {
      background: #fbfaf5;
      padding: 30px 26px;
      min-height: 270px;
    }

    .process-step h3 {
      margin: 0 0 14px;
      font-size: 22px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -.03em;
    }

    .process-step p {
      margin: 0;
      color: #333;
      line-height: 1.65;
      font-size: 15px;
    }

    .quiet-band {
      background: #f8f6ef;
      border-top: 1px solid rgba(0,0,0,.08);
      border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .decision-section {
      background:
        radial-gradient(circle at 82% 18%, rgba(102,189,41,.14), transparent 30%),
        #050505;
      color: white;
      border-top: 1px solid rgba(102,189,41,.45);
      border-bottom: 1px solid rgba(102,189,41,.45);
    }

    .decision-section .split-section {
      align-items: stretch;
    }

    .decision-section .plain-card.dark {
      background: transparent;
      border: 0;
      padding: 12px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .decision-section .plain-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.14);
      color: white;
    }

    .decision-section .plain-card h3 {
      color: white;
    }

    .decision-section .plain-card p,
    .decision-section .plain-card li {
      color: #dddddd;
    }

    .decision-section .check-list li::before {
      color: var(--green);
    }

    .faq-section {
      border-top: 8px solid var(--green);
    }

    @media (max-width: 920px) {
      .sub-hero-grid,
      .split-section,
      .experience-grid,
      .audience-grid,
      .pathway-grid,
      .faq-grid,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .experience-stats {
        grid-template-columns: 1fr;
      }

      .sub-hero {
        min-height: auto;
        padding: 58px 0;
      }

      .process-step {
        min-height: auto;
      }
    }

    @media (max-width: 520px) {
      .audience-card,
      .plain-card {
        padding: 26px 22px;
      }
    }
/* End broker representation page */

/* Buy direct page */
    .pathway-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0,0,0,.12);
      border: 1px solid rgba(0,0,0,.10);
    }

    .pathway-card {
      background: #fbfaf5;
      padding: 32px 28px;
      min-height: 280px;
    }

    .pathway-card .audience-note {
      margin-top: 22px;
    }

    .pathway-card h3 {
      margin: 0 0 16px;
      font-size: 24px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -.03em;
    }

    .pathway-card p {
      margin: 0;
      color: #333;
      font-size: 15px;
      line-height: 1.68;
    }

    @media (max-width: 1100px) {
      .pathway-grid {
        grid-template-columns: 1fr;
      }

      .pathway-card {
        min-height: auto;
      }
    }
/* End buy direct page */

/* Responsive navigation */
.nav {
  position: relative;
}

.nav-actions {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(102,189,41,.75);
  background: rgba(255,255,255,.04);
  color: white;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: currentColor;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}

header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

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

@media (max-width: 1100px) {
  .menu-toggle {
    display: flex;
  }

  .nav-actions {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px;
    background: rgba(5,5,5,.97);
    border: 1px solid rgba(255,255,255,.12);
    border-top: 0;
    box-shadow: 0 24px 60px rgba(0,0,0,.38);
  }

  header.menu-open .nav-actions {
    display: grid;
    gap: 16px;
  }

  .nav-actions .nav-links {
    display: grid;
    gap: 4px;
  }

  .nav-actions nav a {
    margin: 0;
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255,255,255,.10);
    font-size: 13px;
  }

  .nav-actions .phone {
    display: inline-flex;
    width: fit-content;
    margin: 0;
  }
}

/* End responsive navigation */

/* About Alex page */
    .about-hero {
      min-height: 650px;
      padding: 86px 0 74px;
    }

    .about-hero-grid {
      display: grid;
      grid-template-columns: 1fr .72fr;
      gap: 52px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .about-portrait {
      min-height: 520px;
      border: 1px solid rgba(102,189,41,.6);
      background:
        linear-gradient(0deg, rgba(0,0,0,.16), rgba(0,0,0,0)),
        url("alex-craig-about.png") center 28% / cover no-repeat;
      box-shadow: 0 30px 90px rgba(0,0,0,.42);
      position: relative;
    }

    .about-portrait::after {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(102,189,41,.62);
      pointer-events: none;
    }

    .credential-strip {
      background: #050505;
      color: white;
      border-top: 1px solid rgba(255,255,255,.12);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .credential-strip .wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 20px 0;
    }

    .credential-strip span {
      border: 1px solid rgba(102,189,41,.45);
      color: #e9e9e9;
      padding: 9px 12px;
      text-transform: uppercase;
      letter-spacing: .1em;
      font-size: 11px;
      font-weight: 900;
      background: rgba(255,255,255,.03);
    }

    .about-split {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 48px;
      align-items: start;
    }

    .bio-card {
      background: white;
      border: 1px solid rgba(0,0,0,.10);
      padding: 38px;
    }

    .bio-card.dark {
      background:
        radial-gradient(circle at 92% 12%, rgba(102,189,41,.13), transparent 32%),
        #050505;
      color: white;
      border-color: rgba(102,189,41,.5);
    }

    .bio-card h3 {
      margin: 0 0 18px;
      font-size: 30px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -.03em;
    }

    .bio-card p,
    .bio-card li {
      font-size: 16px;
      line-height: 1.72;
      color: #333;
    }

    .bio-card.dark p,
    .bio-card.dark li {
      color: #d9d9d9;
    }

    .entity-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(0,0,0,.12);
      border: 1px solid rgba(0,0,0,.10);
    }

    .entity-card {
      background: #fbfaf5;
      padding: 30px 26px;
      min-height: 310px;
    }

    .entity-card h3 {
      margin: 0 0 14px;
      font-size: 22px;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: -.03em;
    }

    .entity-card p {
      margin: 0;
      color: #333;
      font-size: 15px;
      line-height: 1.65;
    }

    .proof-band {
      background:
        radial-gradient(circle at 18% 12%, rgba(102,189,41,.16), transparent 28%),
        #050505;
      color: white;
      border-top: 1px solid rgba(255,255,255,.12);
      border-bottom: 1px solid rgba(255,255,255,.12);
    }

    .proof-split {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 44px;
      align-items: center;
    }

    .proof-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.14);
      border: 1px solid rgba(255,255,255,.12);
    }

    .proof-list div {
      background: #050505;
      padding: 24px;
    }

    .proof-list strong {
      display: block;
      color: var(--green);
      font-size: 25px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .proof-list span {
      color: #d8d8d8;
      font-size: 13px;
      line-height: 1.45;
      text-transform: uppercase;
      letter-spacing: .1em;
      font-weight: 900;
    }

    .quote-band {
      background: #f8f6ef;
      border-top: 1px solid rgba(0,0,0,.08);
      border-bottom: 1px solid rgba(0,0,0,.08);
    }

    .quote-card {
      max-width: 920px;
      margin: 0 auto;
      border-left: 8px solid var(--green);
      padding: 12px 0 12px 30px;
      font-size: clamp(28px, 4vw, 46px);
      line-height: 1.05;
      text-transform: uppercase;
      letter-spacing: -.04em;
      font-weight: 950;
      color: #111;
    }

    @media (max-width: 1100px) {
      .about-hero-grid,
      .about-split,
      .proof-split,
      .entity-grid,
      .proof-list {
        grid-template-columns: 1fr;
      }

      .about-portrait {
        min-height: 430px;
      }
    }

    @media (max-width: 520px) {
      .bio-card,
      .entity-card {
        padding: 26px 22px;
      }

      .about-hero {
        min-height: auto;
        padding: 58px 0;
      }
    }
/* End About Alex page */



/* HTA footer badge */
.footer-badge-mark {
  width: fit-content;
  display: grid;
  gap: 10px;
  margin: 20px 0 18px;
  color: white;
  text-decoration: none;
}

.footer-badge-mark img {
  width: 118px;
  height: 118px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.footer-badge-mark span {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
  font-weight: 950;
}

.footer-badge-mark:hover span {
  color: white;
}

/* Home Transition Advisor page */
.hta-hero .sub-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
}

.hta-hero-secondary {
  margin-top: 14px;
}

.hta-designation-card {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 46px);
  background: rgba(5,5,5,.74);
  border: 1px solid rgba(102,189,41,.76);
  border-top: 8px solid var(--green);
  box-shadow: 0 24px 80px rgba(0,0,0,.34);
}

.hta-designation-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 950;
}

.hta-designation-card strong {
  display: block;
  color: white;
  font-size: clamp(34px, 4vw, 54px);
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.hta-designation-card p {
  margin: 24px 0 0;
  color: #e2e2df;
  font-size: 17px;
  line-height: 1.65;
}

.hta-list-card .check-list li {
  margin-bottom: 13px;
}

.hta-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.12);
  gap: 1px;
}

.hta-card-grid article {
  min-height: 295px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--paper);
}

.hta-card-grid span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 999px;
  background: #061f22;
  color: var(--green);
  font-weight: 950;
  letter-spacing: .08em;
}

.hta-card-grid h3,
.hta-framework-callout h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: clamp(26px, 3vw, 38px);
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.hta-card-grid p {
  margin: 0;
  color: #333;
  font-size: 17px;
  line-height: 1.58;
}

.hta-philosophy-section {
  background: #050505;
  color: white;
}

.hta-philosophy-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
}

.hta-philosophy-grid h2 {
  margin: 0;
  color: white;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hta-philosophy-copy p {
  margin: 0 0 26px;
  color: #e5e5e5;
  font-size: 21px;
  line-height: 1.65;
}

.hta-steps {
  display: grid;
  gap: 1px;
  margin: 34px 0;
  border: 1px solid rgba(102,189,41,.45);
}

.hta-steps span {
  display: block;
  padding: 22px 24px;
  background: rgba(102,189,41,.12);
  color: white;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 17px;
  font-weight: 950;
}

.hta-situation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(0,0,0,.12);
}

.hta-situation-list span {
  display: block;
  min-height: 88px;
  padding: 22px 24px;
  background: white;
  color: #111;
  font-weight: 850;
  font-size: 18px;
  line-height: 1.35;
}

.hta-framework-callout {
  background: #071b15;
  color: white;
}

.hta-framework-callout .section-title h2,
.hta-framework-callout .section-title p {
  color: white;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-cloud span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,.14);
  background: white;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
  font-weight: 950;
}

.hta-final-cta {
  background: #050505;
  color: white;
}

.hta-final-cta .section-title h2,
.hta-final-cta .section-title p {
  color: white;
}

.hta-final-cta .plain-card.dark .btn {
  margin-top: 12px;
  margin-right: 8px;
}

@media (max-width: 960px) {
  .hta-hero .sub-hero-grid,
  .hta-philosophy-grid,
  .hta-card-grid,
  .hta-situation-list {
    grid-template-columns: 1fr;
  }
}
