      :root {
        --ink: #111923;
        --night: #071019;
        --deep: #182431;
        --teal: #009982;
        --orange: #ff7a18;
        --rose: #df4f76;
        --violet: #6650a8;
        --cream: #fff4df;
        --paper: #fffaf2;
        --mist: #eef3ee;
        --leaf: #1f3b2e;
        --moss: #536861;
        --clay: #ff7a18;
        --slate: #345d76;
        --gold: #f0c35b;
        --line: rgba(17, 25, 35, 0.13);
        --shadow: 0 26px 90px rgba(17, 25, 35, 0.18);
        --hero-focal-point: center;
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        background: var(--paper);
        color: var(--ink);
        font-family: Inter, system-ui, sans-serif;
        -webkit-font-smoothing: antialiased;
      }

      body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: -3;
        background:
          radial-gradient(circle at 10% 18%, rgba(0, 153, 130, 0.2), transparent 30%),
          radial-gradient(circle at 90% 10%, rgba(223, 79, 118, 0.18), transparent 34%),
          radial-gradient(circle at 72% 80%, rgba(255, 122, 24, 0.16), transparent 32%),
          linear-gradient(180deg, #fff7e8, var(--paper) 42%, #edf4ef 100%);
      }

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

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

      .nav {
        position: fixed;
        top: 18px;
        left: 24px;
        right: 24px;
        z-index: 20;
      }

      .nav-shell {
        max-width: 1220px;
        height: 65px;
        margin: 0 auto;
        padding: 0 14px 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        border: 1px solid rgba(255, 244, 223, 0.7);
        border-radius: 999px;
        background: rgba(255, 250, 242, 0.9);
        box-shadow: 0 18px 60px rgba(7, 16, 25, 0.16);
        backdrop-filter: blur(20px);
      }

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

      .brand-mark {
        width: 39px;
        height: 39px;
        display: grid;
        place-items: center;
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: hidden;
      }

      .brand-mark img {
        width: 39px;
        height: 39px;
        object-fit: contain;
      }

      .brand-divider {
        width: 2px;
        height: 41px;
        background: rgba(36, 51, 38, 0.32);
        border-radius: 999px;
        flex: 0 0 auto;
      }

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

      .brand-copy strong {
        font-family: Inter, system-ui, sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: var(--ink);
        line-height: 1.05;
      }

      .brand-copy span {
        font-family: Inter, system-ui, sans-serif;
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: rgba(36, 51, 38, 0.64);
        line-height: 1.05;
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 4px;
      }

      .nav-links a {
        padding: 11px 15px;
        border-radius: 999px;
        color: rgba(36, 51, 38, 0.78);
        font-size: 13px;
        font-weight: 600;
        transition:
          background 180ms ease,
          color 180ms ease;
      }

      .nav-links a:hover {
        background: rgba(0, 153, 130, 0.1);
        color: var(--ink);
      }

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

      .text-link {
        color: rgba(36, 51, 38, 0.68);
        font-size: 13px;
        font-weight: 600;
        text-decoration: underline;
        text-underline-offset: 4px;
      }

      .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0 22px;
        border: 1px solid transparent;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 700;
        transition:
          transform 180ms ease,
          box-shadow 180ms ease,
          background 180ms ease;
      }

      .button:hover {
        transform: translateY(-2px);
      }

      .button.primary {
        background: var(--night);
        color: var(--paper);
        box-shadow: 0 12px 30px rgba(7, 16, 25, 0.22);
      }

      .button.primary:hover {
        background: #1a2531;
      }

      .button.light {
        background: var(--paper);
        color: var(--leaf);
      }

      .button.outline {
        border-color: rgba(36, 51, 38, 0.2);
        color: var(--leaf);
      }

      .mobile-menu {
        display: none;
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        flex: 0 0 44px;
        align-items: center;
        justify-content: center;
        gap: 3px;
        flex-direction: column;
        border: 0;
        border-radius: 50%;
        background: rgba(95, 114, 84, 0.1);
        color: var(--leaf);
        padding: 0;
      }

      .mobile-menu span,
      .mobile-menu::before,
      .mobile-menu::after {
        content: "";
        display: block;
        width: 18px;
        height: 2px;
        margin: 0;
        background: currentColor;
        border-radius: 999px;
      }

      main {
        overflow: hidden;
      }

      .hero {
        position: relative;
        min-height: clamp(820px, min(100svh, 100vw), 1080px);
        max-height: 1080px;
        display: flex;
        align-items: center;
        padding: 138px 24px 58px;
        color: var(--paper);
        background: var(--night);
        isolation: isolate;
      }

      .hero::before,
      .hero::after {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -2;
      }

      .hero::before {
        background:
          linear-gradient(180deg, rgba(7, 16, 25, 0.1), rgba(7, 16, 25, 0.74)),
          linear-gradient(90deg, rgba(7, 16, 25, 0.86) 0%, rgba(7, 16, 25, 0.62) 46%, rgba(7, 16, 25, 0.24) 100%),
          linear-gradient(135deg, #0b1a24, #132f3a 46%, #fff4df 100%);
        transform: scale(1.015);
        animation: heroDrift 20s ease-in-out infinite alternate;
      }

      .hero::after {
        z-index: -1;
        background: url("assets/mora-aba-services-card.svg") 78% 50% / min(36vw, 480px) no-repeat;
        opacity: 0.2;
        mix-blend-mode: normal;
      }

      @keyframes heroDrift {
        from {
          transform: scale(1.04) translate3d(0, 0, 0);
        }
        to {
          transform: scale(1.07) translate3d(-1.2%, -0.8%, 0);
        }
      }

      .hero-inner {
        width: min(1220px, 100%);
        margin: 0 auto;
      }

      .pill {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        gap: 10px;
        padding: 8px 14px;
        border: 1px solid rgba(255, 250, 242, 0.35);
        border-radius: 999px;
        background: rgba(7, 16, 25, 0.34);
        color: rgba(255, 250, 242, 0.88);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        backdrop-filter: blur(10px);
      }

      .hero h1 {
        max-width: 790px;
        margin: 26px 0 0;
        font-family: Fraunces, Georgia, serif;
        font-size: clamp(56px, 7.4vw, 104px);
        font-style: normal;
        font-weight: 300;
        line-height: 0.86;
        letter-spacing: -0.04em;
        text-wrap: balance;
      }

      .hero h1 span {
        display: block;
      }

      .hero h1 .headline-primary {
        color: var(--paper);
      }

      .hero h1 .headline-accent {
        color: #ffbd6f;
        font-style: italic;
        font-weight: 360;
        letter-spacing: -0.05em;
      }

      .hero p {
        max-width: 620px;
        margin: 26px 0 0;
        color: rgba(255, 250, 242, 0.9);
        font-size: 17px;
        line-height: 1.72;
      }

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

      .hero .button.outline {
        border-color: rgba(255, 250, 242, 0.46);
        color: var(--paper);
        background: rgba(7, 16, 25, 0.22);
      }

      .hero .button.outline:hover {
        background: rgba(255, 250, 241, 0.16);
      }

      .hero-meta {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        max-width: 900px;
        margin-top: 52px;
      }

      .hero-meta div {
        min-height: 124px;
        padding: 18px;
        border: 1px solid rgba(255, 250, 242, 0.22);
        border-radius: 22px;
        background: rgba(7, 16, 25, 0.34);
        backdrop-filter: blur(14px);
      }

      .hero-meta strong {
        display: block;
        font-family: Fraunces, Georgia, serif;
        font-size: 30px;
        font-weight: 400;
      }

      .hero-meta span {
        display: block;
        margin-top: 6px;
        color: rgba(255, 250, 242, 0.7);
        font-size: 13px;
        line-height: 1.45;
      }

      .section {
        padding: 104px 24px;
      }

      .section.alt {
        background:
          linear-gradient(135deg, rgba(0, 153, 130, 0.08), rgba(255, 122, 24, 0.08)),
          #fff7e8;
      }

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

      .section-label {
        margin: 0 0 12px;
        color: var(--teal);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.22em;
        text-transform: uppercase;
      }

      .section-title {
        max-width: 720px;
        margin: 0;
        font-family: Fraunces, Georgia, serif;
        font-size: clamp(36px, 4.2vw, 58px);
        font-weight: 400;
        line-height: 1.06;
        letter-spacing: -0.035em;
      }

      .section-title em {
        color: var(--rose);
        font-style: italic;
        font-weight: 300;
      }

      .section-lede {
        max-width: 680px;
        margin: 18px 0 0;
        color: rgba(36, 51, 38, 0.68);
        font-size: 17px;
        line-height: 1.72;
      }

      .intro-grid {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 58px;
        align-items: center;
      }

      .portrait-card {
        position: relative;
        height: 496px;
        border-radius: 32px;
        overflow: hidden;
        background: var(--night);
        box-shadow: var(--shadow);
      }

      .portrait-card img {
        display: block;
        width: 100%;
        height: 130%;
        object-fit: cover;
        object-position: center center;
        transform: translateY(-20%);
        transform-origin: top center;
      }

      .credential-card {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 24px;
        padding: 22px;
        border: 1px solid rgba(255, 250, 242, 0.44);
        border-radius: 22px;
        background: rgba(255, 250, 242, 0.9);
        box-shadow: 0 18px 50px rgba(17, 25, 35, 0.16);
        backdrop-filter: blur(16px);
      }

      .credential-card strong {
        display: block;
        font-family: Fraunces, Georgia, serif;
        font-size: clamp(21px, 2.1vw, 27px);
        font-weight: 500;
        line-height: 1.05;
        letter-spacing: -0.02em;
        white-space: nowrap;
      }

      .credential-card span {
        display: block;
        margin-top: 6px;
        color: rgba(36, 51, 38, 0.62);
        font-size: 13px;
        line-height: 1.5;
      }

      .services-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 14px;
        margin-top: 42px;
      }

      .service {
        min-height: 260px;
        padding: 24px;
        border: 1px solid rgba(17, 25, 35, 0.1);
        border-radius: 22px;
        background:
          linear-gradient(180deg, rgba(255, 250, 242, 0.94), rgba(255, 250, 242, 0.78)),
          var(--paper);
        transition:
          transform 180ms ease,
          box-shadow 180ms ease;
      }

      .service:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 44px rgba(17, 25, 35, 0.1);
      }

      .service .icon {
        display: grid;
        place-items: center;
        width: 52px;
        height: 52px;
        border: 1px solid rgba(0, 153, 130, 0.2);
        border-radius: 16px;
        background: rgba(0, 153, 130, 0.08);
        color: var(--teal);
      }

      .service .icon svg {
        width: 26px;
        height: 26px;
        stroke: currentColor;
        stroke-width: 1.85;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
      }

      .service:nth-child(3) .icon {
        color: var(--slate);
        border-color: rgba(52, 93, 118, 0.2);
        background: rgba(52, 93, 118, 0.08);
      }

      .service h3 {
        margin: 20px 0 0;
        font-family: Fraunces, Georgia, serif;
        font-size: 23px;
        font-weight: 520;
        line-height: 1.12;
      }

      .service p {
        margin: 12px 0 0;
        color: rgba(36, 51, 38, 0.66);
        font-size: 14px;
        line-height: 1.55;
      }

      .compare {
        max-width: 780px;
        margin: 46px auto 0;
      }

      .compare-head,
      .compare-row {
        display: grid;
        grid-template-columns: 1fr 34px 1fr;
        gap: 18px;
        align-items: center;
      }

      .compare-head {
        margin-bottom: 16px;
        color: var(--moss);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.16em;
        text-transform: uppercase;
      }

      .compare-head span:first-child {
        text-align: right;
      }

      .compare-row {
        padding: 22px 0;
        border-top: 1px solid var(--line);
      }

      .old {
        display: flex;
        justify-content: flex-end;
        gap: 12px;
        color: rgba(36, 51, 38, 0.46);
        text-align: right;
        text-decoration: line-through;
        text-decoration-color: rgba(194, 104, 63, 0.38);
      }

      .new {
        display: flex;
        gap: 12px;
        color: var(--ink);
        font-weight: 700;
      }

      .x,
      .check {
        display: grid;
        flex: 0 0 auto;
        place-items: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        font-size: 13px;
        font-weight: 900;
      }

      .x {
        background: rgba(194, 104, 63, 0.12);
        color: var(--clay);
      }

      .check {
        background: rgba(95, 114, 84, 0.14);
        color: var(--leaf);
      }

      .funding {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 28px;
        align-items: stretch;
        margin-top: 44px;
      }

      .funding-panel {
        padding: 34px;
        border-radius: 28px;
        background:
          radial-gradient(circle at 90% 18%, rgba(255, 122, 24, 0.32), transparent 28%),
          radial-gradient(circle at 10% 88%, rgba(0, 153, 130, 0.3), transparent 34%),
          var(--night);
        color: var(--paper);
        overflow: hidden;
        position: relative;
      }

      .funding-panel::after {
        content: "";
        position: absolute;
        right: -70px;
        bottom: -90px;
        width: 260px;
        height: 260px;
        border-radius: 50%;
        background: rgba(223, 79, 118, 0.18);
      }

      .funding-panel h3 {
        position: relative;
        z-index: 1;
        max-width: 420px;
        margin: 0;
        font-family: Fraunces, Georgia, serif;
        font-size: 42px;
        font-weight: 400;
        line-height: 1.08;
        letter-spacing: -0.03em;
      }

      .funding-panel p {
        position: relative;
        z-index: 1;
        max-width: 450px;
        margin: 18px 0 0;
        color: rgba(255, 250, 241, 0.72);
        line-height: 1.68;
      }

      .funding-list {
        display: grid;
        gap: 14px;
      }

      .funding-item {
        padding: 24px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: var(--paper);
      }

      .funding-item strong {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: Fraunces, Georgia, serif;
        font-size: 23px;
        font-weight: 520;
      }

      .funding-item i {
        display: grid;
        place-items: center;
        width: 30px;
        height: 30px;
        border-radius: 10px;
        background: var(--teal);
        color: var(--paper);
        font-family: Inter, sans-serif;
        font-size: 13px;
        font-style: normal;
        font-weight: 900;
      }

      .funding-item p {
        margin: 10px 0 0 42px;
        color: rgba(36, 51, 38, 0.66);
        line-height: 1.6;
      }

      .community-connect {
        margin-top: 28px;
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        align-items: center;
      }

      .community-wrap {
        display: grid;
        grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.7fr);
        gap: clamp(32px, 7vw, 104px);
        align-items: center;
        min-height: 520px;
      }

      .community-copy {
        position: relative;
        z-index: 1;
      }

      .community-logo {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        min-height: 360px;
        pointer-events: none;
      }

      .community-logo img {
        width: min(40vw, 520px);
        max-height: 520px;
        object-fit: contain;
        opacity: 0.1;
        filter: saturate(0.8);
        mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.78) 46%, transparent 100%);
        -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.78) 46%, transparent 100%);
      }

      .faq {
        max-width: 780px;
        margin: 46px auto 0;
      }

      .faq-item {
        border-bottom: 1px solid var(--line);
      }

      .faq button {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 28px 0;
        border: 0;
        background: transparent;
        color: var(--ink);
        cursor: pointer;
        text-align: left;
      }

      .faq small {
        display: block;
        margin-bottom: 8px;
        color: var(--moss);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      .faq strong {
        font-family: Fraunces, Georgia, serif;
        font-size: 28px;
        font-weight: 430;
        letter-spacing: -0.02em;
      }

      .plus {
        display: grid;
        place-items: center;
        flex: 0 0 auto;
        width: 34px;
        height: 34px;
        border: 1px solid var(--line);
        border-radius: 50%;
        transition: transform 240ms ease;
      }

      .faq-answer {
        height: 0;
        overflow: hidden;
        color: rgba(36, 51, 38, 0.68);
        line-height: 1.72;
        transition:
          height 260ms ease,
          opacity 260ms ease;
        opacity: 0;
      }

      .faq-answer p {
        max-width: 640px;
        margin: 0;
        padding: 0 0 28px;
      }

      .faq-item.open .plus {
        transform: rotate(45deg);
      }

      .faq-item.open .faq-answer {
        opacity: 1;
      }

      .final {
        position: relative;
        padding: 112px 24px;
        background: linear-gradient(135deg, #071019, #0f2230 58%, #132f3a);
        color: var(--paper);
        overflow: hidden;
      }

      .final::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("assets/mora-aba-services-card.svg") center 50% / min(58vw, 720px) no-repeat;
        opacity: 0.09;
        pointer-events: none;
      }

      .final .wrap {
        position: relative;
        display: grid;
        grid-template-columns: 1fr;
        gap: 34px;
        width: min(900px, 100%);
        justify-items: center;
        text-align: center;
        z-index: 1;
      }

      .final-intro {
        max-width: 720px;
        margin: 0 auto;
      }

      .final h2 {
        max-width: 660px;
        margin: 0 auto;
        font-family: Fraunces, Georgia, serif;
        font-size: clamp(42px, 6vw, 76px);
        font-weight: 400;
        line-height: 1.02;
        letter-spacing: -0.05em;
      }

      .final h2 span,
      .final h2 em {
        display: block;
      }

      .final h2 em {
        color: #ffbd6f;
        font-style: italic;
        font-weight: 300;
      }

      .final p {
        max-width: 520px;
        margin: 22px auto 0;
        color: rgba(255, 250, 241, 0.74);
        font-size: 17px;
        line-height: 1.72;
      }

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

      .contact-form {
        width: min(760px, 100%);
        max-width: 760px;
        margin: 0 auto;
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        text-align: center;
      }

      .form-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
      }

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

      .contact-form .field.full {
        grid-column: 1 / -1;
      }

      .contact-form label {
        color: rgba(255, 250, 241, 0.72);
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0;
        text-transform: uppercase;
        text-align: left;
      }

      .contact-form input,
      .contact-form textarea {
        width: 100%;
        border: 0;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.26);
        color: var(--paper);
        font: inherit;
        padding: 14px 15px;
        text-align: left;
        outline: none;
        backdrop-filter: blur(3px);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
      }

      .contact-form input::placeholder,
      .contact-form textarea::placeholder {
        color: rgba(255, 250, 241, 0.54);
      }

      .contact-form textarea {
        min-height: 108px;
        resize: vertical;
      }

      .contact-form input:focus,
      .contact-form textarea:focus {
        box-shadow: 0 0 0 3px rgba(255, 189, 111, 0.18);
      }

      .contact-form .button {
        width: 100%;
        margin-top: 18px;
        border: 0;
        cursor: pointer;
        font-family: inherit;
      }

      .contact-form .button:disabled {
        cursor: wait;
        opacity: 0.72;
        transform: none;
      }

      .form-status {
        min-height: 22px;
        margin: 14px auto 0;
        color: rgba(255, 250, 241, 0.62);
        font-size: 13px;
        line-height: 1.55;
        text-align: center;
      }

      .form-status[data-state="success"] {
        color: #b9f4d1;
      }

      .form-status[data-state="error"] {
        color: #ffbd6f;
      }

      footer {
        padding: 54px 24px;
        border-top: 1px solid var(--line);
        background: var(--paper);
      }

      .footer-grid {
        width: min(1180px, 100%);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.4fr repeat(3, 1fr);
        gap: 36px;
      }

      footer h4 {
        margin: 0 0 16px;
        color: var(--moss);
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
      }

      footer p,
      footer a {
        color: rgba(36, 51, 38, 0.66);
        font-size: 14px;
        line-height: 1.75;
      }

      .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition:
          opacity 700ms ease,
          transform 700ms ease;
      }

      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

      @media (max-width: 980px) {
        .brand {
          gap: 10px;
        }

        .brand-mark,
        .brand-mark img {
          width: 29px;
          height: 29px;
        }

        .brand-divider {
          width: 1px;
          height: 29px;
        }

        .brand-copy strong {
          font-size: 12px;
          letter-spacing: 0.12em;
        }

        .brand-copy span {
          font-size: 10px;
          letter-spacing: 0.12em;
        }

        .nav-links,
        .nav-actions .text-link {
          display: none;
        }

        .mobile-menu {
          display: flex;
        }

        .nav-shell.open {
          height: auto;
          min-height: 64px;
          align-items: center;
          border-radius: 30px;
          padding-bottom: 18px;
          flex-wrap: wrap;
        }

        .nav-shell.open .brand,
        .nav-shell.open .nav-actions {
          align-self: center;
        }

        .nav-shell.open .nav-links {
          order: 3;
          display: grid;
          width: 100%;
          grid-template-columns: repeat(2, 1fr);
          gap: 6px;
        }

        .nav-shell.open .nav-links a {
          background: rgba(95, 114, 84, 0.08);
        }

        .hero-meta,
        .intro-grid,
        .funding,
        .community-wrap,
        .final .wrap,
        .footer-grid,
        .form-grid {
          grid-template-columns: 1fr;
        }

        .community-wrap {
          min-height: auto;
          gap: 32px;
        }

        .community-logo {
          justify-content: center;
          min-height: 180px;
          margin-top: 4px;
        }

        .community-logo img {
          width: min(72vw, 300px);
          opacity: 0.1;
          mask-image: linear-gradient(180deg, transparent 0%, #000 42%, rgba(0, 0, 0, 0.85) 70%, transparent 100%);
          -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 42%, rgba(0, 0, 0, 0.85) 70%, transparent 100%);
        }

        .services-grid {
          grid-template-columns: repeat(2, 1fr);
        }

        .portrait-card {
          height: 416px;
        }

        .portrait-card img {
          height: 136%;
          object-position: center center;
          transform: translateY(-25%);
        }
      }

      @media (max-width: 640px) {
        :root {
          --hero-focal-point: 68% center;
        }

        .nav {
          top: 10px;
          left: 10px;
          right: 10px;
        }

        .nav-shell {
          height: 64px;
          gap: 8px;
          padding: 0 10px 0 12px;
        }

        .brand {
          gap: 7px;
          flex: 1 1 auto;
          min-width: 0;
          align-items: center;
        }

        .brand-mark,
        .brand-mark img {
          width: 32px;
          height: 32px;
        }

        .brand-mark {
          align-self: center;
        }

        .brand-divider {
          height: 29px;
        }

        .brand-copy strong {
          font-size: 11px;
          letter-spacing: 0.1em;
        }

        .brand-copy span {
          font-size: 9px;
          letter-spacing: 0.1em;
        }

        .nav-actions {
          flex: 0 0 auto;
          gap: 8px;
        }

        .nav-actions .button.primary {
          width: auto;
          min-height: 44px;
          height: 44px;
          padding: 0 22px;
          white-space: nowrap;
        }

        .mobile-menu {
          width: 44px;
          height: 44px;
          min-width: 44px;
          min-height: 44px;
          flex-basis: 44px;
        }

        .nav-shell.open {
          row-gap: 20px;
          padding-top: 0;
        }

        .button {
          width: 100%;
        }

        .nav-actions .button.primary {
          width: auto;
        }

        .hero {
          min-height: 100svh;
          max-height: none;
          padding: 118px 18px 34px;
        }

        .hero::after {
          background-position: 76% 58%;
          background-size: min(72vw, 330px);
          opacity: 0.13;
        }

        .hero h1 {
          font-size: clamp(44px, 16vw, 68px);
        }

        .hero-meta,
        .services-grid,
        .compare-head,
        .compare-row {
          grid-template-columns: 1fr;
        }

        .compare-head span:first-child,
        .old {
          justify-content: flex-start;
          text-align: left;
        }

        .section {
          padding: 78px 18px;
        }

        #community {
          padding-bottom: 34px;
        }

        #community .community-wrap {
          gap: 14px;
        }

        #community .community-logo {
          min-height: 280px;
          margin-top: 0;
          padding-top: 48px;
          justify-content: center;
          align-items: center;
        }

        #community .community-logo img {
          width: min(58vw, 220px);
          transform: none;
        }

        .funding-panel,
        .funding-item {
          padding: 24px;
        }

        .credential-card {
          left: 18px;
          right: 18px;
          padding: 18px;
        }

        .credential-card strong {
          font-size: clamp(17px, 4.9vw, 20px);
          line-height: 1.08;
          letter-spacing: -0.025em;
          white-space: nowrap;
        }

        .faq strong {
          font-size: 23px;
        }
      }

      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation: none !important;
          scroll-behavior: auto !important;
          transition: none !important;
        }

        .reveal {
          opacity: 1;
          transform: none;
        }
      }
