@layer reset, base, layout, components;

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    overflow-x: clip;
  }

  body {
    margin: 0;
  }

  img, video, svg {
    max-width: 100%;
  }

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

  button,
  input,
  textarea {
    font: inherit;
  }

  ul,
  ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  h1, h2, h3, h4, p {
    margin: 0;
  }

  a {
    color: inherit;
  }
}

@layer base {
  :root {
    --ivory: #fbf7f1;
    --ivory-deep: #f3ece2;
    --white: #ffffff;
    --ink: #14261c;
    --muted: #3e564a;
    --green: #0e3d2c;
    --green-mid: #146b45;
    --gold: #f0a202;
    --gold-deep: #d58c00;
    --coral: #e56b3a;
    --mint: #e8f4ec;
    --line: color-mix(in srgb, var(--ink) 12%, transparent);
    --shadow: 0 18px 50px color-mix(in srgb, var(--green) 10%, transparent);
    --radius: 26px;
    --header: 86px;
    --wrap: 1560px;
    --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
    --font-body: "Manrope", "Segoe UI", sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --section-gap: clamp(2.75rem, 4vw, 3.25rem);
  }

  body {
    font-family: var(--font-body);
    color: var(--ink);
    background:
      radial-gradient(900px 480px at 100% -8%, color-mix(in srgb, var(--gold) 28%, transparent), transparent 62%),
      radial-gradient(760px 480px at -12% 18%, color-mix(in srgb, var(--mint) 90%, white), transparent 58%),
      var(--ivory);
    line-height: 1.65;
    font-size: 1.02rem;
  }

  h1, h2, h3, .logo strong {
    font-family: var(--font-display);
    font-weight: 560;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-wrap: balance;
  }

  h1 {
    font-size: clamp(3.05rem, 5.5vw, 5.35rem);
  }

  h2 {
    font-size: clamp(2.1rem, 3.4vw, 3.35rem);
  }

  h3 {
    font-size: clamp(1.35rem, 1.6vw, 1.7rem);
    line-height: 1.2;
  }

  em {
    font-style: italic;
    font-weight: 560;
    color: var(--coral);
  }

  ::selection {
    background: color-mix(in srgb, var(--gold) 55%, white);
    color: var(--ink);
  }

  :focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }

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

