@media (min-width: 701px) {
  .tf-home {
    color: #1d2a20;
    background: #fff;
    overflow: clip;
  }

  .tf-home img { display: block; width: 100%; }
  .tf-home a { text-decoration: none; }
  .tf-shell { width: min(100% - 80px, 1420px); margin-inline: auto; }
  .tf-section { padding: 104px 0 116px; }
  .tf-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 20px;
    color: #397c1e;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
    text-transform: uppercase;
  }
  .tf-eyebrow i { font-size: 19px; font-weight: 400; }
  .tf-eyebrow--light { color: #d7eec8; }
  .tf-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;
    margin-bottom: 38px;
  }
  .tf-section-heading h2,
  .tf-lifestyle h2 {
    max-width: 820px;
    margin: 0;
    color: #17271c;
    font-size: 46px;
    font-weight: 750;
    line-height: 1.13;
    letter-spacing: 0;
  }
  .tf-section-heading > p {
    max-width: 390px;
    margin: 0 0 5px;
    color: #657168;
    font-size: 16px;
    line-height: 1.7;
  }
  .tf-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    min-height: 56px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 750;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }
  .tf-button:hover { transform: translateY(-2px); }
  .tf-button i,
  .tf-text-link i { font-size: 19px; font-weight: 400; }
  .tf-button--gold { color: #1d2718; background: #ffc832; }
  .tf-button--gold:hover { background: #ffe18d; }
  .tf-button--outline { color: #fff; border-color: rgba(255,255,255,.68); }
  .tf-button--outline:hover { color: #17271c; background: #fff; }
  .tf-button--green { color: #fff; background: #397c1e; }
  .tf-button--green:hover { background: #285c16; }
  .tf-text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    color: #397c1e;
    font-size: 14px;
    font-weight: 750;
    white-space: nowrap;
  }
  .tf-text-link:hover { color: #b47b05; }

  .tf-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: min(900px, calc(100svh - 45px));
    padding: 125px max(40px, calc((100vw - 1420px) / 2)) 110px;
    color: #fff;
    background: #1b241d;
    isolation: isolate;
  }
  .tf-hero__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .tf-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(9,20,12,.30), transparent 57%);
  }
  .tf-hero__content { max-width: 720px; }
  .tf-hero h1 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 86px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
  }
  .tf-hero__statement {
    max-width: 680px;
    margin: 0;
    color: #fff;
    font-size: 35px;
    font-weight: 550;
    line-height: 1.25;
    letter-spacing: 0;
  }
  .tf-hero__detail {
    max-width: 480px;
    margin: 27px 0 31px;
    color: rgba(255,255,255,.82);
    font-size: 17px;
    line-height: 1.65;
  }
  .tf-actions { display: flex; flex-wrap: wrap; gap: 12px; }
  .tf-hero__scroll {
    position: absolute;
    left: max(40px, calc((100vw - 1420px) / 2));
    bottom: 26px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .tf-hero__scroll span { width: 33px; height: 1px; background: #ffc832; }

  .tf-categories { background: #fff; }
  .tf-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
  .tf-category {
    position: relative;
    min-width: 0;
    aspect-ratio: 1.2;
    overflow: hidden;
    border-radius: 4px;
    background: #eaf0e7;
  }
  .tf-category img {
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
  }
  .tf-category:hover img { transform: scale(1.045); }
  .tf-category__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,25,13,.78));
  }
  .tf-category__content {
    position: absolute;
    right: 18px;
    bottom: 19px;
    left: 18px;
    display: grid;
    gap: 6px;
    color: #fff;
  }
  .tf-category__name {
    overflow-wrap: anywhere;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.18;
  }
  .tf-category__meta {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,.9);
    font-size: 12px;
  }
  .tf-category__meta i { margin-left: auto; font-size: 20px; }
  .tf-category--featured { grid-column: 1 / -1; aspect-ratio: 5.4; }
  .tf-category--featured img { object-position: center 48%; }
  .tf-category--featured .tf-category__content { right: 36px; bottom: 28px; left: 36px; }
  .tf-category--featured .tf-category__name { font-size: 30px; }

  .tf-factory { background: #f2f6f0; }
  .tf-factory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: 12px;
  }
  .tf-factory-image {
    position: relative;
    min-width: 0;
    overflow: hidden;
    margin: 0;
    border-radius: 4px;
    background: #dce6d7;
  }
  .tf-factory-image--lead { grid-column: span 2; grid-row: span 2; }
  .tf-factory-image img { height: 100%; object-fit: cover; }
  .tf-factory-image::after {
    content: '';
    position: absolute;
    inset: 50% 0 0;
    background: linear-gradient(transparent, rgba(9,25,12,.65));
  }
  .tf-factory-image figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 1;
    display: flex;
    align-items: baseline;
    gap: 13px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
  }
  .tf-factory-image figcaption span { color: #f9cf69; font-size: 12px; }
  .tf-factory .tf-text-link { margin-top: 26px; }

  .tf-products { background: #fff; }
  .tf-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px 16px;
  }
  .tf-product {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
    border: 1px solid #e6ede3;
    border-radius: 4px;
    background: #fff;
    transition: box-shadow .2s ease, transform .2s ease;
  }
  .tf-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(23, 49, 25, .11);
  }
  .tf-product__image {
    display: block;
    aspect-ratio: 1.12;
    overflow: hidden;
    background: #f5f8f3;
  }
  .tf-product__image img { height: 100%; object-fit: contain; }
  .tf-product__body { display: grid; align-content: start; gap: 9px; flex: 1; padding: 19px 20px 20px; }
  .tf-product__category { color: #397c1e; font-size: 11px; font-weight: 800; text-transform: uppercase; }
  .tf-product__title {
    display: -webkit-box;
    overflow: hidden;
    min-height: 3.1em;
    color: #1c2a20;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .tf-product__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    padding-top: 13px;
    border-top: 1px solid #ebefe8;
    color: #556b55;
    font-size: 12px;
    font-weight: 700;
  }
  .tf-product__link i { font-size: 17px; }

  .tf-lifestyle {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 570px;
    background: #eff4eb;
  }
  .tf-lifestyle__image { min-height: 570px; }
  .tf-lifestyle__image img { height: 100%; object-fit: cover; }
  .tf-lifestyle__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 70px max(40px, calc((100vw - 1420px) / 2));
  }
  .tf-lifestyle h2 { font-size: 48px; }
  .tf-lifestyle__content > p:not(.tf-eyebrow) {
    max-width: 530px;
    margin: 27px 0 31px;
    color: #5b6b5d;
    font-size: 17px;
    line-height: 1.8;
  }

  .tf-process { background: #fff; }
  .tf-process-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin: 50px 0 0;
    padding: 0;
    list-style: none;
  }
  .tf-process-list li {
    min-width: 0;
    min-height: 235px;
    padding: 23px 22px 24px;
    border-top: 2px solid #d7e5d1;
    border-right: 1px solid #e3ebe0;
  }
  .tf-process-list li:first-child { padding-left: 0; }
  .tf-process-list li:last-child { padding-right: 0; border-right: 0; }
  .tf-process-list li > i {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid #d6e5d0;
    border-radius: 50%;
    color: #397c1e;
    font-size: 23px;
  }
  .tf-process-list__number { float: right; color: #b47b05; font-size: 13px; font-weight: 800; }
  .tf-process-list h3 { margin: 28px 0 11px; color: #1e3022; font-size: 18px; line-height: 1.25; }
  .tf-process-list p { max-width: 205px; margin: 0; color: #6c786d; font-size: 14px; line-height: 1.65; }
  .tf-process__cta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 0 0;
    border-top: 1px solid #dce6d7;
    color: #1d2a20;
    font-size: 20px;
    font-weight: 700;
  }

  body .cs-section { background: #f2f6f0; }
  body .cs-section .cs-eyebrow { color: #397c1e; }
  body .cs-section .cs-card { border-color: #dce8d8; }
  body .cs-section .cs-status-dot { background: #6da832; }
}

@media (min-width: 701px) and (max-width: 1100px) {
  .tf-shell { width: min(100% - 48px, 1420px); }
  .tf-section { padding: 80px 0 88px; }
  .tf-section-heading h2 { font-size: 38px; }
  .tf-section-heading { gap: 35px; }
  .tf-hero { padding-inline: 32px; }
  .tf-hero__scroll { left: 32px; }
  .tf-hero h1 { font-size: 64px; }
  .tf-hero__statement { font-size: 29px; }
  .tf-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .tf-factory-grid { grid-auto-rows: 190px; }
  .tf-product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
  .tf-product__body { padding: 16px; }
  .tf-lifestyle__content { padding: 48px 34px; }
  .tf-lifestyle h2 { font-size: 38px; }
  .tf-process-list li { padding-inline: 13px; }
  .tf-process-list h3 { font-size: 16px; }
}
