@layer sections {
  .home-hero {
    position: relative;
    height: 170svh;
    color: #fff;
    background: var(--ink);
  }

  @keyframes home-hero-intro {
    from {
      opacity: 0;
      transform: translate3d(0, 32px, 0);
    }

    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }

  .home-hero__sticky {
    position: sticky;
    top: 0;
    height: 100svh;
    min-height: 680px;
    overflow: hidden;
    background: #151814;
  }

  .home-hero__media,
  .home-hero__shade {
    position: absolute;
    inset: 0;
  }

  .home-hero__media {
    background:
      url("/public/elevelo-hero-v2-start.jpg") center / cover no-repeat,
      #6f7884;
    transform: scale(calc(1.02 + var(--hero-progress, 0) * 0.02));
  }

  .home-hero__media video {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    transition: opacity 160ms linear;
  }

  .home-hero.is-video-ready:not(.has-video-error) .home-hero__media video {
    opacity: 1;
  }

  .home-hero__shade {
    background:
      linear-gradient(to top, var(--ink) 0%, rgba(11, 14, 10, 0.92) 8%, transparent 18%),
      linear-gradient(90deg, rgba(7, 10, 7, 0.84) 0%, rgba(7, 10, 7, 0.36) 57%, rgba(7, 10, 7, 0.12) 100%),
      linear-gradient(0deg, rgba(7, 10, 7, 0.82) 0%, rgba(7, 10, 7, 0) 54%);
  }

  .home-hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
    height: 100%;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: clamp(120px, 7vw, 144px);
    flex-direction: column;
  }

  .js .home-hero .hero-kicker,
  .js .home-hero .hero-actions .button {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
  }

  .js .home-hero.is-intro-ready .hero-kicker {
    animation: home-hero-intro 0.68s var(--ease-out) 0.04s both;
  }

  .js .home-hero.is-intro-ready .hero-actions .button {
    animation: home-hero-intro 0.76s var(--ease-out) 0.4s both;
  }

  .js .home-hero.is-intro-ready .hero-actions .button:nth-child(2) {
    animation-delay: 0.52s;
  }

  .js .home-hero.is-scroll-driven .hero-kicker {
    opacity: var(--hero-kicker-opacity, 0);
    transform: translate3d(0, var(--hero-kicker-offset, 22px), 0);
    animation: none;
  }

  .js .home-hero.is-scroll-driven .home-hero__content {
    transform: translate3d(0, var(--hero-content-offset, 0), 0);
    will-change: transform;
  }

  .js .home-hero.is-scroll-driven h1 {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .js .home-hero.is-scroll-driven .home-hero__title-primary {
    opacity: 1;
    transform: none;
  }

  .js .home-hero.is-scroll-driven .hero-actions {
    pointer-events: none;
  }

  .js .home-hero.is-scroll-driven.are-actions-ready .hero-actions {
    pointer-events: auto;
  }

  .js .home-hero.is-scroll-driven .hero-actions .button:first-child {
    opacity: var(--hero-primary-action-opacity, 0);
    transform: translate3d(0, var(--hero-primary-action-offset, 22px), 0);
    animation: none;
  }

  .js .home-hero.is-scroll-driven .hero-actions .button:nth-child(2) {
    opacity: var(--hero-secondary-action-opacity, 0);
    transform: translate3d(0, var(--hero-secondary-action-offset, 22px), 0);
    animation: none;
  }

  .home-hero .hero-kicker {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 16px;
  }

  .home-hero h1 {
    max-width: 1320px;
    font-size: clamp(52px, 5.35vw, 88px);
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 0.94;
    text-transform: none;
  }

  .home-hero h1 > span {
    display: block;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
  }

  .models-section,
  .catalog-section,
  .related-models {
    background: var(--paper);
  }

  .models-section .section-eyebrow {
    color: var(--orange-ink);
  }

  .model-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.38fr) minmax(380px, 0.62fr);
    gap: 20px;
  }

  .model-showcase__stack {
    display: grid;
    gap: 20px;
  }

  .model-card {
    --model-card-background: var(--paper-deep);
    --model-card-foreground: var(--ink);
    --model-card-muted: var(--muted);
    --model-card-word: rgba(11, 14, 10, 0.075);
    position: relative;
    min-width: 0;
    min-height: clamp(360px, 29vw, 460px);
    overflow: clip;
    color: var(--model-card-foreground);
    background: var(--model-card-background);
  }

  .model-card--milk {
    --model-card-background: #f3f0e8;
  }

  .model-card--ink {
    --model-card-background: #0c100d;
    --model-card-foreground: var(--paper);
    --model-card-muted: rgba(244, 241, 232, 0.64);
    --model-card-word: rgba(244, 241, 232, 0.075);
  }

  .model-card__word {
    position: absolute;
    z-index: 0;
    top: 49%;
    left: 54%;
    margin: 0;
    color: var(--model-card-word);
    font-size: clamp(80px, 9.5vw, 148px);
    font-weight: 850;
    letter-spacing: -0.07em;
    line-height: 0.72;
    pointer-events: none;
    transform: translate(-50%, -50%);
    white-space: nowrap;
  }

  .model-card__media {
    position: absolute;
    z-index: 1;
    inset: -8% -28% -10% 27%;
    display: grid;
    outline-offset: 10px;
  }

  .model-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: 61% 50%;
    filter: drop-shadow(0 22px 22px rgba(8, 12, 9, 0.27));
    transition: transform 0.65s var(--ease-out);
  }

  .model-card--ink .model-card__image {
    filter: drop-shadow(0 26px 26px rgba(0, 0, 0, 0.5));
  }

  .model-card:hover .model-card__image {
    transform: scale(1.02);
  }

  .model-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    width: min(62%, 286px);
    min-height: 100%;
    padding: 24px;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
  }

  .model-card__eyebrow,
  .catalog-disclaimer,
  .price-note {
    color: var(--model-card-muted, var(--muted));
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .model-card :is(h2, h3) {
    margin-top: 8px;
    font-size: clamp(30px, 3.2vw, 48px);
    letter-spacing: -0.045em;
    line-height: 0.88;
    overflow-wrap: anywhere;
  }

  .model-card :is(h2, h3) a {
    text-decoration: none;
  }

  .model-card__commercial {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    padding-block: 12px;
    border-block: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  }

  .model-card__commercial > div:first-child {
    display: grid;
    gap: 4px;
  }

  .model-card__commercial > div:first-child span {
    color: var(--model-card-muted);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.06em;
    line-height: 1.1;
    text-transform: uppercase;
  }

  .model-card__commercial > div:first-child strong {
    font-size: clamp(20px, 2vw, 26px);
    letter-spacing: -0.04em;
    line-height: 0.92;
    white-space: nowrap;
  }

  .model-card__availability {
    justify-items: end;
    color: var(--model-card-foreground);
    text-align: right;
  }

  .model-card__availability > span {
    color: var(--model-card-muted);
    opacity: 1;
  }

  .model-card__actions {
    display: flex;
    align-items: end;
    min-height: 44px;
  }

  .home-models {
    --home-models-entry-space: clamp(112px, 8vw, 160px);
    --home-models-exit-space: clamp(96px, 8vw, 160px);
    --home-models-transition-height: clamp(56px, 4vw, 72px);
    overflow: clip;
    position: relative;
    isolation: isolate;
    padding-top: var(--home-models-entry-space);
    padding-bottom: 0;
    background: var(--paper);
  }

  .home-models::before {
    position: absolute;
    z-index: 0;
    top: 0;
    right: 50%;
    width: 100vw;
    height: var(--home-models-transition-height);
    content: "";
    pointer-events: none;
    background: linear-gradient(to bottom, var(--ink), var(--paper));
    transform: translateX(50%);
  }

  .home-models::after {
    position: absolute;
    z-index: 2;
    right: 50%;
    bottom: 0;
    width: 100vw;
    height: clamp(160px, 13vw, 256px);
    content: "";
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(11, 14, 10, 0), var(--ink));
    transform: translateX(50%);
  }

  .home-models > .shell {
    position: relative;
  }

  .home-models__showcase {
    display: grid;
    position: relative;
    z-index: 1;
    gap: clamp(72px, 8vw, 136px);
    margin-top: 0;
  }

  .home-models .section-actions {
    position: relative;
    z-index: 3;
    margin-top: clamp(32px, 4vw, 56px);
    padding-bottom: var(--home-models-exit-space);
  }

  .home-model-panel {
    --home-model-panel-word: rgba(11, 14, 10, 0.09);
    position: relative;
    display: grid;
    min-height: clamp(420px, 31vw, 620px);
    overflow: visible;
    isolation: isolate;
    background: transparent;
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  }

  .home-model-panel::before {
    position: absolute;
    z-index: 0;
    top: -72px;
    right: 50%;
    bottom: -72px;
    width: 100vw;
    content: "";
    pointer-events: none;
    transform: translateX(50%);
  }

  .home-model-panel--wenbox {
    --home-model-panel-word: rgba(245, 100, 42, 0.17);
  }

  .home-model-panel--strong {
    --home-model-panel-word: rgba(11, 14, 10, 0.1);
  }

  .home-model-panel--strong::before {
    background: linear-gradient(
      to bottom,
      rgba(216, 219, 216, 0) 0%,
      #d8dbd8 14%,
      #d8dbd8 86%,
      rgba(216, 219, 216, 0) 100%
    );
  }

  .home-model-panel__word {
    position: absolute;
    z-index: 1;
    top: 51%;
    left: clamp(148px, 13vw, 296px);
    margin: 0;
    color: var(--home-model-panel-word);
    font-size: clamp(86px, 12.2vw, 208px);
    font-weight: 850;
    letter-spacing: -0.04em;
    line-height: 0.72;
    white-space: nowrap;
    transform: translateY(-50%);
    user-select: none;
  }

  .home-model-panel--wenbox .home-model-panel__word {
    top: 52%;
    left: clamp(128px, 12vw, 252px);
    font-size: clamp(128px, 16.4vw, 300px);
    letter-spacing: -0.055em;
    transform: translateY(-50%) scaleX(1.08);
    transform-origin: left center;
  }

  .home-model-panel--strong .home-model-panel__word {
    top: 54%;
    left: 18%;
    font-size: clamp(116px, 17.2vw, 290px);
  }

  .home-model-panel__media {
    position: absolute;
    z-index: 2;
    inset: -10% -6vw -10% 29%;
    display: grid;
    min-width: 0;
  }

  .home-model-panel--strong .home-model-panel__media {
    inset: -9% -8vw -11% 30%;
  }

  .home-model-panel__image {
    width: 100%;
    height: 100%;
    grid-area: 1 / 1;
    object-fit: contain;
    object-position: 62% 50%;
    opacity: 0;
    transition: opacity 180ms ease-out, transform 360ms var(--ease-out);
  }

  .home-model-panel__image[data-selected] {
    opacity: 1;
  }

  .home-model-panel__copy {
    position: relative;
    z-index: 3;
    display: flex;
    width: min(100%, 540px);
    min-width: 0;
    padding-block: clamp(24px, 3vw, 48px);
    flex-direction: column;
    justify-content: space-between;
    grid-column: 1;
    grid-row: 1;
  }

  .home-model-panel__copy h3 {
    max-width: 430px;
    font-size: clamp(42px, 5.1vw, 78px);
    letter-spacing: -0.04em;
    line-height: 0.86;
    overflow-wrap: anywhere;
  }

  .home-model-panel__copy h3 a {
    text-decoration: none;
  }

  .home-model-panel__footer {
    display: flex;
    align-items: end;
    min-width: 0;
    flex-wrap: wrap;
    gap: 14px 22px;
  }

  .home-model-panel__price {
    min-width: 0;
    margin-right: auto;
  }

  .home-model-panel__colors legend {
    color: var(--ink-muted);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .home-model-panel__availability {
    color: var(--ink);
  }

  .home-model-panel__availability > span {
    color: var(--ink-muted);
    opacity: 1;
  }

  .home-model-panel__price strong {
    font-size: clamp(24px, 2.5vw, 38px);
    letter-spacing: -0.04em;
    line-height: 0.92;
    white-space: nowrap;
  }

  .home-model-panel__colors {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .home-model-panel__colors legend {
    margin-bottom: 7px;
  }

  .home-model-panel__colors legend output {
    color: var(--ink);
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
  }

  .home-model-panel__colors > div {
    display: flex;
    gap: 8px;
  }

  .home-model-panel__color {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 4px;
    border: 1px solid transparent;
    border-radius: 50%;
    place-items: center;
    background: transparent;
  }

  .home-model-panel__color i {
    width: 100%;
    height: 100%;
    border: 1px solid rgba(11, 14, 10, 0.3);
    border-radius: 50%;
  }

  .home-model-panel__color[data-color-id="gray"] i {
    background-color: #777b7d;
  }

  .home-model-panel__color[data-color-id="black"] i {
    background-color: #161817;
  }

  .home-model-panel__color[data-selected] {
    border-color: currentColor;
  }

  .home-model-panel__link {
    display: inline-flex;
    min-height: 44px;
    border-bottom: 1px solid currentColor;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
  }

  .home-model-panel__link svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
    transition: transform 180ms var(--ease-out);
  }

  .home-model-panel :is(a, button):focus-visible {
    outline: 2px solid var(--ink);
    outline-offset: 4px;
  }

  @media (hover: hover) and (pointer: fine) {
    .home-model-panel:hover .home-model-panel__image[data-selected] {
      transform: scale(1.025);
    }

    .home-model-panel__link:hover svg {
      transform: translateX(4px);
    }
  }

  .purchase-section {
    padding-top: clamp(64px, 6vw, 112px);
    padding-bottom: clamp(80px, 9vw, 140px);
    color: var(--paper);
    background: var(--ink);
  }

  .purchase-section .split-layout--wide {
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.8fr);
  }

  .purchase-section .purchase-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .purchase-section .package-list {
    grid-column: 1;
    grid-row: 1;
  }

  .purchase-section .section-eyebrow,
  .purchase-section .section-intro {
    color: rgba(242, 240, 231, 0.58);
  }

  .purchase-copy {
    position: sticky;
    top: calc(var(--header-height) + 30px);
    align-self: start;
  }

  .purchase-copy .section-head {
    margin-bottom: 38px;
  }

  .purchase-copy__note {
    max-width: 560px;
    margin-bottom: 28px;
    color: rgba(242, 240, 231, 0.7);
  }

  .purchase-copy em {
    color: var(--acid);
  }

  .package-list {
    border-top: 1px solid var(--line-light);
  }

  .package-list li {
    display: grid;
    min-height: 120px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line-light);
    grid-template-columns: 70px 1fr;
    gap: 20px;
  }

  .package-list li > span {
    color: var(--acid);
    font-size: 11px;
    font-weight: 800;
  }

  .package-list h3 {
    margin-bottom: 9px;
    font-size: clamp(23px, 2.3vw, 34px);
  }

  .package-list p {
    max-width: 520px;
    color: rgba(242, 240, 231, 0.62);
  }

  .package-list--two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .package-list--two-col li:nth-child(odd) {
    padding-right: 28px;
    border-right: 1px solid var(--line-light);
  }

  .package-list--two-col li:nth-child(even) {
    padding-left: 28px;
  }

  .service-proof {
    --service-proof-space: clamp(88px, 10vw, 156px);
    padding-block: var(--service-proof-space);
    color: var(--ink);
    background: var(--paper);
  }

  .service-proof__heading {
    margin-bottom: var(--service-proof-space);
  }

  .service-proof__title h2 {
    max-width: 920px;
    margin-top: 0;
    color: var(--ink);
    font-size: clamp(52px, 6vw, 98px);
    font-weight: 760;
    line-height: 0.88;
    letter-spacing: -0.065em;
    text-align: left;
    text-wrap: balance;
  }

  .service-proof__title h2 em {
    color: inherit;
    font-family: inherit;
    font-style: normal;
    font-weight: inherit;
  }

  .service-proof__status {
    margin-top: 18px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .service-proof__stage {
    display: grid;
    gap: 0;
  }

  .service-proof__slide {
    margin: 0;
  }

  .service-proof__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 4 / 3;
  }

  .service-proof__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .service-proof__slide--workshop img {
    object-position: 55% center;
  }

  .service-proof__slide--tools img {
    object-position: center 58%;
  }

  .service-proof__slide--repair img {
    object-position: center 62%;
  }

  .home-repair-flow {
    background: var(--paper);
    border-top: 1px solid var(--line);
  }

  .home-repair-flow > .section {
    border-bottom: 1px solid var(--line);
  }

  .repair-guide {
    color: var(--paper);
    background: var(--ink-soft);
  }

  .repair-guide .section-eyebrow {
    max-width: 720px;
    color: var(--acid);
  }

  .repair-guide .section-intro {
    color: rgba(242, 240, 231, 0.66);
  }

  .home-repair-faq {
    background: var(--paper-warm);
  }

  .repair-prices .popular-prices {
    margin-top: 0;
  }

  .repair-guide .section-head {
    max-width: 1040px;
    margin-bottom: clamp(34px, 4vw, 56px);
  }

  .repair-guide .symptom-grid {
    margin-top: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .repair-guide .symptom-grid a {
    min-width: 0;
    min-height: 132px;
    overflow-wrap: anywhere;
  }

  .repair-guide .symptom-grid__other,
  .repair-guide .symptom-grid__other:hover {
    color: var(--ink);
    background: var(--acid);
  }

  .symptom-grid {
    display: grid;
    margin-top: clamp(44px, 6vw, 80px);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
  }

  .symptom-grid a {
    display: grid;
    min-height: 150px;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: clamp(19px, 1.7vw, 25px);
    font-weight: 720;
    letter-spacing: -0.035em;
    transition:
      color 0.25s ease,
      background-color 0.25s ease;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
  }

  .symptom-grid a > span {
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.1em;
    grid-column: 1 / -1;
  }

  .symptom-grid a svg {
    align-self: end;
  }

  .symptom-grid a:hover {
    background: var(--acid);
  }

  .symptom-grid--dark {
    color: var(--paper);
    border-color: var(--line-light);
  }

  .symptom-grid--dark a {
    border-color: var(--line-light);
  }

  .symptom-grid--dark a:hover {
    color: var(--ink);
  }

  .popular-prices {
    margin-top: 86px;
  }

  .popular-prices__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }

  .popular-prices__head h2,
  .popular-prices__head h3 {
    font-size: clamp(30px, 4vw, 54px);
  }

  .popular-prices__updated {
    margin-top: 10px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .price-row {
    display: grid;
    align-items: center;
    min-height: 130px;
    padding-block: 24px;
    border-bottom: 1px solid var(--line);
    grid-template-columns: minmax(280px, 1.2fr) minmax(430px, 0.8fr);
    gap: 34px;
  }

  .price-row__title > span {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .price-row__title :is(h2, h3) {
    font-size: clamp(20px, 2.05vw, 31px);
    line-height: 1.1;
  }

  .price-row__title p {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
  }

  .price-row dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .price-row dl > div {
    padding-inline: 18px;
    border-left: 1px solid var(--line);
  }

  .price-row dt {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .price-row dd {
    font-size: 15px;
    font-weight: 650;
  }

  .price-row__total dd {
    color: var(--moss-ink);
    font-size: 19px;
    font-weight: 800;
  }

  .dual-section {
    padding-block: 0;
  }

  .dual-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr 1fr;
  }

  .editorial-panel {
    display: flex;
    min-height: 620px;
    padding: clamp(42px, 6vw, 96px);
    flex-direction: column;
  }

  .editorial-panel--acid {
    background: var(--acid);
  }

  .editorial-panel--paper {
    background: var(--paper-warm);
  }

  .editorial-panel > p {
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .editorial-panel h2 {
    margin-top: auto;
    font-size: clamp(50px, 6vw, 90px);
    line-height: 0.9;
  }

  .editorial-panel > span {
    max-width: 560px;
    margin-block: 28px;
    font-size: 17px;
  }

  .process-section {
    background: var(--paper);
  }

  .process-list {
    display: grid;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
    grid-template-columns: repeat(4, 1fr);
  }

  .process-list li {
    display: flex;
    min-height: 300px;
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
  }

  .process-list li > span {
    color: var(--moss-ink);
    font-size: 11px;
    font-weight: 800;
  }

  .process-list h3 {
    margin-top: auto;
    font-size: clamp(26px, 2.5vw, 38px);
    line-height: 1;
  }

  .process-list p {
    margin-top: 16px;
    color: var(--ink-muted);
    font-size: 14px;
  }

  .faq-section {
    background: var(--paper-warm);
  }

  .faq-list {
    border-top: 1px solid var(--line);
  }

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

  .faq-list summary {
    position: relative;
    padding: 28px 52px 28px 0;
    cursor: pointer;
    list-style: none;
    font-size: clamp(20px, 2vw, 29px);
    font-weight: 680;
    letter-spacing: -0.035em;
  }

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

  .faq-list summary span,
  .faq-list summary span::after {
    position: absolute;
    top: 50%;
    right: 4px;
    width: 19px;
    height: 1.5px;
    background: currentColor;
    content: "";
    transition: transform 0.25s ease;
  }

  .faq-list summary span::after {
    top: 0;
    right: 0;
    transform: rotate(90deg);
  }

  .faq-list details[open] summary span {
    transform: rotate(45deg);
  }

  .faq-list details > p {
    max-width: 700px;
    padding: 0 50px 30px 0;
    color: var(--ink-muted);
    font-size: 16px;
  }

  .location-cta {
    padding-block: clamp(70px, 8vw, 120px);
    color: var(--paper);
    background: var(--acid);
  }

  .location-cta__grid {
    display: grid;
    color: var(--ink);
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: clamp(40px, 8vw, 130px);
  }

  .location-cta h2 {
    max-width: 940px;
    font-size: clamp(48px, 6vw, 94px);
    line-height: 0.92;
  }

  .location-cta h2 em {
    color: var(--ink);
  }

  .location-cta__details {
    display: grid;
    align-content: end;
    gap: 20px;
  }

  .location-cta__details > p {
    font-size: 18px;
  }

  .location-cta__details > a {
    font-size: clamp(25px, 3vw, 42px);
    font-weight: 760;
    letter-spacing: -0.05em;
  }

  .home-final-cta__actions {
    display: grid;
    gap: 10px;
    margin-top: 8px;
  }

  .home-final-cta {
    position: relative;
    display: grid;
    min-height: min(90svh, 940px);
    padding-block: clamp(100px, 11vw, 170px);
    overflow: hidden;
    isolation: isolate;
    color: var(--paper);
    background: var(--ink);
  }

  .home-final-cta__media {
    position: absolute;
    z-index: -2;
    inset: 0;
  }

  .home-final-cta__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 50%;
  }

  .home-final-cta__shade {
    position: absolute;
    z-index: -1;
    background:
      linear-gradient(90deg, rgba(7, 9, 7, 0.9) 0%, rgba(7, 9, 7, 0.52) 52%, rgba(7, 9, 7, 0.82) 100%),
      linear-gradient(0deg, rgba(7, 9, 7, 0.62), transparent 58%);
    inset: 0;
  }

  .home-final-cta__grid {
    position: relative;
    align-items: end;
    min-height: clamp(520px, 58vw, 680px);
    color: var(--paper);
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  }

  .home-final-cta__headline > p {
    max-width: 520px;
    margin-bottom: 24px;
    color: var(--acid);
    font-size: 11px;
    font-weight: 760;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .home-final-cta h2,
  .home-final-cta__details,
  .home-final-cta__details > a {
    color: var(--paper);
  }

  .home-final-cta h2 em {
    color: var(--acid);
  }

  .home-final-cta__details > p {
    color: rgba(242, 240, 231, 0.78);
  }

  .home-final-cta__actions .button {
    justify-content: space-between;
    width: 100%;
    min-width: 0;
    border: 1px solid rgba(242, 240, 231, 0.28);
    color: var(--paper);
    background: rgba(7, 9, 7, 0.72);
    backdrop-filter: blur(10px);
    text-align: left;
  }

  .home-final-cta__actions .button:first-child {
    border-color: var(--acid);
    color: var(--ink);
    background: var(--acid);
  }

  .home-repair-flow > [data-home-section="repair-process"],
  .home-repair-flow > .home-repair-faq {
    --ink-muted: rgba(242, 240, 231, 0.72);
    --line: rgba(242, 240, 231, 0.2);
    --moss-ink: var(--acid);
    --muted: rgba(242, 240, 231, 0.58);
    color: var(--paper);
    background: var(--ink);
  }

  .home-repair-flow > [data-home-section="repair-process"] {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background-image:
      linear-gradient(90deg, rgb(11 14 10 / 58%) 0%, rgb(11 14 10 / 24%) 48%, transparent 72%),
      linear-gradient(180deg, transparent 46%, rgb(11 14 10 / 58%) 100%),
      url("/public/images/catalog/service-graffiti-v1-1586.jpg");
    background-position: center, center, right center;
    background-repeat: no-repeat;
    background-size: 100% 100%, 100% 100%, cover;
  }

  .home-repair-flow > [data-home-section="repair-process"] .process-list li {
    justify-content: flex-start;
  }

  .home-repair-flow > [data-home-section="repair-process"] .process-list h3 {
    min-height: 2em;
    margin-top: 0;
  }

  .home-purchase-faq .split-layout,
  .home-repair-faq .split-layout {
    grid-template-columns: minmax(400px, 0.92fr) minmax(520px, 1.08fr);
    gap: clamp(64px, 7vw, 120px);
  }

  .home-purchase-faq .split-layout,
  .home-repair-faq .split-layout {
    grid-template-columns: minmax(520px, 1.08fr) minmax(400px, 0.92fr);
  }

  .home-purchase-faq[data-home-section="purchase-faq"] .section-head,
  .home-repair-faq[data-home-section="repair-faq"] .section-head {
    justify-items: stretch;
    text-align: left;
    grid-column: 2;
    grid-row: 1;
  }

  .home-purchase-faq .faq-list,
  .home-repair-faq .faq-list {
    grid-column: 1;
    grid-row: 1;
  }

  .home-purchase-faq .section-head h2,
  .home-repair-faq .section-head h2 {
    max-width: 650px;
    font-size: clamp(66px, 6.3vw, 112px);
    line-height: 0.86;
  }

  [data-home-section="use-cases"] .section-head,
  [data-home-section="purchase-package"] .section-head,
  [data-home-section="purchase-faq"] .section-head,
  [data-home-section="repair-faq"] .section-head {
    justify-items: end;
    margin-left: auto;
    text-align: right;
  }

  [data-home-section="use-cases"] .section-head {
    justify-items: center;
    margin-inline: auto;
    text-align: center;
  }

  [data-home-section="repair-prices"] .popular-prices__head > div {
    margin-left: auto;
    text-align: right;
  }

  .purchase-section[data-home-section="purchase-package"] .section-head {
    justify-items: stretch;
    text-align: left;
  }

}