@layer layout {
  .wrap {
    width: min(var(--wrap), calc(100% - 80px));
    margin-inline: auto;
  }

  .hero > *,
  .about__grid > *,
  .projects__grid > *,
  .why__grid > *,
  .trio > *,
  .pillars__bar > *,
  .project,
  .project figure {
    min-width: 0;
  }

  .section {
    padding-block: clamp(2.6rem, 4.5vw, 3.75rem);
    scroll-margin-top: calc(var(--header) + 16px);
  }

  #ongoing,
  #upcoming,
  #completed,
  #contact,
  #inquiry,
  #investors {
    scroll-margin-top: calc(var(--header) + 16px);
  }

  .section__head {
    max-width: 40rem;
    margin-bottom: clamp(1.8rem, 3vw, 2.6rem);
  }

  .section__head--center {
    margin-inline: auto;
    text-align: center;
  }

  .section__head p:last-child,
  .lede {
    color: var(--muted);
    font-size: 1.05rem;
    margin-top: 0.9rem;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

@layer components {
  .skip {
    position: absolute;
    left: 16px;
    top: 12px;
    transform: translateY(-140%);
    background: var(--green);
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    z-index: 80;
  }

  .skip:focus {
    transform: none;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 40;
    height: var(--header);
    border-bottom: 1px solid transparent;
    transition: height 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  }

  .header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: var(--ivory);
    backdrop-filter: blur(18px) saturate(1.3);
    transition: background 0.35s var(--ease);
  }

  .header.is-scrolled {
    height: 72px;
    border-bottom-color: var(--line);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--green) 6%, transparent);
  }

  .header.is-scrolled::before {
    background: var(--ivory);
  }

  .header__inner {
    width: min(var(--wrap), calc(100% - 80px));
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
  }

  .logo {
    position: relative;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--green);
  }

  .logo__mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--mint);
    color: var(--green);
  }

  .logo img {
    height: 140px;
    width: auto;
    max-width: min(210px, 46vw);
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
  }

  .header.is-scrolled .logo img {
    height: 140px;
  }

  .logo strong {
    display: block;
    font-size: 1.22rem;
    letter-spacing: -0.03em;
  }

  .logo small {
    display: block;
    margin-top: 1px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--muted);
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav a:not(.btn) {
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    position: relative;
  }

  .nav a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
  }

  .nav a:not(.btn):hover::after,
  .nav a:not(.btn)[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .nav-drop {
    position: relative;
  }

  .nav-drop__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.28rem;
    border: 0;
    background: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    position: relative;
  }

  .nav-drop__btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s var(--ease);
  }

  .nav-drop.is-open .nav-drop__btn svg,
  .nav-drop:hover .nav-drop__btn svg {
    transform: rotate(180deg);
  }

  .nav-drop__btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: calc(100% - 18px);
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s var(--ease);
  }

  .nav-drop:hover .nav-drop__btn::after,
  .nav-drop.is-open .nav-drop__btn::after,
  .nav-drop__btn[aria-current="true"]::after {
    transform: scaleX(1);
  }

  .nav-drop__menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    z-index: 30;
    min-width: 190px;
    display: grid;
    gap: 0.15rem;
    padding: 0.45rem;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  }

  .nav-drop__menu a {
    display: block;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
  }

  .nav-drop__menu a::after {
    display: none;
  }

  .nav-drop__menu a:hover,
  .nav-drop__menu a[aria-current="page"] {
    background: var(--mint);
    color: var(--green);
  }

  @media (min-width: 1101px) {
    .nav-drop:hover .nav-drop__menu,
    .nav-drop:focus-within .nav-drop__menu,
    .nav-drop.is-open .nav-drop__menu {
      opacity: 1;
      visibility: visible;
      transform: none;
      pointer-events: auto;
    }
  }

  .page-switch {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 1.4rem;
  }

  .page-switch a {
    text-decoration: none;
    font-weight: 700;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: white;
  }

  .page-switch a[aria-current="page"] {
    background: var(--green);
    color: white;
    border-color: var(--green);
  }

  .nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    cursor: pointer;
    place-items: center;
  }

  .nav-toggle__icon,
  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--green);
    border-radius: 2px;
    position: relative;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }

  .nav-toggle__icon::before,
  .nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .nav-toggle__icon::before { top: -6px; }
  .nav-toggle__icon::after { top: 6px; }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 50px;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    border: 1.5px solid transparent;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: -0.01em;
    cursor: pointer;
    transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  }

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

  .btn--gold {
    background: linear-gradient(180deg, #ffc043, var(--gold) 45%, var(--gold-deep));
    color: var(--ink);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--gold) 35%, transparent);
  }

  .btn--gold:hover {
    box-shadow: 0 14px 28px color-mix(in srgb, var(--gold) 48%, transparent);
  }

  .btn--green {
    background: var(--green);
    color: white;
  }

  .btn--green:hover {
    background: var(--green-mid);
  }

  .btn--ghost {
    background: color-mix(in srgb, white 70%, transparent);
    color: var(--green);
    border-color: color-mix(in srgb, var(--green) 28%, transparent);
  }

  .btn--ghost:hover {
    background: white;
  }

  [hidden] {
    display: none !important;
  }

  body.menu-open {
    overflow: hidden;
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.85rem;
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .eyebrow span {
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: var(--gold);
  }

  .eyebrow--light {
    color: color-mix(in srgb, white 88%, var(--gold));
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(300px, 540px) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 3.5rem);
    align-items: stretch;
    min-height: calc(100vh - var(--header));
    min-height: calc(100dvh - var(--header));
    padding: 1.5rem 0 3.5rem max(40px, calc((100% - var(--wrap)) / 2));
  }

  .hero__copy {
    max-width: 38rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.7rem;
  }

  .hero__frame {
    position: relative;
    min-height: 620px;
    height: 100%;
    border-radius: 36px 0 0 36px;
    overflow: hidden;
    box-shadow: 0 30px 70px color-mix(in srgb, var(--green) 16%, transparent);
  }

  .hero__frame img {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    object-fit: cover;
    min-height: 620px;
  }

  .glass {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 0.95rem 1rem;
    border-radius: 20px;
    background: color-mix(in srgb, white 74%, transparent);
    border: 1px solid color-mix(in srgb, white 80%, transparent);
    backdrop-filter: blur(16px) saturate(1.4);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--ink) 12%, transparent);
  }

  .glass p {
    display: grid;
    gap: 0.1rem;
  }

  .glass strong {
    font-size: 1rem;
    letter-spacing: -0.02em;
  }

  .glass span {
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .pillars {
    margin-top: 0.4rem;
    position: relative;
    z-index: 2;
    padding-bottom: 1rem;
  }

  .pillars__bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid color-mix(in srgb, white 40%, var(--line));
  }

  .pillars__bar li {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    padding: 1.35rem 1.2rem 1.45rem;
    border-inline-end: 1px solid var(--line);
  }

  .pillars__bar li:last-child {
    border-inline-end: 0;
  }

  .pillars__bar h2 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
  }

  .pillars__bar p {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--mint);
    color: var(--green-mid);
  }

  .icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .about__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(1.6rem, 4vw, 4rem);
    align-items: center;
  }

  .about__copy p {
    color: var(--muted);
    margin-top: 0.95rem;
  }

  .about__copy .btn {
    margin-top: 1.5rem;
  }

  .about__visual {
    position: relative;
  }

  .about__photo {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow);
  }

  .stats {
    width: min(100%, 430px);
    margin-top: -4.2rem;
    margin-left: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    position: relative;
    z-index: 1;
  }

  .stats li {
    background: white;
    border-radius: 18px;
    padding: 0.95rem 1rem 1rem;
    box-shadow: var(--shadow);
    border: 1px solid color-mix(in srgb, var(--mint) 70%, white);
  }

  .stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.4vw, 2.3rem);
    letter-spacing: -0.04em;
    color: var(--green);
    line-height: 1;
  }

  .stats span {
    display: block;
    margin-top: 0.3rem;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 600;
  }

  .projects {
    background:
      linear-gradient(180deg, color-mix(in srgb, white 55%, transparent), transparent 90px),
      color-mix(in srgb, var(--mint) 55%, var(--ivory));
  }

  .projects__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.22fr) minmax(0, 0.92fr);
    gap: 1.15rem;
    align-items: stretch;
  }

  .project {
    container-type: inline-size;
    background: white;
    border-radius: 28px;
    padding: 1.15rem 1.15rem 1.3rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid color-mix(in srgb, var(--green) 6%, white);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  }

  .project:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px color-mix(in srgb, var(--green) 14%, transparent);
  }

  .project figure {
    margin: 0.15rem 0 0.2rem;
    border-radius: 18px;
    overflow: hidden;
  }

  .project img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
  }

  .project:hover img {
    transform: scale(1.04);
  }

  .project--feature img {
    height: 230px;
  }

  .project img[src*="upcoming"] {
    object-position: center 72%;
  }

  .project p,
  .project h4 {
    color: var(--muted);
    font-weight: 600;
  }

  .project h4 {
    color: var(--ink);
    font-size: 1.05rem;
  }

  .project--feature {
    background:
      linear-gradient(180deg, white, color-mix(in srgb, var(--mint) 45%, white));
  }

  .project h3 span {
    display: block;
    margin-top: 0.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--coral);
  }

  .kicker {
    color: var(--green-mid);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .checks {
    display: grid;
    gap: 0.4rem;
    margin-top: 0.15rem;
  }

  .checks li {
    position: relative;
    padding-left: 1.55rem;
    color: var(--ink);
    font-weight: 600;
    font-size: 0.95rem;
  }

  .checks li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    background:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3.5 8.2 6.4 11 12.5 5' fill='none' stroke='%230E3D2C' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / 12px no-repeat,
      var(--mint);
  }

  .project .btn {
    margin-top: auto;
    align-self: flex-start;
  }

  @container (max-width: 280px) {
    .project .btn {
      width: 100%;
    }
  }

  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .tags li {
    background: white;
    border: 1px solid color-mix(in srgb, var(--green-mid) 25%, white);
    color: var(--green);
    border-radius: 999px;
    padding: 0.32rem 0.7rem;
    font-size: 0.82rem;
    font-weight: 700;
  }

  .steps {
    --done: 50%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
    margin-top: 0.4rem;
    padding-top: 0.35rem;
    position: relative;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 8%;
    right: 8%;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(
      90deg,
      var(--green-mid) 0 var(--done),
      var(--gold) var(--done) 74%,
      color-mix(in srgb, var(--ink) 14%, white) 74%
    );
  }

  .steps li {
    position: relative;
    text-align: center;
    padding-top: 1.35rem;
  }

  .steps li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -1px);
    border-radius: 50%;
    background: white;
    border: 3px solid color-mix(in srgb, var(--ink) 18%, white);
    z-index: 1;
  }

  .steps .is-done::before {
    background: var(--green-mid);
    border-color: var(--green-mid);
  }

  .steps .is-now::before {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 0 5px color-mix(in srgb, var(--gold) 30%, transparent);
  }

  .steps span,
  .steps small {
    display: block;
  }

  .steps span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: -0.01em;
  }

  .steps small {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 600;
  }

  .steps .is-now small {
    color: var(--coral);
  }

  .why {
    background:
      radial-gradient(520px 220px at 8% 0%, white, transparent 70%),
      linear-gradient(180deg, var(--ivory), color-mix(in srgb, var(--mint) 35%, var(--ivory)));
  }

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

  .why__grid li {
    background: color-mix(in srgb, white 84%, transparent);
    border: 1px solid color-mix(in srgb, var(--green) 8%, white);
    border-radius: 22px;
    padding: 1.25rem 1.2rem 1.35rem;
    backdrop-filter: blur(8px);
    transition: transform 0.3s var(--ease), border-color 0.3s var(--ease);
  }

  .why__grid li:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--gold) 55%, white);
  }

  .why__grid h3 {
    margin-top: 0.85rem;
    font-size: 1.25rem;
  }

  .why__grid p {
    margin-top: 0.4rem;
    color: var(--muted);
  }

  .closer-stack {
    display: grid;
    gap: var(--section-gap);
  }

  .testimonial {
    background: white;
    border-radius: 28px;
    padding: clamp(1.5rem, 3vw, 2.2rem);
    border: 1px solid color-mix(in srgb, var(--green) 8%, white);
    box-shadow: var(--shadow);
    display: grid;
    gap: 1rem;
  }

  .testimonial__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .testimonial__head .eyebrow {
    margin: 0;
  }

  .testimonial .stars {
    margin: 0;
    color: var(--gold-deep);
    letter-spacing: 0.16em;
    font-size: 1.05rem;
  }

  .testimonial blockquote {
    margin: 0;
    padding-left: 1.1rem;
    border-left: 3px solid var(--gold);
  }

  .testimonial blockquote p {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    line-height: 1.45;
    letter-spacing: -0.02em;
    max-width: 52rem;
  }

  .testimonial__by {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
  }

  .testimonial .slider {
    min-height: 11.5rem;
  }

  .testimonial blockquote .stars {
    margin-bottom: 0.65rem;
  }

  .testimonial .dots {
    margin-top: 0.2rem;
  }

  .testimonial__by span {
    color: var(--muted);
    font-size: 0.92rem;
  }

  .card {
    border-radius: 28px;
    padding: 1.45rem 1.35rem 1.4rem;
    box-shadow: var(--shadow);
  }

  .card h2 {
    font-size: clamp(1.7rem, 2vw, 2.15rem);
  }

  .card--invest {
    background:
      radial-gradient(280px 180px at 100% 0%, color-mix(in srgb, var(--gold) 45%, transparent), transparent 70%),
      linear-gradient(165deg, #1c8a58, var(--green) 55%, #0b3325);
    color: white;
    display: flex;
    flex-direction: column;
  }

  .card--invest p:not(.eyebrow) {
    color: color-mix(in srgb, white 86%, var(--mint));
    margin-top: 0.8rem;
  }

  .card--invest .btn {
    margin-top: auto;
    align-self: flex-start;
    padding-top: 0.75rem;
  }

  .card--quote,
  .card--contact {
    background: white;
    border: 1px solid color-mix(in srgb, var(--green) 6%, white);
  }

  .card__top,
  .contact-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .slider__nav,
  .dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .slider__nav button,
  .dots button {
    border: 1px solid var(--line);
    background: var(--ivory);
    cursor: pointer;
  }

  .slider__nav button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--green);
  }

  .slider__nav svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .slider__nav button:hover,
  .dots button[aria-selected="true"] {
    background: var(--gold);
    border-color: var(--gold);
  }

  .slider {
    min-height: 188px;
    margin-top: 1rem;
  }

  .stars {
    color: var(--gold-deep);
    letter-spacing: 0.12em;
    font-size: 0.95rem;
  }

  .quote p {
    margin-top: 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 1.5vw, 1.45rem);
    line-height: 1.35;
    letter-spacing: -0.02em;
  }

  .quote footer {
    margin-top: 0.9rem;
    color: var(--muted);
    font-weight: 700;
  }

  .dots {
    margin-top: 0.4rem;
  }

  .dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 99px;
  }

  .dots button[aria-selected="true"] {
    width: 22px;
  }

  .card--contact > p {
    color: var(--muted);
    margin-top: 0.55rem;
  }

  .contact-list {
    display: grid;
    gap: 0.55rem;
    margin: 1rem 0 1.1rem;
  }

  .contact-list li {
    justify-content: flex-start;
    font-weight: 700;
  }

  .contact-list a {
    text-underline-offset: 3px;
  }

  .contact-list a[href^="tel"],
  .form-success a[href^="tel"] {
    white-space: nowrap;
  }

  .contact-list a:hover {
    color: var(--green-mid);
  }

  .form,
  .field {
    display: grid;
    gap: 0.7rem;
  }

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

  .form .field--full,
  .form .form-error,
  .form > .btn {
    grid-column: 1 / -1;
  }

  .field {
    gap: 0.3rem;
  }

  .field label {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .field input,
  .field textarea {
    width: 100%;
    border: 1.5px solid color-mix(in srgb, var(--green) 16%, white);
    background: var(--ivory);
    border-radius: 14px;
    padding: 0.8rem 0.9rem;
    color: var(--ink);
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
  }

  .field textarea {
    resize: vertical;
    min-height: 110px;
  }

  .field input:focus,
  .field textarea:focus {
    outline: none;
    background: white;
    border-color: var(--gold-deep);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 30%, transparent);
  }

  .field input[aria-invalid="true"],
  .field textarea[aria-invalid="true"] {
    border-color: var(--coral);
  }

  .form-error {
    color: var(--coral);
    font-weight: 700;
    font-size: 0.92rem;
  }

  .form .btn,
  .form-success .btn {
    justify-self: start;
  }

  .form-success {
    background: var(--mint);
    border-radius: 18px;
    padding: 1rem 1rem 1.1rem;
  }

  .form-success:focus {
    outline: none;
  }

  .form-success h3 {
    font-size: 1.45rem;
  }

  .form-success p {
    margin: 0.45rem 0 0.9rem;
    color: var(--muted);
  }

  .form-success a {
    color: var(--green);
    font-weight: 700;
  }

  .footer {
    background:
      linear-gradient(180deg, color-mix(in srgb, var(--gold) 80%, var(--green)), var(--gold) 4px, transparent 4px),
      var(--green);
    color: color-mix(in srgb, white 90%, var(--mint));
    padding: 3.2rem 0 1.3rem;
  }

  .footer__grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem 2rem;
    align-items: center;
  }

  .logo--light,
  .logo--light small {
    color: white;
  }

  .logo--light .logo__mark {
    background: color-mix(in srgb, white 14%, transparent);
    color: var(--gold);
  }

  .footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem 1.1rem;
    justify-content: center;
  }

  .footer__links a {
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
  }

  .footer__links a:hover {
    color: var(--gold);
  }

  .social {
    display: flex;
    gap: 0.45rem;
  }

  .social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, white 25%, transparent);
    color: white;
  }

  .social svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linejoin: round;
    stroke-linecap: round;
  }

  .social a:hover {
    background: var(--gold);
    color: var(--ink);
    border-color: var(--gold);
  }

  .footer__bar {
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid color-mix(in srgb, white 16%, transparent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.8rem 1.4rem;
    color: color-mix(in srgb, white 72%, transparent);
    font-size: 0.9rem;
  }

  .footer__bar a {
    color: inherit;
    font-weight: 700;
    text-decoration: none;
  }

  .footer__bar a:hover,
  .footer__bar a[aria-current="page"] {
    color: var(--gold);
  }

  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
  }

  .legal {
    max-width: 44rem;
  }

  .panel > .legal {
    max-width: none;
  }

  .legal h2 {
    margin-top: 1.5rem;
    font-size: 1.45rem;
  }

  .legal p,
  .legal li {
    margin-top: 0.5rem;
    color: var(--muted);
  }

  .legal ul {
    display: grid;
    gap: 0.25rem;
  }

  .crumb {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
  }

  .crumb a {
    color: var(--green);
    text-decoration: none;
  }

  .crumb a:hover {
    text-decoration: underline;
  }

  .page-title {
    font-size: clamp(2.6rem, 4.6vw, 4.3rem);
  }

  .page-intro .btn {
    margin-top: 1.4rem;
    margin-right: 0.6rem;
  }

  .focus-grid,
  .promise-grid {
    display: grid;
    gap: 1rem;
  }

  .focus-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .promise-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .focus-card,
  .promise-card {
    background: white;
    border-radius: 22px;
    padding: 1.25rem 1.2rem 1.35rem;
    border: 1px solid color-mix(in srgb, var(--green) 7%, white);
    box-shadow: var(--shadow);
    min-width: 0;
  }

  .focus-card h3,
  .promise-card h3 {
    margin-top: 0.85rem;
    font-size: 1.35rem;
  }

  .focus-card p,
  .promise-card p {
    margin-top: 0.4rem;
    color: var(--muted);
  }

  .pipeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    align-items: stretch;
  }

  .pipeline .focus-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.45rem 1.35rem 1.35rem;
    border-radius: 24px;
  }

  .pipeline .focus-card .kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    width: fit-content;
    margin: 0;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: var(--mint);
  }

  .pipeline .focus-card .kicker::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-mid);
  }

  .pipeline .focus-card:nth-child(2) {
    background: linear-gradient(180deg, white, color-mix(in srgb, var(--mint) 42%, white));
    border-color: color-mix(in srgb, var(--green) 18%, white);
  }

  .pipeline .focus-card:nth-child(2) .kicker {
    background: color-mix(in srgb, var(--gold) 32%, white);
    color: #8a5600;
  }

  .pipeline .focus-card:nth-child(2) .kicker::before {
    background: var(--gold-deep);
  }

  .pipeline .focus-card:nth-child(3) .kicker::before {
    background: var(--coral);
  }

  .pipeline .focus-card h3 {
    margin-top: 1.05rem;
  }

  .pipeline .focus-card p:not(.kicker) {
    flex: 1;
    margin-top: 0.55rem;
  }

  .pipeline .focus-card .btn {
    margin-top: 1.25rem;
    align-self: flex-start;
  }

  .panel {
    background:
      linear-gradient(180deg, color-mix(in srgb, white 55%, transparent), transparent 90px),
      color-mix(in srgb, var(--mint) 55%, var(--ivory));
  }

  .stat-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    background: white;
    border-radius: 26px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }

  .stat-bar li {
    padding: 1.35rem 1.2rem;
    border-inline-end: 1px solid var(--line);
  }

  .stat-bar li:last-child {
    border-inline-end: 0;
  }

  .stat-bar strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    letter-spacing: -0.04em;
    color: var(--green);
    line-height: 1;
  }

  .stat-bar span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-weight: 700;
  }

  .approach {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(1.4rem, 4vw, 3rem);
    align-items: start;
  }

  .approach > :first-child {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
  }

  .approach h2 {
    max-width: none;
    font-size: clamp(1.2rem, 1.4vw, 1.55rem);
    white-space: nowrap;
  }

  .approach .lede {
    margin-top: 0;
    max-width: 34rem;
  }

  .approach img {
    width: 100%;
    margin-top: 0.35rem;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    object-position: center 68%;
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .approach ol {
    display: grid;
    gap: 0.8rem;
  }

  .approach li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: start;
    background: white;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    border: 1px solid color-mix(in srgb, var(--green) 8%, white);
  }

  .approach li strong {
    display: block;
    font-size: 1.05rem;
  }

  .approach li p {
    margin-top: 0.2rem;
    color: var(--muted);
  }

  .num {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--mint);
    color: var(--green);
    font-family: var(--font-display);
    font-size: 1.2rem;
  }

  .cta-band {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: clamp(1.6rem, 3vw, 2.4rem);
    border-radius: 28px;
    color: white;
    background:
      radial-gradient(320px 180px at 100% 0%, color-mix(in srgb, var(--gold) 42%, transparent), transparent 70%),
      linear-gradient(165deg, #1c8a58, var(--green) 55%, #0b3325);
  }

  .cta-band h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
  }

  .cta-band p {
    margin-top: 0.55rem;
    max-width: 38rem;
    color: color-mix(in srgb, white 86%, var(--mint));
  }

  .cta-band .btn {
    flex: 0 0 auto;
  }

  .cta-band a:not(.btn) {
    color: white;
    font-weight: 700;
    text-underline-offset: 3px;
  }

  .contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 1.15rem;
    align-items: start;
    margin-top: clamp(1.8rem, 4vw, 2.8rem);
  }

  .contact-side,
  .contact-panel {
    display: grid;
    gap: 0.9rem;
    min-width: 0;
  }

  .info-card {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: white;
    border-radius: 20px;
    padding: 1rem 1.05rem;
    border: 1px solid color-mix(in srgb, var(--green) 8%, white);
    box-shadow: var(--shadow);
  }

  .info-card h2 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
  }

  .info-card p,
  .info-card a {
    display: block;
    margin-top: 0.15rem;
    color: var(--muted);
    font-weight: 600;
    text-decoration: none;
  }

  .info-card a:hover {
    color: var(--green-mid);
  }

  .contact-panel {
    background: white;
    border-radius: 28px;
    padding: 1.4rem 1.3rem 1.45rem;
    border: 1px solid color-mix(in srgb, var(--green) 7%, white);
    box-shadow: var(--shadow);
  }

  .contact-panel h2 {
    font-size: clamp(1.7rem, 2vw, 2.2rem);
  }

  .contact-panel > p {
    color: var(--muted);
    margin: 0.4rem 0 1rem;
  }

  .field select {
    width: 100%;
    border: 1.5px solid color-mix(in srgb, var(--green) 16%, white);
    background: var(--ivory);
    border-radius: 14px;
    padding: 0.8rem 0.9rem;
    color: var(--ink);
  }

  .field select:focus {
    outline: none;
    background: white;
    border-color: var(--gold-deep);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 30%, transparent);
  }

  .reveal {
    animation: rise linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 28%;
  }

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

  .process li {
    position: relative;
    display: grid;
    gap: 0.55rem;
    align-content: start;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .process li::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 42px;
    right: -1.75rem;
    height: 1px;
    background: color-mix(in srgb, var(--green) 22%, var(--ivory));
  }

  .process li:last-child::before {
    display: none;
  }

  .process .num {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: white;
    border: 1.5px solid color-mix(in srgb, var(--green) 30%, white);
    color: var(--green);
    font-size: 1.05rem;
    line-height: 1;
    box-shadow: 0 8px 18px color-mix(in srgb, var(--green) 8%, transparent);
  }

  .process li strong {
    display: block;
    margin-top: 0.15rem;
    font-size: 1.15rem;
  }

  .process li p {
    margin-top: 0;
    color: var(--muted);
  }

  .places {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.4fr);
    gap: 0.85rem;
  }

  .places li {
    min-width: 0;
    background: white;
    border: 1px solid color-mix(in srgb, var(--green) 8%, white);
    border-radius: 20px;
    box-shadow: none;
    padding: 1.1rem 1.2rem 1.15rem;
  }

  .places li:first-child {
    grid-row: span 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem 1.45rem 1.55rem;
    border: 0;
    background:
      radial-gradient(280px 180px at 100% 0%, color-mix(in srgb, var(--gold) 42%, transparent), transparent 70%),
      var(--green);
    color: white;
  }

  .places li:first-child .places__kicker {
    margin: 0;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .places li:not(:first-child) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.15rem;
    padding: 0.95rem 1.2rem;
  }

  .places li strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.55rem;
    letter-spacing: -0.03em;
    color: var(--green);
  }

  .places li span {
    display: block;
    color: var(--coral);
    font-size: 0.84rem;
    font-weight: 700;
  }

  .places li p {
    margin: 0;
    color: var(--muted);
  }

  .places li:first-child strong,
  .places li:first-child p {
    color: white;
  }

  .places li:first-child span {
    margin: 0.3rem 0 0.55rem;
    color: var(--gold);
  }

  .places li:not(:first-child) strong {
    font-size: 1.35rem;
  }

  .places li:not(:first-child) p {
    margin-top: 0.2rem;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(28px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}

@media (max-width: 1100px) {
  .nav-toggle {
    display: grid;
    position: relative;
    z-index: 50;
  }

  .header .nav > .btn {
    display: none;
  }

  .nav.is-open .btn {
    display: inline-flex;
  }

  .nav {
    position: fixed;
    inset: 0;
    z-index: 35;
    background:
      radial-gradient(420px 240px at 100% 0%, color-mix(in srgb, var(--gold) 35%, transparent), transparent 70%),
      var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.35rem;
    padding: 6rem 2rem 3rem;
    transform: translateY(-102%);
    visibility: hidden;
    transition: transform 0.45s var(--ease), visibility 0.45s;
  }

  .nav.is-open {
    transform: none;
    visibility: visible;
    overflow-y: auto;
    justify-content: flex-start;
    padding: calc(var(--header) + 1rem) 1.25rem 2.5rem;
    -webkit-overflow-scrolling: touch;
  }

  .nav a:not(.btn) {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 560;
  }

  .nav a:not(.btn)::after {
    bottom: 0;
  }

  .nav-drop__btn {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 560;
  }

  .nav-drop__btn::after {
    bottom: 2px;
  }

  .nav-drop__menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0.2rem 0 0.35rem;
  }

  .nav-drop.is-open .nav-drop__menu {
    display: grid;
  }

  .nav .nav-drop__menu a {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 4.5vw, 1.75rem);
    font-weight: 560;
    padding: 0.15rem 0;
    background: transparent;
  }

  .nav .btn {
    margin-top: 1rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 1.2rem 24px 2.5rem;
  }

  .hero__frame,
  .hero__frame img {
    min-height: 420px;
    border-radius: 28px;
  }

  .projects__grid,
  .about__grid,
  .approach,
  .focus-grid,
  .promise-grid,
  .pipeline,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .approach h2 {
    white-space: normal;
  }

  .focus-grid,
  .promise-grid,
  .pipeline {
    grid-template-columns: 1fr 1fr;
  }

  .process {
    grid-template-columns: 1fr 1fr;
  }

  .process li::before {
    right: 0;
    left: 42px;
  }

  .project--feature {
    order: -1;
  }

  .why__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trio,
  .pillars__bar,
  .stat-bar,
  .glass {
    grid-template-columns: 1fr;
  }

  .pillars__bar li,
  .stat-bar li {
    border-inline-end: 0;
    border-bottom: 1px solid var(--line);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding-left: 0.2rem;
  }

  .steps::before {
    top: 8px;
    bottom: 8px;
    left: 7px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .steps li {
    text-align: left;
    padding: 0 0 0 2rem;
  }

  .steps li::before {
    left: 0;
    top: 0.15rem;
    transform: none;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer__links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --header: 74px;
  }

  .wrap {
    width: min(var(--wrap), calc(100% - 40px));
  }

  .form {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.15rem, 9vw, 2.85rem);
  }

  h2,
  .page-title {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem);
  }

  .section {
    padding-block: 2.4rem;
  }

  .logo img,
  .header.is-scrolled .logo img {
    height: 140px;
    max-width: min(210px, 62vw);
  }

  input,
  select,
  textarea {
    font-size: 16px;
  }

  .pillars__bar,
  .why__grid,
  .glass,
  .stat-bar,
  .focus-grid,
  .promise-grid,
  .pipeline,
  .process,
  .places,
  .stats {
    grid-template-columns: 1fr;
  }

  .process li::before {
    display: none;
  }

  .places li:first-child {
    grid-row: auto;
  }

  .hero__frame,
  .hero__frame img {
    min-height: 280px;
  }

  .hero__actions,
  .page-intro .btn,
  .cta-band .btn {
    width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-switch a {
    flex: 1 1 auto;
    text-align: center;
  }

  .contact-panel,
  .project,
  .card {
    padding: 1.05rem;
  }

  .info-card a,
  .legal a,
  .cta-band a,
  .footer__bar {
    overflow-wrap: anywhere;
  }

  .tags li,
  .checks li {
    overflow-wrap: anywhere;
  }

  .footer__links,
  .legal-links {
    gap: 0.55rem 0.9rem;
  }

  .testimonial__by {
    flex-wrap: wrap;
  }

  .footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .card--invest {
    grid-column: auto;
  }

  .stats {
    width: 100%;
    margin-left: 0;
    margin-top: 0.9rem;
  }
}

