.final-footer {
  display: block;
  border-top: 1px solid var(--line);
  background: rgba(250, 248, 244, 0.99);
  color: rgba(7, 26, 50, 0.72);
  font-size: 13px;
}

.final-footer-grid {
  display: grid;
  grid-template-columns:
    minmax(225px, 0.88fr)
    minmax(230px, 0.92fr)
    minmax(180px, 0.74fr)
    minmax(150px, 0.64fr)
    minmax(300px, 1.18fr)
    minmax(180px, 0.72fr);
  align-items: start;
  gap: 26px;
  height: 100%;
  padding: 35px clamp(40px, 3.2vw, 54px) 28px;
}

.final-footer-brand > img {
  width: 230px;
  height: 70px;
  display: block;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.final-footer-brand p {
  max-width: 270px;
  margin: 14px 0 0;
  font-size: 13px;
  line-height: 1.55;
}

.final-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.final-footer-column h3 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.2;
}

.final-footer-column a {
  line-height: 1.3;
  transition: color 160ms ease;
}

.final-footer-column a:hover,
.final-footer-column a:focus-visible,
.final-contact-row:hover,
.final-contact-row:focus-visible,
.final-footer-legal a:hover,
.final-footer-legal a:focus-visible {
  color: var(--blue);
}

.final-footer-service-links {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.final-footer-connect {
  display: grid;
  gap: 8px;
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.final-contact-row {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 6px 8px 6px 6px;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--ink);
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.final-contact-row:hover,
.final-contact-row:focus-visible {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(22, 131, 232, 0.16);
  transform: translateX(2px);
}

.final-contact-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(22, 131, 232, 0.17);
  border-radius: 50%;
  background: linear-gradient(145deg, #f5faff 8%, #e5f2ff 100%);
  box-shadow: 0 5px 14px rgba(52, 122, 187, 0.08);
}

.final-contact-icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.final-contact-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.final-contact-row strong {
  color: var(--ink);
  font-size: 12.5px;
  line-height: 1.25;
  font-weight: 600;
}

.final-contact-copy > span {
  overflow-wrap: anywhere;
  color: rgba(7, 26, 50, 0.58);
  font-size: 10.5px;
  line-height: 1.3;
}

.final-footer-legal {
  min-height: 126px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.final-footer-legal a {
  line-height: 1.3;
  transition: color 160ms ease;
}

.final-footer-legal span {
  margin-top: 7px;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.4;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1.5fr auto;
  align-items: center;
  gap: clamp(20px, 3vw, 58px);
  padding: 0 clamp(32px, 2.8vw, 52px);
  background: rgba(248, 245, 239, 0.98);
  font-size: 13px;
  color: rgba(7, 26, 50, 0.76);
  position: relative;
  z-index: 10;
}

.footer-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.footer-brand strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
  color: var(--ink);
}

.footer-brand span {
  white-space: nowrap;
}

.footer-item {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}

.pin-icon {
  width: 18px;
  height: 22px;
  border: 1.5px solid var(--ink);
  border-radius: 55% 55% 55% 0;
  transform: rotate(-45deg);
  position: relative;
}

.pin-icon::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  left: 5px;
  top: 5px;
}

.mail-icon {
  width: 23px;
  height: 16px;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  position: relative;
}

.mail-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  left: 4px;
  top: -7px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(45deg);
}

.linkedin-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  color: var(--ink);
}

.footer-copy {
  justify-self: end;
  white-space: nowrap;
}

@media (max-width: 1240px) {
  .final-footer-grid {
    grid-template-columns: 0.86fr 0.92fr 0.74fr 0.66fr 1.16fr 0.7fr;
    gap: 15px;
    padding-right: 28px;
    padding-left: 28px;
  }

  .final-footer-brand > img {
    width: 190px;
    height: 64px;
  }

  .final-footer-connect,
  .final-footer-legal {
    padding-left: 16px;
  }

  .final-contact-row {
    gap: 9px;
  }

  .site-header {
    grid-template-columns: minmax(210px, 1fr) auto minmax(230px, 1fr);
  }

  .brand-mark {
    font-size: 42px;
  }

  .brand-by {
    font-size: 13px;
  }

  .desktop-nav ul,
  .desktop-nav li {
    gap: 18px;
  }

  .button-chat {
    min-width: 124px;
  }

  .button-audit {
    min-width: 130px;
  }

  .header-actions .button {
    padding: 0 18px;
  }

  .founder-note {
    left: 77%;
  }

  .dialogue-stack {
    width: min(42vw, 560px);
    right: 28px;
  }

  .question-card {
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 26px 28px;
  }

  .answer-card {
    grid-template-columns: 66px 1fr;
    gap: 18px;
    padding: 38px 30px 30px;
  }

  .user-icon,
  .answer-icon {
    width: 58px;
    height: 58px;
  }

  .slide-three-panels {
    left: 34px;
    right: 34px;
    gap: 24px;
  }

  .geo-panel-local-art {
    left: -22px;
  }

  .geo-panel-local .geo-panel-copy {
    left: 42%;
  }

  .geo-panel-authority-art {
    left: 34px;
  }

  .geo-panel-authority .geo-panel-copy {
    left: 43%;
  }

  .method-flow {
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
  }

  .audit-frame {
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
  }

  .local-seo-frame {
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
  }

  .paid-acquisition-frame {
    transform: translateX(-50%) scale(0.72);
    transform-origin: top center;
  }

  .website-showcase-frame {
    transform: translateX(-50%) scale(var(--showcase-scale));
    transform-origin: top center;
  }

  .slide-eight-footer {
    grid-template-columns: 1fr 0.95fr 1.15fr 1.45fr;
    gap: 24px;
    padding: 0 32px;
  }

  .slide-eight-footer-copy {
    display: none;
  }

  .slide-four-copy h2 {
    max-width: 680px;
    font-size: clamp(64px, 6.6vw, 82px);
    transform: none;
  }

  .slide-four-choices {
    left: 6vw;
    right: 5vw;
    gap: 28px;
  }

  .slide-four-choice-local {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 20px;
  }

  .slide-four-choice-authority {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 14px;
  }

  .slide-four-icon-local {
    width: 128px;
    height: 168px;
    transform: none;
  }

  .slide-four-icon-authority {
    width: 190px;
    height: 210px;
    transform: none;
  }

  .site-footer {
    grid-template-columns: 1fr 0.85fr 1.1fr 1.3fr;
  }

  .footer-copy {
    display: none;
  }
}

