.mobile-close-icon,
.main-nav .mobile-menu-cta,
.mobile-only {
  display: none;
}

@media (max-width: 760px) {
  .home-page {
    --gutter: 12px;
  }

  .home-page main {
    overflow: hidden;
  }

  /* Header - closed state */
  .home-page .site-header {
    position: absolute;
    z-index: 60;
    top: 0;
    left: 0;
    width: 100%;
    height: 74px;
    padding: 12px;
    background: transparent;
    backdrop-filter: none;
  }

  .home-page .brand {
    position: absolute;
    z-index: 3;
    top: 19.5px;
    left: 12px;
    width: 144px;
    height: 35px;
    transition: top .35s ease, left .35s ease;
  }

  .home-page .menu-toggle {
    position: absolute;
    z-index: 3;
    top: 12px;
    right: 12px;
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(203, 205, 198, .5);
    transition: top .35s ease, right .35s ease, border-color .25s ease, background-color .25s ease;
  }

  .home-page .menu-toggle > span {
    position: absolute;
    display: block;
    width: 19px;
    height: 1px;
    border-radius: 1px;
    background: var(--ink);
    opacity: 1;
    transition: opacity .2s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
  }

  .home-page .mobile-close-icon {
    position: absolute;
    display: block;
    object-fit: contain;
    transition: opacity .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
  }

  .home-page .menu-toggle > span:first-of-type {
    transform: translateY(-4px);
  }

  .home-page .menu-toggle > span:last-of-type {
    transform: translateY(4px);
  }

  .home-page .mobile-close-icon {
    width: 24px;
    height: 24px;
    opacity: 0;
    transform: rotate(-60deg) scale(.7);
  }

  .home-page.menu-open .site-header {
    position: fixed;
    height: 98px;
    padding: 24px;
    background: var(--paper);
  }

  .home-page.menu-open .brand {
    top: 31.5px;
    left: 24px;
  }

  .home-page.menu-open .menu-toggle {
    top: 24px;
    right: 24px;
    border: 1px solid var(--ink);
    background: var(--paper);
  }

  .home-page.menu-open .menu-toggle > span:first-of-type {
    opacity: 0;
    transform: translateY(0) rotate(35deg) scale(.7);
  }

  .home-page.menu-open .menu-toggle > span:last-of-type {
    opacity: 0;
    transform: translateY(0) rotate(-35deg) scale(.7);
  }

  .home-page.menu-open .mobile-close-icon {
    opacity: 1;
    transform: rotate(0) scale(1);
  }

  /* Header - open menu overlay */
  .home-page .main-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    visibility: hidden;
    width: 100%;
    min-height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 103px 24px 40px;
    border: 0;
    border-radius: 0;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: transform .42s cubic-bezier(.22, 1, .36, 1), opacity .28s ease, visibility .42s;
  }

  .home-page .main-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .home-page .main-nav > a:not(.mobile-menu-cta) {
    display: flex;
    width: 100%;
    height: 55px;
    flex: 0 0 55px;
    align-items: center;
    gap: 12px;
    padding: 0;
    border-bottom: 1px solid rgba(17, 17, 17, .1);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.28;
    letter-spacing: -.5px;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .4s cubic-bezier(.22, 1, .36, 1);
  }

  .home-page .main-nav > a:first-child {
    border-top: 1px solid rgba(17, 17, 17, .1);
  }

  .home-page .main-nav > a:not(.mobile-menu-cta) > span {
    width: 8px;
    height: 8px;
    background: #cbcdc6;
    transform: none;
  }

  .home-page .main-nav.is-open > a:not(.mobile-menu-cta) {
    opacity: 1;
    transform: translateY(0);
  }

  .home-page .main-nav.is-open > a:nth-child(1) { transition-delay: .06s; }
  .home-page .main-nav.is-open > a:nth-child(2) { transition-delay: .1s; }
  .home-page .main-nav.is-open > a:nth-child(3) { transition-delay: .14s; }
  .home-page .main-nav.is-open > a:nth-child(4) { transition-delay: .18s; }
  .home-page .main-nav.is-open > a:nth-child(5) { transition-delay: .22s; }

  .home-page .main-nav .mobile-menu-cta {
    display: grid;
    width: 118px;
    height: 39px;
    flex: 0 0 39px;
    place-items: center;
    align-self: flex-start;
    margin-top: 39px;
    padding: 0 25px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .3s ease .26s, transform .4s cubic-bezier(.22, 1, .36, 1) .26s;
  }

  .home-page .main-nav.is-open .mobile-menu-cta {
    opacity: 1;
    transform: translateY(0);
  }

  /* Hero: 0–530 */
  .home-page .hero {
    position: relative;
    height: 530px;
    min-height: 530px;
    padding: 0;
  }

  .home-page .hero-title {
    position: absolute;
    top: 96px;
    left: 12px;
  }

  .home-page .hero-title h1 {
    margin: 0;
    font-size: 52px;
    line-height: 1.173;
    letter-spacing: -4.8px;
  }

  .home-page .hero-title .line {
    width: max-content;
  }

  .home-page .hero-title .line-two {
    margin: 0 0 0 1px;
    padding: 0;
  }

  .home-page .hero-title .line-three {
    margin: 0 0 0 1px;
    color: rgba(17, 17, 17, .2);
    font-size: 62px;
    line-height: 1.177;
  }

  .home-page .leaf-mark {
    top: -61px;
    right: auto;
    left: 300px;
    width: 100px;
    height: 66px;
    object-fit: contain;
  }

  .home-page .doodle {
    position: absolute;
    top: 16px;
    left: 290px;
    width: 60px;
    height: 52px;
    margin: 0;
  }

  .home-page .hero-orb {
    top: 312px;
    right: auto;
    left: 52.727%;
    width: 180px;
    height: 181px;
    opacity: 1;
  }

  .home-page .hero-intro {
    position: absolute;
    top: 359px;
    right: auto;
    bottom: auto;
    left: 12px;
    display: block;
  }

  .home-page .hero-intro p {
    width: 232px;
    margin: 0;
    color: #4a4a4a;
    font-size: 16px;
    line-height: 1.31;
  }

  .home-page .hero-intro .pill-button {
    margin-top: 25px;
  }

  .home-page .pill-button {
    height: 39px;
    font-size: 16px;
  }

  .home-page .pill-button .button-icon {
    width: 39px;
  }

  /* Statement image: 530–742 */
  .home-page .statement {
    height: 212px;
  }

  .home-page .statement-image {
    width: 100%;
    height: 212px;
    object-position: center;
  }

  .home-page .statement-copy {
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 66px;
    min-height: 0;
    padding: 15px 12px;
    background: rgba(39, 76, 66, .25);
    backdrop-filter: blur(2px);
  }

  .home-page .statement-copy p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.29;
  }

  /* Services: 742–1785 */
  .home-page .services {
    position: relative;
    height: 1043px;
    min-height: 0;
    padding: 20px 12px 0;
  }

  .home-page .service-heading {
    position: static;
    display: block;
    height: auto;
  }

  .home-page .section-heading h2,
  .home-page .service-heading h2 {
    font-size: 44px;
    line-height: .98;
    letter-spacing: -4px;
  }

  .home-page .service-heading .pill-button {
    position: absolute;
    top: 127px;
    left: 12px;
    margin: 0;
  }

  .home-page .service-grid {
    position: absolute;
    top: 197px;
    right: 12px;
    left: 12px;
    display: grid;
    height: 800px;
    grid-template-columns: 1fr;
    grid-auto-rows: 185px;
    gap: 20px;
    margin: 0;
  }

  .home-page .service-divider {
    display: none;
  }

  .home-page .service-card {
    display: grid;
    min-height: 185px;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 30px;
    padding-top: 20px;
  }

  .home-page .service-card > img {
    width: 110px;
    height: 110px;
  }

  .home-page .service-card > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .home-page .service-card .eyebrow {
    font-size: 18px;
    line-height: 1.28;
  }

  .home-page .service-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -.462px;
  }

  .home-page .service-card div > p:not(.eyebrow) {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.31;
  }

  .home-page .service-card a {
    margin-top: 12px;
    padding-top: 8px;
    font-size: 16px;
    line-height: 1.31;
  }

  /* Work: 1785–3653 */
  .home-page .work {
    position: relative;
    height: 1868px;
    padding: 0 12px;
  }

  .home-page .work-heading {
    position: static;
    min-height: 0;
  }

  .home-page .work-heading h2 {
    font-size: 44px;
    line-height: .98;
    letter-spacing: -4px;
  }

  .home-page .mobile-only {
    display: block;
  }

  .home-page .desktop-only {
    display: none;
  }

  .home-page .work-heading .pill-button {
    position: absolute;
    top: 193px;
    left: 12px;
    margin: 0;
  }

  .home-page .case-grid {
    position: absolute;
    top: 260px;
    right: 12px;
    left: 12px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 0;
  }

  .home-page .case-grid .case-card:nth-child(n) {
    width: 100%;
    height: 376px;
    grid-column: 1;
    grid-row: auto;
    border-radius: 20px;
  }

  .home-page .case-card strong {
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    min-height: 78px;
    align-items: center;
    padding: 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.28;
    text-shadow: 0 2px 2px rgba(0, 0, 0, .25);
  }

  /* Approach and values: 3653–4696 */
  .home-page .approach {
    position: relative;
    height: 1043px;
    padding: 0 12px;
  }

  .home-page .approach-intro {
    position: static;
    display: block;
    min-height: 0;
  }

  .home-page .approach-label {
    position: absolute;
    top: 0;
    left: 123px;
    width: 235px;
    margin: 0;
    font-size: 22px;
    line-height: 1.18;
    letter-spacing: -2px;
  }

  .home-page .approach-copy {
    position: absolute;
    top: 95px;
    right: 12px;
    left: 12px;
    margin: 0;
    font-size: 28px;
    line-height: 1.1786;
    letter-spacing: -2px;
    white-space: normal;
  }

  .home-page .approach-line {
    display: inline;
  }

  .home-page .values {
    position: static;
    display: block;
    margin: 0;
    padding: 0;
  }

  .home-page .values-number {
    position: absolute;
    top: 0;
    left: 12px;
    margin: 0;
    color: var(--lime);
    font-size: 100px;
    line-height: .86;
    letter-spacing: 0;
  }

  .home-page .value-list {
    position: absolute;
    top: 325px;
    right: 12px;
    left: 12px;
  }

  .home-page .value-list li {
    display: block;
    height: 169px;
    padding: 16px 0;
    border-top: 1px dashed var(--ink);
  }

  .home-page .value-list span {
    display: block;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .home-page .value-list h3 {
    margin-top: 4px;
    font-size: 24px;
    line-height: 1.17;
    letter-spacing: -.504px;
  }

  .home-page .value-list p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.31;
  }

  /* Marquee: 4696–4784 */
  .home-page .marquee {
    height: 88px;
    padding: 28px 0;
  }

  .home-page .marquee-track {
    gap: 20px;
  }

  .home-page .marquee span {
    font-size: 44px;
    line-height: .72;
  }

  .home-page .marquee img {
    width: 31px;
    height: 32px;
  }

  /* Footer: 4784–5205 */
  .home-page .site-footer {
    position: relative;
    display: block;
    height: 421px;
    min-height: 421px;
    padding: 0;
  }

  .home-page .footer-cta {
    position: absolute;
    top: 34px;
    left: 12px;
  }

  .home-page .footer-cta h2 {
    margin: 0;
    font-size: 44px;
    line-height: 1.182;
    letter-spacing: -4px;
  }

  .home-page .footer-cta .pill-button {
    margin-top: 12px;
  }

  .home-page .footer-meta {
    position: absolute;
    inset: 0;
    display: block;
  }

  .home-page .awards {
    position: absolute;
    top: 282px;
    left: 12px;
    display: flex;
    gap: 30px;
  }

  .home-page .awards img {
    width: 70px;
    height: 70px;
  }

  .home-page .footer-meta p {
    position: absolute;
    top: 376px;
    left: 13px;
    margin: 0;
    font-size: 16px;
    line-height: 1.31;
    white-space: nowrap;
  }
}