@media (max-width: 480px) {
  .header__inner {
    width: min(var(--wrap), calc(100% - 32px));
  }

  .nav {
    padding-inline: 1.1rem;
  }

  .hero {
    padding-inline: 20px;
  }

  .hero__frame,
  .hero__frame img {
    min-height: 240px;
    border-radius: 20px;
  }

  .glass {
    position: static;
    margin: 0.75rem 0 0;
    grid-template-columns: 1fr;
  }

  .hero__frame {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
  }

  .hero__frame img {
    width: 100%;
    height: 240px;
    min-height: 240px;
    border-radius: 20px;
    object-fit: cover;
  }

  .btn,
  .hero__actions,
  .project .btn,
  .card--invest .btn,
  .form .btn,
  .form-success .btn,
  .cta-band .btn,
  .page-intro .btn {
    width: 100%;
  }

  .footer__bar {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .project,
  .project img,
  .btn,
  .header,
  .nav {
    animation: none !important;
    transition: none !important;
  }
}

@supports not (animation-timeline: view()) {
  .reveal {
    animation: none;
  }

  .js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }

  .js .reveal.is-in {
    opacity: 1;
    transform: none;
  }
}

.home > section {
  padding-bottom: var(--section-gap);
}

.home > .hero {
  padding-bottom: var(--section-gap);
}

.home > .pillars {
  margin-top: 0;
  padding-bottom: var(--section-gap);
}

.home > .section {
  padding-block: 0;
  padding-bottom: var(--section-gap);
}

.home > .why {
  margin-top: 2.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  margin-bottom: 2.5rem;
}
