@media screen and (min-width: 701px) {
  .cd-home,
  .cd-home * {
    box-sizing: border-box;
    letter-spacing: 0;
  }

  .cd-home {
    --cd-ink: #171515;
    --cd-ink-soft: #4f4b49;
    --cd-paper: #f4f1ec;
    --cd-paper-2: #ebe6df;
    --cd-silver: #c7beb2;
    --cd-line: rgba(23, 21, 21, 0.14);
    --cd-red: #861f2e;
    --cd-red-bright: #b72d3d;
    --cd-dark: #101010;
    --cd-dark-2: #1d1b1b;
    overflow: hidden;
    color: var(--cd-ink);
    background: #fff;
  }

  .cd-home img {
    display: block;
    width: 100%;
  }

  .cd-home a {
    text-decoration: none;
  }

  .cd-shell {
    width: min(calc(100% - 96px), 1500px);
    margin: 0 auto;
  }

  .cd-section {
    position: relative;
    padding: 132px 0;
  }

  .cd-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: #f1e8dc;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .cd-kicker i {
    display: inline-grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: #fff;
    background: var(--cd-red);
    border-radius: 50%;
    font-size: 16px;
  }

  .cd-kicker--dark {
    color: var(--cd-red);
  }

  .cd-section-head {
    position: relative;
    margin-bottom: 58px;
  }

  .cd-section-head h2,
  .cd-support-intro h2 {
    max-width: 860px;
    margin: 0;
    color: var(--cd-ink);
    font-size: 48px;
    font-weight: 720;
    line-height: 1.08;
  }

  .cd-section-head > p,
  .cd-section-head--split > p,
  .cd-support-intro .cd-shell > p:last-child {
    margin: 0;
    color: #696361;
    font-size: 17px;
    line-height: 1.75;
  }

  .cd-section-head--split {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, 0.7fr);
    align-items: end;
    gap: 84px;
  }

  .cd-section-head--center {
    max-width: 940px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .cd-section-head--center .cd-kicker {
    justify-content: center;
  }

  .cd-section-head--center h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .cd-section-head--center > p:last-child {
    max-width: 720px;
    margin: 24px auto 0;
  }

  .cd-hero {
    position: relative;
    min-height: 760px;
    height: 100vh;
    max-height: 1080px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: #111;
  }

  .cd-hero__media,
  .cd-hero__shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .cd-hero__media {
    z-index: -3;
    object-fit: cover;
    object-position: center center;
    transform: scale(1.025);
    will-change: transform;
  }

  .cd-hero__shade {
    z-index: -2;
    background:
      linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.82) 34%, rgba(8, 8, 8, 0.24) 67%, rgba(8, 8, 8, 0.18) 100%),
      linear-gradient(0deg, rgba(8, 8, 8, 0.5) 0%, transparent 38%);
  }

  .cd-hero__content {
    display: flex;
    min-height: 100%;
    padding-top: 142px;
    padding-bottom: 68px;
    flex-direction: column;
    justify-content: center;
  }

  .cd-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: 68px;
    font-weight: 680;
    line-height: 1.02;
  }

  .cd-hero__lead {
    max-width: 660px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.75;
  }

  .cd-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 38px;
  }

  .cd-button {
    display: inline-flex;
    min-height: 54px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
  }

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

  .cd-button--light {
    color: #151313;
    background: #fff;
  }

  .cd-button--light:hover {
    color: #fff;
    background: var(--cd-red);
  }

  .cd-button--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.03);
  }

  .cd-button--ghost:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }

  .cd-hero__proof {
    display: grid;
    width: min(720px, 58vw);
    margin-top: 68px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cd-hero__proof div {
    padding: 22px 26px 0 0;
  }

  .cd-hero__proof div + div {
    padding-left: 28px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .cd-hero__proof strong,
  .cd-hero__proof span {
    display: block;
  }

  .cd-hero__proof strong {
    color: #fff;
    font-size: 20px;
    line-height: 1.2;
  }

  .cd-hero__proof span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    text-transform: uppercase;
  }

  .cd-scroll-cue {
    position: absolute;
    right: 52px;
    bottom: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .cd-scroll-cue i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    font-size: 17px;
  }

  .cd-categories {
    background: #f7f5f2;
  }

  .cd-categories::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 24%;
    height: 8px;
    content: '';
    background: var(--cd-red);
  }

  .cd-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .cd-category-card {
    position: relative;
    display: block;
    aspect-ratio: 1.12 / 1;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: #242121;
    border-radius: 4px;
  }

  .cd-category-card img,
  .cd-category-card__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .cd-category-card img {
    z-index: -2;
    object-fit: cover;
    transition: transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .cd-category-card__veil {
    z-index: -1;
    background: linear-gradient(0deg, rgba(12, 11, 11, 0.94) 0%, rgba(12, 11, 11, 0.16) 70%);
    transition: background 260ms ease;
  }

  .cd-category-card:hover img {
    transform: scale(1.06);
  }

  .cd-category-card:hover .cd-category-card__veil {
    background: linear-gradient(0deg, rgba(98, 18, 31, 0.96) 0%, rgba(12, 11, 11, 0.18) 74%);
  }

  .cd-category-card__number {
    position: absolute;
    top: 18px;
    left: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 11px;
    font-weight: 800;
  }

  .cd-category-card__body {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: end;
    gap: 0 12px;
  }

  .cd-category-card__body > i {
    display: grid;
    width: 34px;
    height: 34px;
    grid-row: 1 / span 2;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    font-size: 17px;
  }

  .cd-category-card__body strong {
    display: -webkit-box;
    overflow: hidden;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.23;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cd-category-card__body small {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    text-transform: uppercase;
  }

  .cd-category-card__arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 50%;
    font-size: 16px;
    transition: color 180ms ease, background 180ms ease;
  }

  .cd-category-card:hover .cd-category-card__arrow {
    color: var(--cd-red);
    background: #fff;
  }

  .cd-section-action {
    display: flex;
    margin-top: 42px;
    justify-content: flex-end;
  }

  .cd-text-link,
  .cd-product-card__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cd-ink);
    font-size: 14px;
    font-weight: 800;
  }

  .cd-text-link {
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
  }

  .cd-text-link:hover,
  .cd-product-card__link:hover {
    color: var(--cd-red);
  }

  .cd-factory {
    color: #fff;
    background: var(--cd-dark);
  }

  .cd-factory::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    content: '';
    background: rgba(255, 255, 255, 0.06);
  }

  .cd-section-head--factory {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
    align-items: end;
    gap: 80px;
  }

  .cd-section-head--factory h2 {
    color: #fff;
  }

  .cd-factory-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .cd-factory-stats span {
    display: flex;
    min-height: 72px;
    padding: 14px 18px;
    flex-direction: column;
    justify-content: center;
    color: rgba(255, 255, 255, 0.55);
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 12px;
  }

  .cd-factory-stats strong {
    margin-bottom: 4px;
    color: #fff;
    font-size: 14px;
  }

  .cd-factory-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 12px;
  }

  .cd-factory-card {
    position: relative;
    grid-column: span 4;
    aspect-ratio: 1.35 / 1;
    margin: 0;
    overflow: hidden;
    background: #282525;
    border-radius: 3px;
  }

  .cd-factory-card--wide {
    grid-column: span 8;
    aspect-ratio: 2.7 / 1;
  }

  .cd-factory-card--full {
    grid-column: span 12;
    aspect-ratio: 3.35 / 1;
  }

  .cd-factory-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 580ms ease;
  }

  .cd-factory-card:hover img {
    transform: scale(1.035);
  }

  .cd-factory-card::after {
    position: absolute;
    inset: 0;
    content: '';
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 56%);
    pointer-events: none;
  }

  .cd-factory-card figcaption {
    position: absolute;
    right: 22px;
    bottom: 18px;
    left: 22px;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }

  .cd-factory-card figcaption span {
    width: 28px;
    height: 2px;
    background: var(--cd-red-bright);
  }

  .cd-products {
    background: #fff;
  }

  .cd-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 16px;
  }

  .cd-product-card {
    min-width: 0;
    border-bottom: 1px solid var(--cd-line);
  }

  .cd-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 0.82;
    overflow: hidden;
    background: #eeeae5;
    border-radius: 3px;
  }

  .cd-product-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform 520ms ease;
  }

  .cd-product-card:hover .cd-product-card__media img {
    transform: scale(1.045);
  }

  .cd-product-card__media > span {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 8px 10px;
    color: #fff;
    background: rgba(15, 14, 14, 0.78);
    border-radius: 2px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .cd-product-card__body {
    padding: 20px 2px 24px;
  }

  .cd-product-card__body > p {
    margin: 0 0 9px;
    color: var(--cd-red);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .cd-product-card h3 {
    min-height: 52px;
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.42;
  }

  .cd-product-card h3 a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .cd-product-card__link {
    margin-top: 18px;
    font-size: 12px;
  }

  .cd-scenes {
    background: var(--cd-paper);
  }

  .cd-scene-grid {
    display: grid;
    grid-template-columns: 1.18fr 0.82fr;
    gap: 14px;
  }

  .cd-scene {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    color: #fff;
    background: #1d1b1b;
    border-radius: 4px;
  }

  .cd-scene img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms ease;
  }

  .cd-scene:hover img {
    transform: scale(1.035);
  }

  .cd-scene::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: '';
    background: linear-gradient(0deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.04) 70%);
  }

  .cd-scene__copy {
    position: absolute;
    right: 34px;
    bottom: 34px;
    left: 34px;
  }

  .cd-scene__copy span {
    color: #d8c8b3;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .cd-scene__copy h3 {
    max-width: 630px;
    margin: 12px 0 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.18;
  }

  .cd-process {
    color: #fff;
    background: #181616;
  }

  .cd-process .cd-section-head h2,
  .cd-process .cd-section-head > p {
    color: #fff;
  }

  .cd-process .cd-section-head > p {
    color: rgba(255, 255, 255, 0.58);
  }

  .cd-process-grid {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

  .cd-process-card {
    position: relative;
    min-height: 250px;
    padding: 34px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 200ms ease;
  }

  .cd-process-card:hover {
    background: #711b29;
  }

  .cd-process-card__number {
    display: block;
    color: #c9bca9;
    font-size: 12px;
    font-weight: 800;
  }

  .cd-process-card__arrow {
    position: absolute;
    top: 30px;
    right: 30px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 18px;
  }

  .cd-process-card h3 {
    margin: 54px 0 14px;
    color: #fff;
    font-size: 22px;
  }

  .cd-process-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.65;
  }

  .cd-process-card:hover p,
  .cd-process-card:hover .cd-process-card__number,
  .cd-process-card:hover .cd-process-card__arrow {
    color: rgba(255, 255, 255, 0.88);
  }

  .cd-process-cta {
    display: flex;
    min-height: 120px;
    padding: 26px 32px;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    background: #252222;
    border-right: 4px solid var(--cd-red-bright);
  }

  .cd-process-cta span,
  .cd-process-cta strong {
    display: block;
  }

  .cd-process-cta span {
    margin-bottom: 5px;
    color: #c9bca9;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
  }

  .cd-process-cta strong {
    color: #fff;
    font-size: 20px;
    font-weight: 650;
  }

  .cd-support-intro {
    padding: 118px 0 60px;
    text-align: center;
    background: #fff;
  }

  .cd-support-intro .cd-kicker {
    justify-content: center;
  }

  .cd-support-intro h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .cd-support-intro .cd-shell > p:last-child {
    margin: 22px auto 0;
  }

  .cd-js-ready .cd-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .cd-js-ready .cd-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (min-width: 701px) and (max-width: 1280px) {
  .cd-shell {
    width: calc(100% - 56px);
  }

  .cd-section {
    padding: 104px 0;
  }

  .cd-hero h1 {
    max-width: 700px;
    font-size: 58px;
  }

  .cd-section-head h2,
  .cd-support-intro h2 {
    font-size: 42px;
  }

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

  .cd-category-card__body strong {
    font-size: 15px;
  }

  .cd-section-head--split,
  .cd-section-head--factory {
    gap: 46px;
  }

  .cd-scene {
    min-height: 520px;
  }
}

@media screen and (min-width: 701px) and (max-width: 980px) {
  .cd-shell {
    width: calc(100% - 40px);
  }

  .cd-hero h1 {
    max-width: 620px;
    font-size: 50px;
  }

  .cd-hero__lead {
    max-width: 560px;
  }

  .cd-section-head--split,
  .cd-section-head--factory {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .cd-category-grid,
  .cd-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cd-category-card {
    aspect-ratio: 1.35 / 1;
  }

  .cd-factory-card,
  .cd-factory-card--wide,
  .cd-factory-card--full {
    grid-column: span 6;
    aspect-ratio: 1.5 / 1;
  }

  .cd-scene-grid {
    grid-template-columns: 1fr;
  }

  .cd-scene {
    min-height: 500px;
  }

  .cd-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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