@media (max-width: 1671px) and (min-width: 1101px) {
  .method-flow,
  .audit-frame,
  .local-seo-frame,
  .paid-acquisition-frame {
    --home-frame-scale: calc((100vw - 32px) / 1672px);
    transform: translateX(-50%) scale(var(--home-frame-scale));
    transform-origin: top center;
  }

  .method-flow,
  .audit-frame,
  .local-seo-frame {
    height: calc(100% / var(--home-frame-scale));
    bottom: auto;
  }

  .paid-acquisition-frame {
    height: calc(770px / var(--home-frame-scale));
  }
}

/*
 * Between tablet and desktop, the art-directed canvases no longer have room
 * for fixed-position copy and illustrations. Keep the same content, but let
 * it participate in a real layout instead of allowing the layers to collide.
 */
@media (max-width: 1240px) and (min-width: 1101px) {
  .slide-three,
  .slide-four {
    height: auto;
    min-height: 0;
    padding: 68px 34px 66px;
    overflow: hidden;
  }

  .slide-three-copy,
  .method-heading {
    padding-top: 0;
  }

  .slide-three-copy h2,
  .method-heading h2 {
    font-size: clamp(62px, 7.3vw, 78px);
  }

  .slide-three-copy p,
  .method-heading p {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    font-size: 21px;
  }

  .slide-three-panels {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin-top: 52px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .geo-panel {
    min-height: 350px;
    display: grid;
    grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 12px;
    padding: 32px 38px;
  }

  .geo-panel-local-art,
  .geo-panel-authority-art {
    position: relative;
    inset: auto;
    width: min(100%, 260px);
    height: auto;
    margin: 0 auto;
  }

  .geo-panel-copy,
  .geo-panel-local .geo-panel-copy,
  .geo-panel-authority .geo-panel-copy {
    position: relative;
    inset: auto;
    width: auto;
  }

  .geo-panel h3 {
    white-space: normal;
    font-size: clamp(32px, 3.35vw, 38px);
  }

  .geo-panel-copy p {
    font-size: 18px;
  }

  .geo-panel-local .geo-panel-copy p {
    margin-left: 0;
  }

  .slide-three-index,
  .slide-four-index {
    position: static;
    margin-top: 44px;
  }

  .method-flow {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px 30px;
    margin-top: 58px;
    transform: none;
  }

  .method-route,
  .method-leaves {
    display: none;
  }

  .method-stage,
  .method-stage-1,
  .method-stage-2,
  .method-stage-3,
  .method-stage-4,
  .method-stage-5 {
    position: relative;
    inset: auto;
    width: auto;
  }

  .method-stage-5 {
    grid-column: 1 / -1;
  }

  .method-stage-art {
    width: 190px;
    margin: 0 auto;
  }

  .method-stage-copy,
  .method-stage-1 .method-stage-copy,
  .method-stage-2 .method-stage-copy,
  .method-stage-3 .method-stage-copy,
  .method-stage-4 .method-stage-copy,
  .method-stage-5 .method-stage-copy {
    width: auto;
    max-width: 280px;
    margin: 17px auto 0;
    transform: none;
  }

  .method-stage h3 {
    font-size: 27px;
    transform: none;
  }

  .method-stage p {
    font-size: 17px;
    transform: none;
  }
}

/*
 * The art-directed fullpage compositions need desktop-width columns. At
 * tablet and narrow laptop widths, use the existing stacked layout instead
 * of scaling text and artwork into each other.
 */
@media (max-width: 1100px) {
  html {
    scroll-snap-type: none;
    scroll-padding-top: 0;
  }

  .site-shell {
    display: block;
    overflow: visible;
  }

  .hero,
  .slide-two,
  .slide-three,
  .slide-four,
  .slide-client-footprint,
  .slide-five,
  .slide-six,
  .slide-seven,
  .slide-eight,
  .slide-nine,
  .slide-ten {
    scroll-margin-top: 66px;
  }

  .site-header {
    min-height: 66px;
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .brand-mark {
    font-size: 38px;
  }

  .brand-by {
    font-size: 12px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    min-height: 41px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 13px;
    color: var(--ink);
    background: transparent;
    border: 1px solid var(--ink);
    border-radius: 4px;
    font: 600 10px/1 "Manrope", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    cursor: pointer;
  }

  .menu-glyph {
    font-size: 18px;
  }

  .mobile-nav {
    max-height: 0;
    display: grid;
    grid-template-rows: repeat(5, 54px) 68px;
    visibility: hidden;
    overflow: hidden;
    padding: 0 20px;
    background: var(--cream);
    border-bottom: 0 solid var(--ink);
    transition:
      max-height 260ms ease,
      padding 260ms ease,
      border-width 260ms ease;
    position: relative;
    z-index: 19;
  }

  .mobile-nav-open {
    max-height: 380px;
    visibility: visible;
    padding-top: 10px;
    padding-bottom: 16px;
    border-bottom-width: 1px;
  }

  .mobile-nav > a {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--line);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 28px;
    font-weight: 600;
  }

  .mobile-nav > a span {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 9px;
    opacity: 0.5;
  }

  .mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 12px;
  }

  .mobile-actions .button {
    min-width: 0;
    min-height: 50px;
  }

  .hero {
    height: auto;
    min-height: 0;
    overflow: visible;
    background: var(--cream);
    padding-bottom: 650px;
  }

  .hero-copy {
    width: 100%;
    height: auto;
    min-height: 625px;
    padding: 78px 24px 120px;
    background: var(--cream);
  }

  h1 {
    max-width: 700px;
    font-size: clamp(60px, 12.2vw, 88px);
  }

  .hero-subline {
    font-size: 22px;
  }

  .hero-index {
    left: 24px;
    bottom: 44px;
  }

  .hero-city,
  .city-soften,
  .cream-fade {
    top: auto;
    bottom: 0;
    height: 650px;
  }

  .cream-fade {
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(248, 245, 239, 0.5) 18%,
      rgba(248, 245, 239, 0.04) 48%
    );
  }

  .founder-portrait {
    top: auto;
    bottom: 0;
    left: 50%;
    height: 570px;
    max-width: 92vw;
  }

  .founder-note {
    top: auto;
    bottom: 78px;
    left: auto;
    right: 24px;
  }

  .slide-two {
    height: auto;
    min-height: 0;
    padding: 76px 24px 72px;
    overflow: hidden;
  }

  .slide-two-city {
    width: 100%;
    object-position: center 55%;
  }

  .slide-two-fade {
    background: linear-gradient(
      180deg,
      var(--cream) 0%,
      rgba(248, 245, 239, 0.96) 30%,
      rgba(248, 245, 239, 0.62) 62%,
      rgba(248, 245, 239, 0.36) 100%
    );
  }

  .slide-two-copy {
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    padding: 0;
  }

  .slide-two h2 {
    max-width: 720px;
    font-size: clamp(58px, 11.5vw, 86px);
  }

  .slide-two-copy > p {
    max-width: 650px;
    font-size: 21px;
  }

  .slide-two-index {
    position: static;
    margin-top: 48px;
  }

  .dialogue-stack {
    position: relative;
    width: min(100%, 680px);
    right: auto;
    top: auto;
    margin: 50px auto 0;
  }

  .question-card {
    width: 100%;
    min-height: 138px;
    margin-left: 0;
  }

  .answer-card {
    min-height: 286px;
  }

  .slide-three {
    height: auto;
    min-height: 0;
    padding: 68px 24px 66px;
    overflow: hidden;
  }

  .slide-three-copy {
    padding-top: 0;
  }

  .slide-three-copy h2 {
    font-size: clamp(64px, 10.8vw, 88px);
    transform: none;
  }

  .slide-three-copy p {
    max-width: 670px;
    margin-right: auto;
    margin-left: auto;
    font-size: 23px;
  }

  .slide-three-panels {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    margin-top: 54px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .geo-panel {
    min-height: 430px;
  }

  .geo-panel-local-art {
    left: 1%;
    bottom: 40px;
    width: 52%;
  }

  .geo-panel-local .geo-panel-copy {
    top: 112px;
    left: 51%;
    width: 43%;
  }

  .geo-panel-authority-art {
    top: 96px;
    left: 12%;
    width: 235px;
  }

  .geo-panel-authority .geo-panel-copy {
    top: 138px;
    left: 47%;
    width: 46%;
  }

  .geo-panel h3 {
    font-size: clamp(34px, 4.6vw, 41px);
  }

  .geo-panel-copy p {
    font-size: 19px;
  }

  .geo-panel-local .geo-panel-copy p {
    margin-left: 0;
  }

  .slide-three-index {
    position: static;
    margin-top: 42px;
  }

  .slide-four {
    height: auto;
    min-height: 0;
    padding: 72px 24px 66px;
    overflow: hidden;
  }

  .method-heading {
    padding-top: 0;
  }

  .method-heading h2 {
    font-size: clamp(64px, 10.5vw, 88px);
    transform: none;
  }

  .method-heading p {
    font-size: 22px;
  }

  .method-flow {
    position: relative;
    inset: auto;
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 54px 30px;
    margin-top: 62px;
    transform: none;
  }

  .method-route,
  .method-leaves {
    display: none;
  }

  .method-stage,
  .method-stage-1,
  .method-stage-2,
  .method-stage-3,
  .method-stage-4,
  .method-stage-5 {
    position: relative;
    inset: auto;
    width: auto;
  }

  .method-stage-art {
    width: 205px;
    margin: 0 auto;
  }

  .method-stage-copy,
  .method-stage-1 .method-stage-copy,
  .method-stage-2 .method-stage-copy,
  .method-stage-3 .method-stage-copy,
  .method-stage-4 .method-stage-copy,
  .method-stage-5 .method-stage-copy {
    width: auto;
    max-width: 300px;
    margin: 18px auto 0;
    transform: none;
  }

  .method-stage h3 {
    font-size: 30px;
    transform: none;
  }

  .method-stage p {
    font-size: 18px;
    transform: none;
  }

  .slide-five {
    height: auto;
    min-height: 0;
    padding: 72px 24px 66px;
    overflow: hidden;
  }

  .audit-frame {
    width: auto;
    height: auto;
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    transform: none;
  }

  .audit-copy {
    position: relative;
    inset: auto;
    order: 1;
  }

  .audit-copy h2 {
    font-size: clamp(58px, 10vw, 78px);
    transform: none;
  }

  .audit-subline {
    max-width: 620px;
    font-size: 21px;
  }

  .audit-points {
    transform: none;
  }

  .audit-workspace {
    position: relative;
    inset: auto;
    order: 2;
    width: min(100%, 760px);
    height: auto;
    margin: 54px auto 0;
    border-radius: 28px;
  }

  .audit-photo-fade {
    display: none;
  }

  .slide-five-index {
    position: static;
    margin-top: 54px;
  }

  .slide-six {
    height: auto;
    min-height: 0;
    padding: 138px 24px 66px;
    overflow: hidden;
    scroll-margin-top: 0;
  }

  .local-seo-frame {
    width: auto;
    height: auto;
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    transform: none;
  }

  .local-seo-copy {
    position: relative;
    inset: auto;
    order: 1;
  }

  .local-seo-copy h2 {
    font-size: clamp(58px, 10vw, 78px);
  }

  .local-seo-subline {
    max-width: 650px;
    font-size: 21px;
  }

  .local-seo-points {
    transform: none;
  }

  .local-seo-street {
    position: relative;
    inset: auto;
    order: 2;
    width: min(100%, 760px);
    height: auto;
    margin: 54px auto 0;
    border-radius: 28px;
  }

  .local-seo-photo-fade,
  .map-pin {
    display: none;
  }

  .slide-six-index {
    position: static;
    margin-top: 54px;
  }

  .slide-seven {
    height: auto;
    min-height: 0;
    padding: 138px 24px 66px;
    overflow: hidden;
    scroll-margin-top: 0;
  }

  .paid-acquisition-frame {
    width: auto;
    height: auto;
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 28px;
    transform: none;
  }

  .paid-acquisition-copy {
    position: relative;
    inset: auto;
    grid-column: 1 / -1;
  }

  .paid-acquisition-copy h2 {
    font-size: clamp(58px, 10vw, 78px);
    transform: none;
  }

  .paid-acquisition-subline {
    max-width: 650px;
    font-size: 21px;
  }

  .paid-acquisition-points {
    transform: none;
  }

  .paid-platform {
    width: min(100%, 360px);
    height: auto;
    aspect-ratio: 1;
    position: relative;
    inset: auto;
    justify-self: center;
  }

  .paid-platform::before {
    inset: -10px;
  }

  .paid-platform-logo-google {
    margin-top: 20%;
  }

  .paid-platform-logo-meta {
    margin-top: 23%;
  }

  .paid-platform-connector {
    display: none;
  }

  .slide-seven-index {
    position: static;
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .slide-eight {
    height: auto;
    min-height: 0;
    padding: 138px 24px 70px;
    overflow: hidden;
    scroll-margin-top: 0;
  }

  .website-showcase-frame {
    width: auto;
    height: auto;
    position: relative;
    inset: auto;
    display: grid;
    gap: 68px;
    transform: none;
  }

  .website-showcase-copy {
    position: relative;
    inset: auto;
  }

  .website-showcase-copy h2 {
    font-size: clamp(58px, 10vw, 78px);
  }

  .website-showcase-subline {
    max-width: 650px;
    font-size: 21px;
  }

  .website-showcase-points {
    transform: none;
  }

  .website-device-stage {
    width: min(100%, 992px);
    height: auto;
    min-height: 0;
    aspect-ratio: 992 / 770;
    position: relative;
    inset: auto;
    justify-self: center;
    transform: none;
  }

  .website-image-canvas {
    inset: 0;
  }

  .website-device-stage::before,
  .website-device-stage::after {
    width: 28%;
  }

  .slide-eight-index {
    position: static;
    width: fit-content;
    margin-top: 0;
  }

  .slide-eight-footer {
    display: none;
  }

  .slide-nine {
    height: auto;
    min-height: 0;
    padding: 138px 24px 70px;
    overflow: hidden;
    scroll-margin-top: 0;
  }

  .lead-system-phone-scene-reference {
    display: none;
  }

  .lead-system-frame {
    width: auto;
    height: auto;
    position: relative;
    inset: auto;
    display: grid;
    gap: 58px;
    transform: none;
  }

  .lead-system-frame::after {
    display: none;
  }

  .lead-system-copy {
    width: 100%;
    position: relative;
    inset: auto;
  }

  .lead-system-copy h2 {
    font-size: clamp(58px, 10vw, 78px);
  }

  .lead-system-subline {
    max-width: 650px;
    font-size: 21px;
  }

  .lead-journey {
    position: relative;
    inset: auto;
    display: grid;
    gap: 34px;
  }

  .lead-route {
    display: none;
  }

  .lead-stage,
  .lead-stage-one,
  .lead-stage-two,
  .lead-stage-three {
    width: min(100%, 650px);
    position: relative;
    inset: auto;
  }

  .lead-stage-two {
    margin-left: 7vw;
  }

  .lead-stage-three {
    margin-left: 14vw;
  }

  .lead-phone-scene {
    width: min(100%, 515px);
    height: 720px;
    position: relative;
    inset: auto;
    display: block;
    justify-self: center;
  }

  .lead-phone {
    left: 8px;
  }

  .slide-nine-index {
    display: flex;
    position: static;
    width: fit-content;
    margin-top: 0;
  }

  .slide-ten {
    height: auto;
    min-height: 0;
    display: block;
    overflow: hidden;
    scroll-margin-top: 0;
  }

  .final-cta {
    min-height: 610px;
    padding: 90px 24px 80px;
  }

  .final-cta-content {
    width: min(100%, 720px);
    transform: none;
  }

  .final-cta h2 {
    font-size: clamp(64px, 10.5vw, 84px);
  }

  .final-subline {
    max-width: 620px;
    margin: 0 auto;
    font-size: 20px;
  }

  .slide-ten-index {
    left: 24px;
    bottom: 35px;
  }

  .final-footer {
    display: block;
  }

  .final-footer-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 34px;
    padding: 45px 24px 38px;
  }

  .final-footer-brand,
  .final-footer-services {
    grid-column: 1 / -1;
  }

  .final-footer-service-links {
    grid-template-columns: 1fr;
  }

  .final-footer-connect {
    padding-left: 0;
    border-left: 0;
  }

  .final-footer-legal {
    padding-left: 0;
    border-left: 0;
  }

  .slide-four::before {
    width: 470px;
    height: 520px;
    top: 26px;
    left: -120px;
  }

  .slide-four-copy {
    position: relative;
    top: auto;
    left: auto;
  }

  .slide-four-copy h2 {
    max-width: 720px;
    font-size: clamp(62px, 10.5vw, 86px);
  }

  .slide-four-choices {
    position: relative;
    inset: auto;
    margin-top: 70px;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .slide-four-divider {
    display: none;
  }

  .slide-four-choice-local,
  .slide-four-choice-authority {
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 30px;
  }

  .slide-four-icon-local {
    width: 170px;
    height: 224px;
  }

  .slide-four-icon-authority {
    width: 190px;
    height: 210px;
  }

  .slide-four-choice h3 {
    font-size: 25px;
  }

  .slide-four-choice p {
    font-size: 18px;
  }

  .slide-four-index {
    position: static;
    margin-top: 62px;
  }

  .slide-client-footprint {
    height: auto;
    min-height: 0;
    padding: 72px 24px 66px;
    overflow: hidden;
  }

  .client-footprint-frame {
    width: auto;
    height: auto;
    position: relative;
    inset: auto;
    display: grid;
    gap: 38px;
    transform: none;
  }

  .client-footprint-copy,
  .client-footprint-map-stage {
    width: auto;
    position: relative;
    inset: auto;
    transform: none;
  }

  .client-footprint-copy {
    max-width: 720px;
  }

  .client-footprint-copy h2 {
    font-size: clamp(64px, 10.5vw, 88px);
  }

  .client-footprint-copy > p {
    max-width: 650px;
    font-size: 21px;
  }

  .client-footprint-map-stage {
    height: clamp(420px, 64vw, 570px);
    order: 2;
    border-radius: 28px;
  }

  .slide-client-footprint-index {
    position: static;
    width: fit-content;
    margin-top: 46px;
  }

  .client-footprint-stats {
    flex-direction: column;
    gap: 10px;
  }

  .site-footer {
    min-height: 150px;
    margin-top: 650px;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 24px;
  }

  .footer-copy {
    display: block;
  }
}

@media (min-width: 768px) and (max-width: 1240px) {
  .slide-client-footprint {
    min-height: calc(100vh - 66px);
    padding: 64px 42px 58px;
  }

  .client-footprint-frame {
    min-height: min(550px, calc(100vh - 188px));
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(34px, 5vw, 58px);
  }

  .client-footprint-copy {
    max-width: 400px;
  }

  .client-footprint-copy h2 {
    font-size: clamp(56px, 6.9vw, 72px);
  }

  .client-footprint-copy > p {
    font-size: 18px;
    line-height: 1.5;
  }

  .client-footprint-map-stage {
    height: clamp(430px, 52vw, 540px);
    order: initial;
    border-radius: 28px;
  }

  .slide-client-footprint-index {
    margin-top: 34px;
  }
}

@media (max-width: 560px) {
  .brand-by {
    display: none;
  }

  .hero-copy {
    min-height: 575px;
    padding-top: 64px;
  }

  .hero {
    padding-bottom: 540px;
  }

  .slide-two {
    padding: 62px 20px 58px;
  }

  .slide-two h2 {
    font-size: clamp(52px, 15vw, 70px);
    line-height: 0.96;
  }

  .slide-two-copy > p {
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.55;
  }

  .slide-two-index {
    margin-top: 38px;
  }

  .dialogue-stack {
    margin-top: 40px;
  }

  .question-card {
    min-height: 120px;
    grid-template-columns: 49px 1fr;
    gap: 15px;
    padding: 20px 18px;
    border-radius: 16px;
  }

  .question-card p {
    font-size: 17px;
    line-height: 1.45;
  }

  .user-icon,
  .answer-icon {
    width: 48px;
    height: 48px;
  }

  .user-icon::before {
    width: 11px;
    height: 11px;
    top: 11px;
  }

  .user-icon span {
    width: 22px;
    height: 12px;
    bottom: 10px;
  }

  .answer-card {
    min-height: 0;
    grid-template-columns: 49px 1fr;
    gap: 15px;
    margin-top: 14px;
    padding: 26px 18px 24px;
    border-radius: 18px;
  }

  .answer-icon {
    font-size: 26px;
  }

  .answer-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .trusted-badge {
    min-height: 42px;
    margin-top: 20px;
    padding-right: 14px;
    font-size: 12px;
  }

  .slide-three {
    padding: 58px 20px 54px;
  }

  .slide-three-copy h2 {
    font-size: clamp(52px, 14.5vw, 68px);
    line-height: 0.96;
  }

  .slide-three-copy p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
  }

  .slide-three-panels {
    margin-top: 42px;
    gap: 26px;
  }

  .geo-panel {
    min-height: 0;
    padding: 34px 24px 40px;
    border-radius: 64px;
    background-image: none;
  }

  .geo-panel-local {
    background-color: #e5ebf5;
  }

  .geo-panel-authority {
    background-color: #feecba;
  }

  .geo-panel-local-art,
  .geo-panel-authority-art {
    position: relative;
    inset: auto;
    display: block;
  }

  .geo-panel-local-art {
    content: url("/assets/icons/slide-three-local-business-mobile.png");
    width: 108%;
    max-width: 470px;
    margin: 0 0 0 -9%;
  }

  .geo-panel-authority-art {
    width: 190px;
    margin: 0 auto;
  }

  .geo-panel-copy,
  .geo-panel-local .geo-panel-copy,
  .geo-panel-authority .geo-panel-copy {
    position: relative;
    inset: auto;
    width: auto;
    margin-top: 22px;
    text-align: center;
  }

  .geo-panel h3 {
    font-size: 32px;
    white-space: normal;
  }

  .geo-panel-copy p {
    margin-top: 17px;
    font-size: 17px;
    line-height: 1.5;
  }

  .geo-panel-copy p span {
    display: inline;
  }

  .slide-three-index {
    margin-top: 40px;
  }

  .slide-four {
    padding: 58px 20px 54px;
  }

  .slide-client-footprint {
    padding: 58px 20px 54px;
  }

  .client-footprint-eyebrow {
    font-size: 11px;
  }

  .client-footprint-copy h2 {
    margin-top: 15px;
    font-size: clamp(54px, 15vw, 72px);
    line-height: 0.94;
  }

  .client-footprint-copy > p {
    font-size: 18px;
    line-height: 1.5;
  }

  .client-footprint-stats {
    margin-top: 24px;
    gap: 8px;
  }

  .client-footprint-map-stage {
    height: clamp(300px, 92vw, 430px);
    margin: 3px 0 0;
    border-radius: 22px;
  }

  .slide-client-footprint-index {
    margin-top: 4px;
  }

  .method-heading h2 {
    font-size: clamp(54px, 15vw, 72px);
  }

  .method-heading p {
    max-width: 330px;
    margin: 18px auto 0;
    font-size: 18px;
    line-height: 1.5;
  }

  .method-flow {
    grid-template-columns: 1fr;
    gap: 58px;
    margin-top: 48px;
  }

  .method-stage-art {
    width: 195px;
  }

  .method-stage h3 {
    font-size: 30px;
  }

  .method-number {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 21px;
  }

  .slide-five {
    padding: 58px 20px 54px;
  }

  .audit-copy h2 {
    font-size: clamp(52px, 14vw, 66px);
    line-height: 0.98;
  }

  .audit-subline {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
  }

  .audit-points {
    margin-top: 34px;
    gap: 14px;
  }

  .audit-points li {
    min-height: 52px;
    gap: 13px;
  }

  .audit-points img {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .audit-points strong {
    font-size: 23px;
  }

  .audit-button {
    width: 100%;
    min-width: 0;
    margin-top: 34px;
    font-size: 21px;
  }

  .audit-workspace {
    width: calc(100% + 40px);
    max-width: none;
    margin: 46px -20px 0;
    border-radius: 0;
  }

  .slide-six {
    padding: 124px 20px 54px;
  }

  .local-seo-copy h2 {
    font-size: clamp(52px, 14vw, 66px);
    line-height: 0.98;
  }

  .local-seo-subline {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
  }

  .local-seo-points {
    margin-top: 34px;
    gap: 12px;
  }

  .local-seo-points li {
    min-height: 52px;
    gap: 13px;
  }

  .local-seo-points img {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .local-seo-points strong {
    font-size: 23px;
  }

  .local-seo-link {
    margin-top: 30px;
    font-size: 20px;
  }

  .local-seo-street {
    width: calc(100% + 40px);
    max-width: none;
    margin: 46px -20px 0;
    border-radius: 0;
  }

  .slide-seven {
    padding: 124px 20px 54px;
  }

  .paid-acquisition-frame {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .paid-acquisition-copy h2 {
    font-size: clamp(52px, 14vw, 66px);
    line-height: 0.98;
  }

  .paid-acquisition-subline {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
  }

  .paid-acquisition-points {
    margin-top: 34px;
    gap: 12px;
  }

  .paid-acquisition-points li {
    min-height: 52px;
    gap: 13px;
  }

  .paid-acquisition-points img {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .paid-acquisition-points strong {
    font-size: 22px;
  }

  .paid-acquisition-link {
    margin-top: 30px;
    font-size: 20px;
  }

  .paid-platform {
    width: min(88vw, 360px);
  }

  .paid-platform h3 {
    font-size: 38px;
  }

  .paid-platform p {
    font-size: 13px;
  }

  .slide-seven-index {
    margin-top: 2px;
  }

  .slide-eight {
    padding: 124px 20px 54px;
  }

  .website-showcase-frame {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

  .website-showcase-copy {
    width: 100%;
    min-width: 0;
  }

  .website-showcase-copy h2 {
    font-size: clamp(52px, 14vw, 66px);
    line-height: 0.98;
  }

  .website-showcase-subline {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
  }

  .website-showcase-points {
    margin-top: 34px;
    gap: 12px;
  }

  .website-showcase-points li {
    min-height: 52px;
    gap: 13px;
  }

  .website-showcase-points img {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .website-showcase-points strong {
    font-size: 22px;
  }

  .website-showcase-link {
    margin-top: 30px;
    font-size: 20px;
  }

  .website-device-stage {
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    aspect-ratio: 992 / 770;
    justify-self: start;
    transform: none;
  }

  .slide-eight-index {
    margin-top: 2px;
  }

  .slide-nine {
    padding: 124px 20px 54px;
  }

  .lead-system-copy h2 {
    font-size: clamp(52px, 14vw, 66px);
    line-height: 0.98;
  }

  .lead-system-subline {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.5;
  }

  .lead-system-benefits {
    margin-top: 34px;
    gap: 12px;
  }

  .lead-system-benefits li {
    min-height: 52px;
    gap: 13px;
  }

  .lead-system-benefits img {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
  }

  .lead-system-benefits strong {
    font-size: 22px;
  }

  .lead-system-link {
    margin-top: 30px;
    font-size: 20px;
  }

  .lead-system-frame {
    gap: 50px;
  }

  .lead-journey {
    gap: 30px;
  }

  .lead-stage,
  .lead-stage-two,
  .lead-stage-three {
    width: 100%;
    margin-left: 0;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 14px;
  }

  .lead-stage > img,
  .lead-stage-three > img {
    width: 112px;
    height: 112px;
  }

  .lead-stage h3 {
    gap: 9px;
    font-size: 24px;
  }

  .lead-stage h3 > span {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    font-size: 17px;
  }

  .lead-stage p {
    margin: 8px 0 0 45px;
    font-size: 13px;
  }

  .lead-phone-scene {
    width: 100%;
    height: 575px;
  }

  .lead-phone {
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(0.88);
    transform-origin: top center;
  }

  .lead-scene-decor {
    display: none;
  }

  .slide-nine-index {
    margin-top: 2px;
  }

  .final-cta {
    min-height: 630px;
    padding: 78px 20px 84px;
  }

  .final-eyebrow {
    font-size: 11px;
  }

  .final-cta h2 {
    margin-top: 17px;
    font-size: clamp(55px, 15.5vw, 72px);
  }

  .final-subline {
    font-size: 17px;
  }

  .final-actions {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
  }

  .final-audit-button {
    width: 100%;
    min-width: 0;
  }

  .final-problems {
    flex-wrap: wrap;
    gap: 9px 14px;
    margin-top: 30px;
    font-size: 12px;
  }

  .slide-ten-index {
    left: 20px;
    bottom: 28px;
  }

  .final-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 40px 20px 34px;
  }

  .final-footer-brand,
  .final-footer-services {
    grid-column: auto;
  }

  .final-footer-service-links {
    grid-template-columns: 1fr;
  }

  .final-footer-legal {
    padding-left: 0;
    border-left: 0;
  }

  .slide-four-eyebrow {
    font-size: 12px;
  }

  .slide-four-copy h2 {
    margin-top: 22px;
    font-size: clamp(51px, 14vw, 68px);
    line-height: 0.96;
  }

  .slide-four-choices {
    margin-top: 52px;
    gap: 64px;
  }

  .slide-four-choice-local,
  .slide-four-choice-authority {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .slide-four-icon-local {
    width: 140px;
    height: 184px;
  }

  .slide-four-icon-authority {
    width: 210px;
    height: 232px;
    margin-left: -25px;
  }

  .slide-four-choice h3 {
    font-size: 23px;
  }

  .slide-four-choice p {
    margin-top: 13px;
    font-size: 17px;
    line-height: 1.55;
  }

  h1 {
    font-size: clamp(54px, 16vw, 76px);
    line-height: 0.95;
  }

  .hero-subline {
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    margin-top: 31px;
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
  }

  .button-primary {
    min-width: 0;
    min-height: 59px;
    font-size: 17px;
  }

  .text-link {
    justify-content: space-between;
    padding: 0;
  }

  .hero-index {
    bottom: 36px;
  }

  .hero-city,
  .city-soften,
  .cream-fade {
    top: auto;
    bottom: 0;
    height: 540px;
  }

  .hero-city {
    object-position: center;
    transform: none;
  }

  .founder-portrait {
    top: auto;
    bottom: 0;
    height: 465px;
  }

  .founder-note {
    top: auto;
    bottom: 50px;
    right: 18px;
  }

  .founder-note strong {
    font-size: 20px;
  }

  .founder-note span {
    font-size: 11px;
  }

  .site-footer {
    min-height: 208px;
    margin-top: 540px;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px;
  }

  .footer-brand strong {
    font-size: 34px;
  }

  .footer-copy {
    justify-self: start;
  }
}

@media (max-width: 1100px) {
  .site-header {
    background: var(--cream);
  }

  body.mobile-menu-open .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
  }

  .dialogue-stack {
    width: min(100%, 680px);
    max-width: 680px;
  }

  .mobile-nav {
    position: fixed;
    top: var(--mobile-nav-top, 66px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: auto;
    max-height: none;
    display: block;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    padding: 8px 20px calc(18px + env(safe-area-inset-bottom));
    border-bottom: 1px solid var(--ink);
    background: var(--cream);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 180ms;
  }

  .mobile-nav-open {
    max-height: none;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
  }
}

@media (max-width: 560px) {
  .dialogue-stack {
    width: 100%;
    max-width: none;
  }

  .question-card,
  .answer-card {
    grid-template-columns: 49px minmax(0, 1fr);
  }

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

  .trusted-badge {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    white-space: normal;
    line-height: 1.25;
  }
}

@media (min-width: 1101px) {
  html.fp-enabled {
    scroll-snap-type: none;
  }

  html.fp-enabled .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }

  html.fp-enabled .site-shell {
    overflow: hidden;
  }

  html.fp-enabled #fullpage {
    position: relative;
    z-index: 0;
    isolation: isolate;
  }

  html.fp-enabled .fullpage-home-section {
    height: 100vh !important;
    min-height: 0 !important;
  }

  /*
   * FullPage reserves the fixed header with section padding. Absolutely
   * positioned artwork does not participate in that flow, so each art-directed
   * composition gets its own responsive optical offset inside the usable
   * viewport. The slide indices remain pinned to the bottom.
   */
  html.fp-enabled .founder-portrait {
    height: calc(99% - 84px);
  }

  html.fp-enabled .slide-three {
    --fp-stage-offset: clamp(
      0px,
      calc((100dvh - 800px) / 2),
      205px
    );
    --fp-slide-three-copy-lift: clamp(
      48px,
      calc(206px - 14dvh),
      80px
    );
    --fp-slide-three-panel-drop: clamp(
      0px,
      calc(22dvh - 198px),
      49px
    );
  }

  html.fp-enabled .slide-three-copy {
    top: max(
      -35px,
      calc(
        var(--fp-stage-offset) - var(--fp-slide-three-copy-lift)
      )
    );
  }

  html.fp-enabled .slide-three-panels {
    top: calc(
      clamp(285px, 31.2vh, 310px) +
        var(--fp-stage-offset) +
        var(--fp-slide-three-panel-drop)
    );
  }

  html.fp-enabled .slide-four {
    --fp-stage-offset: clamp(
      0px,
      calc((100dvh - 762px) / 2),
      225px
    );
  }

  html.fp-enabled .method-heading {
    top: max(0px, calc(var(--fp-stage-offset) - 82px));
  }

  html.fp-enabled .method-flow {
    top: var(--fp-stage-offset);
  }

  html.fp-enabled .paid-acquisition-frame {
    top: clamp(
      0px,
      calc((100dvh - 724px) / 2),
      245px
    );
  }

  html.fp-enabled .website-showcase-frame {
    top: clamp(
      84px,
      calc((100dvh - 686px) / 2),
      270px
    );
  }
}
