.home-main {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.home-section-shell {
    width: min(1440px, calc(100% - 64px));
    margin: 0 auto;
}

.home-hero {
    position: relative;
    width: min(1504px, calc(100% - 40px));
    min-height: 610px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
    overflow: hidden;
    margin: 0 auto;
    background:
        radial-gradient(circle at 8% 15%, rgba(215, 255, 0, 0.11), transparent 27%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        #080b0f;
    background-size: auto, 52px 52px, 52px 52px, auto;
    border-right: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.home-hero::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 5px;
    content: "";
    background: var(--accent);
}

.home-hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: clamp(46px, 4.5vw, 66px) clamp(38px, 5vw, 82px) 34px;
}

.home-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #c8cbcc;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-eyebrow i {
    width: 7px;
    height: 7px;
    display: inline-block;
    flex: 0 0 auto;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(215, 255, 0, 0.12);
}

.home-hero h1 {
    max-width: 820px;
    margin-top: 24px;
    font-size: clamp(54px, 4.7vw, 78px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.065em;
}

.home-hero h1 em {
    color: var(--accent);
    font-style: normal;
}

.home-hero-lead {
    max-width: 620px;
    margin-top: 24px;
    color: #afb3b5;
    font-size: 15px;
    line-height: 1.6;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 28px;
}

.home-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.home-button:hover,
.home-button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.home-button-primary {
    color: #06080b;
    background: var(--accent);
}

.home-button-primary:hover,
.home-button-primary:focus-visible {
    color: #06080b;
    background: var(--accent-hover);
}

.home-button-primary span {
    color: #06080b;
}

.home-button-secondary {
    color: #dadcdd;
    background: rgba(13, 14, 15, 0.45);
    border-color: #4b5053;
}

.home-button-secondary:hover,
.home-button-secondary:focus-visible {
    background: #1b1d1f;
    border-color: #7a8083;
}

.home-hero-specs {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: auto;
    padding-top: 30px;
}

.home-hero-specs span {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 14px;
    color: #8d9498;
    border-top: 1px solid #3c4043;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-hero-specs b {
    color: #eef0f1;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.home-hero-visual {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 3.5vw, 52px);
    background: linear-gradient(145deg, rgba(215, 255, 0, 0.035), rgba(6, 8, 11, 0.74));
    border-left: 1px solid var(--border);
}

.home-hero-orbit {
    position: absolute;
    display: block;
    pointer-events: none;
    border: 1px solid rgba(215, 255, 0, 0.26);
}

.home-hero-orbit-one {
    top: 16%;
    right: 8%;
    width: 62%;
    height: 56%;
    transform: rotate(4deg);
}

.home-hero-orbit-two {
    right: 3%;
    bottom: 12%;
    width: 33%;
    height: 29%;
    border-color: rgba(255, 255, 255, 0.09);
    transform: rotate(-7deg);
}

.home-hero-feature {
    position: relative;
    z-index: 2;
    width: min(100%, 650px);
    min-width: 0;
    overflow: hidden;
    color: var(--white);
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
    text-decoration: none;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.home-hero-feature:hover,
.home-hero-feature:focus-visible {
    border-color: rgba(215, 255, 0, 0.68);
    outline: none;
    transform: translateY(-5px);
}

.home-hero-feature-top {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0 16px;
    color: #92999d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-hero-feature-top span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d8dcde;
}

.home-hero-feature-top i {
    width: 7px;
    height: 7px;
    display: block;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(215, 255, 0, 0.55);
}

.home-hero-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #090c10;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-hero-frame picture,
.home-hero-frame img {
    width: 100%;
    height: 100%;
}

.home-hero-frame img {
    object-fit: contain;
    transition: filter 0.35s ease, transform 0.55s ease;
}

.home-hero-feature:hover .home-hero-frame img {
    filter: saturate(1.06);
    transform: scale(1.018);
}

.home-hero-feature-copy {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 18px;
}

.home-hero-feature-copy > div:first-child {
    min-width: 0;
}

.home-hero-feature-copy > div:first-child > span {
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-hero-feature-copy h2 {
    margin-top: 8px;
    font-family: "Inter", system-ui, sans-serif;
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.home-hero-bundle-link {
    min-width: 98px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 13px;
    color: #06080b;
    background: var(--accent);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-hero-visual-note {
    position: relative;
    z-index: 2;
    width: min(100%, 650px);
    margin-top: 16px;
    color: #92999d;
    font-size: 11px;
    line-height: 1.5;
}

.home-hero-visual-note span {
    margin-right: 10px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
}

.home-hero-empty,
.home-image-placeholder {
    display: grid;
    place-items: center;
    color: rgba(255, 255, 255, 0.46);
    background: #090c10;
    font-size: 24px;
    font-weight: 800;
}

.home-hero-empty {
    position: relative;
    z-index: 2;
    width: min(100%, 650px);
    min-height: 320px;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.home-collections {
    padding-top: 118px;
    padding-bottom: 126px;
}

.home-section-heading {
    display: grid;
    grid-template-columns: 0.7fr 1.45fr 0.85fr;
    align-items: end;
    gap: 48px;
    margin-bottom: 54px;
}

.home-section-heading > div {
    align-self: start;
}

.home-section-heading > div > span {
    display: inline-block;
    padding: 7px 9px;
    color: var(--accent);
    background: rgba(215, 255, 0, 0.12);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-section-heading > div p,
.home-delivery-intro > p,
.home-guides-heading > div > p {
    margin-top: 14px;
    color: #7d8589;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-section-heading h2 {
    font-size: clamp(54px, 5.5vw, 82px);
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: -0.06em;
}

.home-section-heading > p {
    color: #8e9497;
    font-size: 14px;
    line-height: 1.7;
}

.home-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.home-collection-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 24px;
    color: var(--white);
    background: var(--panel);
    border: 1px solid #2d3032;
    border-radius: 8px;
    text-decoration: none;
}

.home-collection-card > picture,
.home-collection-card > picture img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-collection-card > picture img {
    object-fit: cover;
    filter: grayscale(1) brightness(0.44) contrast(1.12);
    transition: filter 0.35s ease, transform 0.6s ease;
}

.home-collection-card:hover > picture img,
.home-collection-card:focus-visible > picture img {
    filter: grayscale(0.1) brightness(0.66) contrast(1.05);
    transform: scale(1.045);
}

.home-collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 10, 11, 0.2), rgba(9, 10, 11, 0.24) 40%, rgba(9, 10, 11, 0.95));
}

.home-collection-top,
.home-collection-copy,
.home-collection-arrow {
    position: relative;
    z-index: 2;
}

.home-collection-top {
    display: flex;
    justify-content: space-between;
    color: #d6d9da;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.home-collection-top span:first-child {
    color: var(--accent);
}

.home-collection-copy {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.home-collection-copy strong {
    font-size: clamp(35px, 3.2vw, 51px);
    font-weight: 600;
    letter-spacing: -0.05em;
}

.home-collection-copy span {
    max-width: 260px;
    margin-top: 14px;
    color: #d0d3d4;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.6;
}

.home-collection-arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-top: 22px;
    color: var(--accent);
    border: 1px solid #656a6c;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.home-collection-card:hover .home-collection-arrow,
.home-collection-card:focus-visible .home-collection-arrow {
    color: #06080b;
    background: var(--accent);
    border-color: var(--accent);
}

.home-bundle {
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    background: #121416;
    border: 1px solid #383c3e;
    border-radius: 8px;
}

.home-bundle-image {
    min-width: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #090c10;
    border-right: 1px solid #383c3e;
}

.home-bundle-image picture,
.home-bundle-image img {
    width: 100%;
    height: auto;
}

.home-bundle-image picture {
    display: block;
}

.home-bundle-image img {
    object-fit: contain;
}

.home-bundle-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 3vw, 44px);
    background: radial-gradient(circle at 100% 0, rgba(215, 255, 0, 0.18), transparent 36%);
}

.home-bundle-copy h2 {
    margin-top: 18px;
    font-size: clamp(36px, 3.2vw, 48px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.06em;
}

.home-bundle-copy h2 em {
    color: var(--accent);
    font-style: normal;
}

.home-bundle-copy > p:not(.home-eyebrow) {
    max-width: 620px;
    margin-top: 18px;
    color: #9aa0a3;
    font-size: 13px;
    line-height: 1.55;
}

.home-bundle-stats {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 22px 0;
    border-top: 1px solid #393d40;
    border-bottom: 1px solid #393d40;
}

.home-bundle-stats span {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px 12px 14px 0;
    color: #8f969a;
    border-right: 1px solid #393d40;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.home-bundle-stats span:not(:first-child) {
    padding-left: 17px;
}

.home-bundle-stats span:last-child {
    border-right: 0;
}

.home-bundle-stats b {
    color: #eef0f0;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home-bundle-copy .home-button {
    width: 100%;
    min-height: 48px;
}

.home-featured {
    width: min(1280px, calc(100% - 64px));
    padding-top: 132px;
    padding-bottom: 132px;
}

.home-compact-heading {
    grid-template-columns: 0.62fr 1.6fr auto;
}

.home-compact-heading h2 {
    font-size: clamp(48px, 5vw, 74px);
}

.home-compact-heading > a {
    display: flex;
    gap: 25px;
    padding-bottom: 8px;
    color: #c8cbcc;
    border-bottom: 1px solid #54595c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-compact-heading > a span {
    color: var(--accent);
}

.home-pack-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.home-pack-card {
    min-width: 0;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-pack-card:hover,
.home-pack-card:focus-within {
    border-color: rgba(215, 255, 0, 0.68);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.home-pack-card > a {
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--white);
    text-decoration: none;
}

.home-pack-card > a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: -2px;
}

.home-pack-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #090c10;
}

.home-pack-image picture,
.home-pack-image img,
.home-pack-image .home-image-placeholder {
    width: 100%;
    height: 100%;
}

.home-pack-image img {
    object-fit: cover;
    transition: filter 0.3s ease, transform 0.35s ease;
}

.home-pack-card:hover .home-pack-image img {
    filter: saturate(1.08);
    transform: scale(1.035);
}

.home-free-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 7px 9px;
    color: #06080b;
    background: var(--accent);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.home-pack-copy {
    min-height: 250px;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
}

.home-pack-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: #92999d;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.home-pack-meta span:first-child {
    color: var(--accent);
}

.home-pack-copy h3 {
    margin-top: 17px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.home-pack-copy > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 13px 0 22px;
    color: #9da3a6;
    font-size: 13px;
    line-height: 1.6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.home-pack-link {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
}

.home-pack-link span:last-child {
    transition: transform 0.2s ease;
}

.home-pack-card:hover .home-pack-link span:last-child {
    transform: translateX(4px);
}

.home-packs-all {
    display: flex;
    width: fit-content;
    min-width: 248px;
    margin: 40px auto 0;
}

.home-packs-empty {
    padding: 40px;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 8px;
    text-align: center;
}

.home-delivery {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: clamp(60px, 9vw, 150px);
    padding: 92px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.home-delivery-intro h2 {
    max-width: 560px;
    margin-top: 25px;
    font-size: clamp(46px, 4.5vw, 68px);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.05em;
}

.home-delivery-list {
    border-top: 1px solid #3d4245;
}

.home-delivery-list article {
    min-height: 136px;
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #3d4245;
}

.home-delivery-list article > span {
    align-self: start;
    padding-top: 5px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
}

.home-delivery-list h3 {
    font-size: 23px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home-delivery-list p {
    margin-top: 9px;
    color: #8d9396;
    font-size: 13px;
    line-height: 1.55;
}

.home-guides {
    padding-top: 128px;
    padding-bottom: 128px;
}

.home-guides-heading {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 48px;
}

.home-guides-heading h2 {
    margin-top: 24px;
    font-size: clamp(58px, 5.7vw, 86px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.home-guides-heading > p {
    max-width: 500px;
    margin-bottom: 8px;
    color: #8d9396;
    font-size: 14px;
    line-height: 1.65;
}

.home-guide-list {
    border-top: 1px solid #404548;
}

.home-guide-list a {
    min-height: 104px;
    display: grid;
    grid-template-columns: 80px 1fr 120px 30px;
    align-items: center;
    color: var(--white);
    border-bottom: 1px solid #404548;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, padding 0.2s ease;
}

.home-guide-list a:hover,
.home-guide-list a:focus-visible {
    padding-left: 14px;
    background: #131517;
    outline: none;
}

.home-guide-list a > span:first-child,
.home-guide-list a > span:last-child {
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
}

.home-guide-list a > span:last-child {
    font-size: 14px;
}

.home-guide-list h3 {
    font-size: clamp(19px, 2.2vw, 31px);
    font-weight: 600;
    letter-spacing: -0.03em;
}

.home-guide-list p {
    color: #8a9296;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.home-text-link {
    display: inline-flex;
    gap: 25px;
    margin-top: 30px;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-text-link span {
    color: var(--accent);
}

.home-custom {
    min-height: 660px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    overflow: hidden;
    color: #111;
    background: var(--accent);
    border-radius: 8px;
}

.home-custom-copy {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: clamp(54px, 7vw, 104px);
}

.home-custom .home-eyebrow {
    color: #22140e;
}

.home-custom .home-eyebrow i {
    background: #111;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.1);
}

.home-custom h2 {
    max-width: 850px;
    margin-top: 32px;
    font-size: clamp(56px, 5.6vw, 86px);
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: -0.06em;
}

.home-custom-copy > p:not(.home-eyebrow) {
    max-width: 690px;
    margin-top: 34px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.65;
}

.home-custom-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 42px;
}

.home-button-light {
    color: #111;
    background: #fff;
}

.home-button-light:hover,
.home-button-light:focus-visible {
    color: #fff;
    background: #111;
}

.home-button-ghost {
    color: #111;
    border-color: rgba(0, 0, 0, 0.55);
}

.home-button-ghost:hover,
.home-button-ghost:focus-visible {
    background: rgba(0, 0, 0, 0.09);
    border-color: #111;
}

.home-custom-steps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 55px;
    background: rgba(0, 0, 0, 0.06);
    border-left: 1px solid rgba(0, 0, 0, 0.27);
    list-style: none;
}

.home-custom-steps li {
    min-height: 118px;
    display: grid;
    grid-template-columns: 70px 1fr;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.home-custom-steps li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
}

.home-custom-steps li > span {
    font-size: 10px;
    font-weight: 700;
}

.home-custom-steps b {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.home-custom-steps p {
    margin-top: 9px;
    color: rgba(0, 0, 0, 0.7);
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 1160px) {
    .home-hero {
        grid-template-columns: 1fr 46%;
    }

    .home-hero-copy {
        padding-right: 45px;
        padding-left: 45px;
    }

    .home-hero-visual {
        padding: 34px;
    }

    .home-hero-feature-copy {
        padding: 17px;
    }

    .home-hero-bundle-link {
        min-width: 86px;
    }

    .home-section-heading {
        grid-template-columns: 0.5fr 1.35fr 0.8fr;
        gap: 28px;
    }

    .home-collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-collection-card {
        min-height: 380px;
    }

    .home-pack-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-bundle {
        grid-template-columns: 1fr 1fr;
    }

    .home-bundle-copy {
        padding: 32px;
    }

    .home-custom {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 820px) {
    .home-section-shell {
        width: calc(100% - 32px);
    }

    .home-hero {
        width: calc(100% - 16px);
        min-height: 0;
        display: block;
    }

    .home-hero-copy {
        min-height: 560px;
        padding: 58px 30px 36px;
    }

    .home-hero h1 {
        font-size: clamp(54px, 12vw, 82px);
    }

    .home-hero-visual {
        padding: 44px 30px 36px;
        border-top: 1px solid var(--border);
        border-left: 0;
    }

    .home-section-heading {
        display: block;
    }

    .home-section-heading h2 {
        margin: 28px 0;
    }

    .home-section-heading > p {
        max-width: 560px;
    }

    .home-bundle {
        display: flex;
        flex-direction: column;
    }

    .home-bundle-image {
        border-right: 0;
        border-bottom: 1px solid #383c3e;
    }

    .home-bundle-copy {
        padding: 38px 30px;
    }

    .home-compact-heading > a {
        display: none;
    }

    .home-delivery {
        display: block;
        padding: 78px 0;
    }

    .home-delivery-list {
        margin-top: 52px;
    }

    .home-guides-heading {
        display: block;
    }

    .home-guides-heading > p {
        margin-top: 32px;
    }

    .home-custom {
        display: block;
    }

    .home-custom-copy {
        min-height: 620px;
        padding: 68px 32px;
    }

    .home-custom-steps {
        padding: 30px;
        border-top: 1px solid rgba(0, 0, 0, 0.27);
        border-left: 0;
    }
}

@media (max-width: 560px) {
    .home-hero {
        width: 100%;
        border-right: 0;
        border-left: 0;
    }

    .home-hero-copy {
        min-height: 560px;
        padding: 52px 20px 30px;
    }

    .home-hero h1 {
        font-size: 15vw;
    }

    .home-hero-lead {
        font-size: 14px;
    }

    .home-hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .home-hero-actions .home-button {
        width: 100%;
    }

    .home-hero-specs {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home-hero-specs span {
        display: grid;
        grid-template-columns: 80px 1fr;
        align-items: center;
        padding: 11px 0;
    }

    .home-hero-visual {
        padding: 32px 16px 26px;
    }

    .home-hero-feature-top span:last-child {
        display: none;
    }

    .home-hero-feature-copy {
        min-height: 92px;
        gap: 12px;
        padding: 15px;
    }

    .home-hero-feature-copy h2 {
        font-size: 26px;
    }

    .home-hero-bundle-link {
        min-width: 78px;
        min-height: 44px;
        padding: 0 10px;
    }

    .home-hero-visual-note {
        font-size: 10px;
    }

    .home-collections {
        padding-top: 84px;
        padding-bottom: 90px;
    }

    .home-section-heading h2 {
        font-size: 16vw;
    }

    .home-collection-grid {
        grid-template-columns: 1fr;
    }

    .home-collection-card {
        min-height: 350px;
    }

    .home-bundle {
        width: 100%;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .home-bundle-copy {
        padding: 34px 20px;
    }

    .home-bundle-copy h2 {
        margin-top: 16px;
        font-size: clamp(34px, 11vw, 42px);
    }

    .home-bundle-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin: 20px 0;
    }

    .home-bundle-stats span {
        padding: 13px 7px !important;
        border-right: 1px solid #393d40;
        border-bottom: 0;
        font-size: 8px;
    }

    .home-bundle-stats span:last-child {
        border-right: 0;
    }

    .home-featured {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .home-pack-grid {
        grid-template-columns: 1fr;
    }

    .home-pack-copy {
        min-height: 235px;
    }

    .home-packs-all {
        width: 100%;
    }

    .home-delivery-intro h2 {
        font-size: 14vw;
    }

    .home-delivery-list article {
        grid-template-columns: 48px 1fr;
    }

    .home-guides {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .home-guides-heading h2 {
        font-size: 16vw;
    }

    .home-guide-list a {
        min-height: 120px;
        grid-template-columns: 42px 1fr 22px;
    }

    .home-guide-list p {
        display: none;
    }

    .home-guide-list h3 {
        font-size: 18px;
    }

    .home-guide-list a:hover,
    .home-guide-list a:focus-visible {
        padding-left: 0;
    }

    .home-custom {
        width: 100%;
        border-radius: 0;
    }

    .home-custom-copy {
        min-height: 670px;
        padding: 58px 20px;
    }

    .home-custom h2 {
        font-size: 15vw;
    }

    .home-custom-actions {
        width: 100%;
        flex-direction: column;
    }

    .home-custom-actions .home-button {
        width: 100%;
    }

    .home-custom-steps {
        padding: 20px;
    }

    .home-custom-steps li {
        grid-template-columns: 45px 1fr;
    }
}
