@media (min-width: 992px) {
  body {
    background: #f5f8fb;
  }

  .garment-header {
    background: color-mix(in srgb, #071522 82%, transparent);
    border-bottom: 1px solid rgb(255 255 255 / 12%);
    backdrop-filter: blur(16px);
  }

  .rensino-home-pc,
  .rensino-home-pc * {
    box-sizing: border-box;
  }

  .rensino-home-pc {
    --rh-blue: #2694e5;
    --rh-blue-deep: #0068b7;
    --rh-navy: #071522;
    --rh-ink: #10202d;
    --rh-paper: #f5f8fb;
    --rh-line: #dce5ec;
    color: var(--rh-ink);
    overflow: hidden;
    background: #fff;
  }

  .rensino-home-pc a {
    color: inherit;
    text-decoration: none;
  }

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

  .rh-shell {
    width: min(1440px, calc(100% - 96px));
    margin-inline: auto;
  }

  .rh-section {
    padding: 112px 0;
  }

  .rh-hero {
    position: relative;
    min-height: 100vh;
    isolation: isolate;
    display: flex;
    align-items: center;
    color: #fff;
    background: var(--rh-navy);
  }

  .rh-hero__image,
  .rh-hero__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    height: 100%;
  }

  .rh-hero__image {
    object-fit: cover;
    object-position: center;
  }

  .rh-hero__shade {
    z-index: -1;
    background: linear-gradient(90deg, rgb(3 11 18 / 94%) 0%, rgb(3 11 18 / 78%) 38%, rgb(3 11 18 / 20%) 68%, rgb(3 11 18 / 10%) 100%), linear-gradient(0deg, rgb(2 8 14 / 55%) 0%, transparent 44%);
  }

  .rh-hero__inner {
    display: flex;
    align-items: center;
    padding-top: 122px;
    padding-bottom: 58px;
  }

  .rh-hero__copy {
    width: min(720px, 56%);
  }

  .rh-eyebrow,
  .rh-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--rh-blue);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .rh-eyebrow {
    padding: 10px 14px;
    color: #cfeeff;
    border: 1px solid rgb(79 174 236 / 38%);
    border-radius: 4px;
    background: rgb(0 104 183 / 18%);
  }

  .rh-hero h1 {
    margin: 0;
    max-width: 760px;
    color: #fff;
    font-size: 76px;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0;
  }

  .rh-hero__copy > p {
    max-width: 650px;
    margin: 28px 0 0;
    color: rgb(255 255 255 / 76%);
    font-size: 18px;
    line-height: 1.75;
  }

  .rh-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
  }

  .rh-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 800;
    transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
  }

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

  .rh-button--primary {
    color: #fff !important;
    background: var(--rh-blue-deep);
    box-shadow: 0 12px 30px rgb(0 104 183 / 25%);
  }

  .rh-button--primary:hover {
    background: var(--rh-blue);
  }

  .rh-button--ghost {
    color: #fff !important;
    border-color: rgb(255 255 255 / 36%);
    background: rgb(255 255 255 / 7%);
  }

  .rh-button--ghost:hover {
    border-color: #fff;
    background: rgb(255 255 255 / 13%);
  }

  .rh-hero__proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 52px 0 0;
  }

  .rh-hero__proof div {
    padding: 4px 22px;
    border-left: 1px solid rgb(255 255 255 / 18%);
  }

  .rh-hero__proof div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .rh-hero__proof dt {
    margin-bottom: 7px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
  }

  .rh-hero__proof dd {
    margin: 0;
    color: rgb(255 255 255 / 58%);
    font-size: 12px;
    line-height: 1.45;
  }

  .rh-hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgb(255 255 255 / 66%) !important;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transform: translateX(-50%);
  }

  .rh-hero__scroll span {
    width: 24px;
    height: 36px;
    position: relative;
    border: 1px solid rgb(255 255 255 / 42%);
    border-radius: 14px;
  }

  .rh-hero__scroll span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 10px;
    width: 3px;
    height: 7px;
    border-radius: 2px;
    background: var(--rh-blue);
    animation: rh-scroll 1.8s infinite;
  }

  @keyframes rh-scroll {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(9px); }
  }

  .rh-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, .65fr);
    align-items: end;
    gap: 70px;
    margin-bottom: 56px;
  }

  .rh-section-heading h2,
  .rh-application-heading h2,
  .rh-service-intro h2 {
    margin: 0;
    color: var(--rh-ink);
    font-size: 58px;
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: 0;
  }

  .rh-section-heading > p,
  .rh-application-heading > p,
  .rh-service-intro p {
    margin: 0;
    color: #5f707d;
    font-size: 16px;
    line-height: 1.75;
  }

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

  .rh-category-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--rh-line);
    border-radius: 6px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  }

  .rh-category-card:hover {
    z-index: 2;
    border-color: color-mix(in srgb, var(--rh-blue) 52%, var(--rh-line));
    box-shadow: 0 20px 50px rgb(13 42 62 / 12%);
    transform: translateY(-6px);
  }

  .rh-category-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #edf3f7;
  }

  .rh-category-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
  }

  .rh-category-card:hover .rh-category-card__media img {
    transform: scale(1.045);
  }

  .rh-category-card__body {
    min-height: 92px;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 22px;
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .rh-category-card__body > i:first-child {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: var(--rh-blue-deep);
    font-size: 19px;
    border-radius: 4px;
    background: #eaf5fc;
  }

  .rh-category-card__body > i:last-child {
    color: #8fa1ad;
    font-size: 18px;
  }

  .rh-category-card__body span {
    min-width: 0;
  }

  .rh-category-card strong,
  .rh-category-card small {
    display: block;
  }

  .rh-category-card strong {
    min-height: 36px;
    color: var(--rh-ink);
    font-size: 14px;
    line-height: 1.3;
  }

  .rh-category-card small {
    margin-top: 5px;
    color: #81929e;
    font-size: 11px;
  }

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

  .rh-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 8px;
    color: var(--rh-blue-deep) !important;
    font-size: 14px;
    font-weight: 800;
    border-bottom: 1px solid color-mix(in srgb, var(--rh-blue-deep) 36%, transparent);
  }

  .rh-factory {
    color: #fff;
    background: var(--rh-navy);
  }

  .rh-section-heading--light h2,
  .rh-section-heading--light > p {
    color: #fff;
  }

  .rh-section-heading--light > p {
    color: rgb(255 255 255 / 60%);
  }

  .rh-factory-grid {
    display: grid;
    grid-template-columns: 1.35fr .8fr .85fr;
    grid-template-rows: 320px 260px;
    gap: 14px;
  }

  .rh-factory-card {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: 5px;
    background: #0c2334;
  }

  .rh-factory-card--1 { grid-row: 1 / 3; }
  .rh-factory-card--2 { grid-column: 2 / 4; }

  .rh-factory-card img {
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
  }

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

  .rh-factory-card::after {
    content: '';
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(0deg, rgb(3 12 19 / 84%), transparent);
  }

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

  .rh-factory-card figcaption span {
    flex: 0 0 auto;
    color: var(--rh-blue);
    font-size: 12px;
  }

  .rh-factory-note {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
    margin-top: 28px;
    padding: 26px 30px;
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 5px;
    background: rgb(255 255 255 / 4%);
  }

  .rh-factory-note > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
    border-radius: 4px;
    background: var(--rh-blue-deep);
  }

  .rh-factory-note p {
    margin: 0;
    color: rgb(255 255 255 / 62%);
    font-size: 14px;
    line-height: 1.65;
  }

  .rh-factory-note strong {
    color: #fff;
  }

  .rh-factory-note a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
  }

  .rh-products {
    background: var(--rh-paper);
  }

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

  .rh-product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--rh-line);
    border-radius: 6px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .rh-product-card:hover {
    box-shadow: 0 20px 48px rgb(18 45 62 / 11%);
    transform: translateY(-5px);
  }

  .rh-product-card__media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #edf3f7;
  }

  .rh-product-card__media img {
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
  }

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

  .rh-product-card__media > span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 12px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 3px;
    background: rgb(7 21 34 / 88%);
    transform: translateY(48px);
    transition: transform .3s ease;
  }

  .rh-product-card:hover .rh-product-card__media > span {
    transform: translateY(0);
  }

  .rh-product-card__copy {
    min-height: 152px;
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .rh-product-card__copy small {
    margin-bottom: 9px;
    color: var(--rh-blue-deep);
    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
  }

  .rh-product-card__copy strong {
    color: var(--rh-ink);
    font-size: 14px;
    line-height: 1.45;
  }

  .rh-product-card__copy em {
    margin-top: auto;
    padding-top: 15px;
    color: #7f909b;
    font-size: 11px;
    font-style: normal;
    border-top: 1px solid #edf1f4;
  }

  .rh-applications {
    background: #fff;
  }

  .rh-application-heading {
    max-width: 830px;
    margin: 0 auto 56px;
    text-align: center;
  }

  .rh-application-heading > p {
    max-width: 660px;
    margin: 22px auto 0;
  }

  .rh-application-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .rh-application-card {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border-radius: 6px;
    background: var(--rh-navy);
  }

  .rh-application-card img {
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .65s ease;
  }

  .rh-application-card:hover img {
    transform: scale(1.045);
  }

  .rh-application-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(2 12 19 / 92%) 0%, rgb(2 12 19 / 14%) 72%);
  }

  .rh-application-card > div {
    position: absolute;
    z-index: 1;
    left: 30px;
    right: 30px;
    bottom: 28px;
    color: #fff;
  }

  .rh-application-card > div > span {
    color: var(--rh-blue);
    font-size: 12px;
    font-weight: 800;
  }

  .rh-application-card h3 {
    margin: 10px 0 12px;
    color: #fff;
    font-size: 27px;
    line-height: 1.2;
  }

  .rh-application-card p {
    margin: 0;
    color: rgb(255 255 255 / 68%);
    font-size: 13px;
    line-height: 1.65;
  }

  .rh-application-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-top: 24px;
    padding: 26px 30px;
    border: 1px solid var(--rh-line);
    border-radius: 5px;
    background: var(--rh-paper);
  }

  .rh-application-cta > div {
    display: flex;
    align-items: center;
    gap: 17px;
  }

  .rh-application-cta > div > i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 48px;
    color: #fff;
    font-size: 22px;
    border-radius: 4px;
    background: var(--rh-blue-deep);
  }

  .rh-application-cta strong,
  .rh-application-cta small {
    display: block;
  }

  .rh-application-cta strong {
    margin-bottom: 5px;
    color: var(--rh-ink);
    font-size: 16px;
  }

  .rh-application-cta small {
    color: #6d7e8a;
    font-size: 12px;
  }

  .rh-process {
    color: #fff;
    background: #0d1b26;
  }

  .rh-process .rh-application-heading h2,
  .rh-process .rh-application-heading p {
    color: #fff;
  }

  .rh-process .rh-application-heading p {
    color: rgb(255 255 255 / 58%);
  }

  .rh-process-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    margin: 0;
    padding: 1px;
    list-style: none;
    background: rgb(255 255 255 / 12%);
  }

  .rh-process-card {
    min-height: 308px;
    position: relative;
    padding: 34px 26px;
    overflow: hidden;
    background: #0d1b26;
    transition: background-color .3s ease;
  }

  .rh-process-card:hover {
    background: #122a3b;
  }

  .rh-process-card::after {
    content: '';
    position: absolute;
    top: 64px;
    right: -9px;
    width: 18px;
    height: 18px;
    z-index: 2;
    border-top: 1px solid rgb(255 255 255 / 18%);
    border-right: 1px solid rgb(255 255 255 / 18%);
    background: #0d1b26;
    transform: rotate(45deg);
  }

  .rh-process-card:last-child::after {
    display: none;
  }

  .rh-process-card__number {
    position: absolute;
    top: 22px;
    right: 20px;
    color: rgb(255 255 255 / 10%);
    font-size: 48px;
    font-weight: 800;
  }

  .rh-process-card > i {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 54px;
    color: #fff;
    font-size: 24px;
    border: 1px solid rgb(38 148 229 / 38%);
    border-radius: 4px;
    background: rgb(0 104 183 / 18%);
  }

  .rh-process-card h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
  }

  .rh-process-card p {
    margin: 0;
    color: rgb(255 255 255 / 54%);
    font-size: 12px;
    line-height: 1.7;
  }

  .rh-service-intro {
    padding: 94px 0 58px;
    text-align: center;
    background: #fff;
  }

  .rh-service-intro .rh-shell {
    max-width: 900px;
  }

  .rh-service-intro p {
    max-width: 650px;
    margin: 20px auto 0;
  }

  #kf {
    width: min(1240px, calc(100% - 96px));
    margin-inline: auto;
  }

  #kf .online_cont {
    margin: 0 0 100px;
    padding: 0;
  }

  #kf .online_cont > .title {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  #kf .online_cont ul {
    gap: 16px;
  }

  #kf .online_cont ul li {
    padding: 24px 14px;
    border: 1px solid #dce5ec;
    border-radius: 6px;
    background: #f8fafc;
    transition: transform .25s ease, box-shadow .25s ease;
  }

  #kf .online_cont ul li:hover {
    box-shadow: 0 16px 34px rgb(18 45 62 / 10%);
    transform: translateY(-4px);
  }

  #kf .online_cont ul li p:nth-child(1) {
    width: 128px;
    height: 128px;
    box-shadow: none;
    border: 3px solid #fff;
    outline: 1px solid #dce5ec;
  }

  #kf .online_cont ul li p:nth-child(2) {
    color: #10202d;
    font-weight: 800;
  }

  #kf .online_cont ul li p:nth-child(3) {
    gap: 8px;
  }

  #kf .online_cont ul li p:nth-child(3) span {
    border-radius: 3px;
    background: #087a55;
  }

  #kf .online_cont ul li p:nth-child(3) span:nth-child(2) {
    margin-left: 0;
    background: #0068b7;
  }

  .rensino-js .rh-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease var(--rh-delay, 0ms), transform .7s ease var(--rh-delay, 0ms);
  }

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

@media (min-width: 992px) and (max-width: 1280px) {
  .garment-header-inner {
    width: calc(100% - 64px);
    height: 86px;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    gap: 18px;
  }

  .garment-header.is-scrolled .garment-header-inner {
    height: 80px;
  }

  .garment-logo {
    width: 168px;
    height: 54px;
  }

  .garment-nav {
    justify-content: space-between;
    gap: 12px;
    overflow: visible;
  }

  .garment-nav > a,
  .dropdown-trigger {
    font-size: 13px;
  }

  .rh-shell,
  #kf {
    width: calc(100% - 64px);
  }

  .rh-section {
    padding: 88px 0;
  }

  .rh-hero h1 {
    font-size: 58px;
  }

  .rh-hero__inner {
    padding-top: 110px;
    padding-bottom: 70px;
  }

  .rh-category-card__body {
    grid-template-columns: 34px minmax(0, 1fr) 18px;
    gap: 9px;
    padding: 13px;
  }

  .rh-category-card strong {
    font-size: 12px;
  }

  .rh-product-card__copy {
    min-height: 168px;
  }
}
