.home-page {
    --home-bg: var(--primary-color);
    --home-text: var(--color-black);
    --home-muted: var(--color-brown);
    --home-hero-text: var(--color-white);
    --home-hero-strong: var(--color-white);
    --home-hero-btn-bg: var(--interactive-color);
    --home-dark-bg: #1a1a1a;
    --home-dark-text: var(--color-white);
    --home-surface-subtle: #e8e6e2;
    --home-surface-warm: var(--primary-color);
    --home-body-strong: #3a3633;
    --home-body-muted: #6b6560;
    --home-philosophy-text: #f5f1e8;
    --home-philosophy-body: #f5f1e8;
    --home-featured-bg: var(--primary-color);
    --home-featured-body: #2f2d2b;
    background: var(--home-bg);
}

.home-page .product-box-container {
    max-width: var(--site-max-width, 1440px);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: max(var(--site-px, 0px), env(safe-area-inset-left, 0px));
    padding-right: max(var(--site-px, 0px), env(safe-area-inset-right, 0px));
}

.home-section {
    position: relative;
    width: 100%;
}

.home-section-content {
    position: relative;
    z-index: 3;
}

.home-hero {
    position: relative;
    min-height: clamp(500px, calc(100vh - 130px), 760px);
    isolation: isolate;
    overflow: hidden;
    color: var(--home-hero-text);
}

.home-hero-bg,
.home-hero-bg-blur,
.home-hero-overlay {
    position: absolute;
    inset: 0;
}

.home-hero-bg,
.home-hero-bg-blur {
    background-image: url('/images/home/hero-banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-hero-bg {
    z-index: 0;
}

.home-hero-bg-blur {
    z-index: 1;
    background-image: none;
    background-color: rgba(0, 0, 0, 0.34);
}

.home-hero-overlay {
    z-index: 2;
    background:
        linear-gradient(100deg, rgba(19, 14, 10, 0.72) 10%, rgba(19, 14, 10, 0.32) 60%, rgba(19, 14, 10, 0.2) 100%);
}

.home-hero-shell {
    min-height: clamp(500px, calc(100vh - 130px), 760px);
    padding-top: clamp(160px, 23vh, 280px);
    padding-bottom: clamp(34px, 5vh, 56px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-hero-main {
    max-width: min(980px, 80vw);
    padding-left: clamp(0px, 0.8vw, 14px);
    min-height: 320px;
}

.home-hero-title {
    margin: 0;
    font-family: 'Karla', sans-serif;
    font-size: clamp(2.2rem, 3.4vw, 3.25rem);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: 0.01em;
    color: var(--home-hero-text);
    max-width: min(980px, 80vw);
    min-height: 154px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 360ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.home-hero-title.is-changing {
    opacity: 0;
    transform: translateY(10px);
}

.home-hero-actions {
    margin-top: clamp(24px, 3vh, 34px);
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    min-height: 46px;
}

.home-hero-btn {
    min-width: 0;
    height: 46px;
    padding: 11px 100px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
    color: var(--home-hero-text);
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.home-hero-btn:hover {
    color: var(--home-hero-strong);
    border-color: var(--home-hero-strong);
}

.home-hero-btn-solid {
    background: var(--home-hero-btn-bg);
    border-color: transparent;
}

.home-hero-btn-solid:hover {
    background: var(--home-hero-btn-bg);
}

.home-hero-btn-outline {
    background: transparent;
}

.home-hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.16);
}

.home-hero-bottom {
    margin-top: clamp(22px, 4vh, 46px);
    display: flex;
    gap: 28px;
    align-items: flex-end;
    justify-content: space-between;
}

.home-hero-indicators {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    width: min(980px, 80vw);
    max-width: 100%;
    padding-left: clamp(0px, 0.8vw, 14px);
    align-items: start;
}

.hero-indicator {
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.32);
    color: rgba(255, 255, 255, 0.58);
    text-align: left;
    padding: 14px 0 0 0;
    cursor: pointer;
    opacity: 0.68;
    transform: none;
    transition: color 320ms ease, opacity 320ms ease, border-top-color 300ms ease;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-height: 94px;
    overflow: hidden;
}

.hero-indicator-title {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 6px 0;
    width: 100%;
}

.hero-indicator-description {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.hero-indicator.is-active {
    color: var(--home-hero-strong);
    opacity: 1;
    border-top-color: var(--home-hero-strong);
}

.hero-indicator.is-active .hero-indicator-line {
    background: var(--home-hero-strong);
    transform: scaleX(1);
}

.home-scroll-indicator {
    min-width: 58px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.home-scroll-line {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
}

.home-scroll-text {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.14em;
    line-height: 1;
    color: rgba(255, 255, 255, 0.9);
}

.home-page :is(.home-edp-section, .home-categories-section, .home-news-section) {
    padding-top: clamp(58px, 7vw, 90px);
    padding-bottom: clamp(58px, 7vw, 90px);
    background: var(--home-bg);
}

.home-edp-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: clamp(30px, 4vw, 48px);
}

.home-edp-title-group h2 {
    margin: 0;
    font-family: 'Karla', sans-serif;
    font-size: clamp(2rem, 2.4vw, 2.65rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
}

.home-edp-title-group p {
    margin: 12px 0 0;
    max-width: 760px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-brown);
}

.home-edp-view-all {
    min-width: 160px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(4, 2, 1, 0.38);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-black);
}

.home-edp-grid {
    row-gap: clamp(36px, 4vw, 48px);
}

.home-edp-section .select-wrapper,
.home-edp-section .select-wrapper select,
.home-edp-section .select-wrapper select option {
    background-color: var(--home-bg);
}

.home-news-grid {
    column-gap: clamp(1rem, 2vw, 1.75rem);
    row-gap: clamp(2rem, 4vw, 3rem);
}

.home-trilogy-section {
    padding-top: clamp(58px, 7vw, 96px);
    padding-bottom: clamp(58px, 7vw, 96px);
    background: var(--primary-color);
}

.home-trilogy-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    column-gap: clamp(32px, 5vw, 72px);
    align-items: center;
}

.home-trilogy-accordion {
    border-top: 1px solid rgba(4, 2, 1, 0.12);
}

.home-trilogy-item {
    border-bottom: 1px solid rgba(4, 2, 1, 0.12);
}

.home-trilogy-trigger {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: clamp(18px, 2.2vw, 26px) 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: inherit;
}

.home-trilogy-trigger:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 3px;
}

.home-trilogy-trigger-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
}

.home-trilogy-item-title {
    font-family: 'Karla', sans-serif;
    font-size: clamp(1.35rem, 2.05vw, 1.95rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-black);
}

.home-trilogy-item-tagline {
    font-family: 'Karla', sans-serif;
    font-size: clamp(1.35rem, 2.05vw, 1.95rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--home-body-strong);
}

.home-trilogy-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(4, 2, 1, 0.38);
}

.home-trilogy-toggle-text {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    color: var(--color-black);
}

.home-trilogy-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1;
    color: var(--color-black);
    font-weight: 400;
    transform: translateY(-0.1em);
}

.home-trilogy-panel {
    padding: 0 0 clamp(10px, 1.5vw, 18px);
}

.home-trilogy-panel p {
    margin: 0;
    max-width: 42rem;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--home-body-muted);
}

.home-trilogy-intro {
    text-align: center;
    padding: clamp(8px, 1.5vw, 16px) 0;
}

.home-trilogy-intro h2 {
    margin: 0;
    font-family: 'Karla', sans-serif;
    font-size: clamp(1.85rem, 2.8vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-black);
}

.home-trilogy-intro p {
    margin: 16px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(0.9rem, 1.05vw, 1rem);
    font-weight: 400;
    line-height: 1.55;
    color: var(--home-body-strong);
}

.home-commitments-section {
    padding: clamp(58px, 7vw, 96px) 0;
    background: var(--home-dark-bg);
    color: var(--home-dark-text);
}

.home-commitments-heading {
    margin: 0 0 clamp(36px, 5vw, 56px);
    font-family: 'Karla', sans-serif;
    font-size: clamp(1.85rem, 2.6vw, 2.35rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--home-dark-text);
}

.home-commitments-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 0;
    row-gap: clamp(40px, 5vw, 64px);
}

/* Two full-height vertical dividers (not per-cell borders). */
.home-commitments-grid::before,
.home-commitments-grid::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.22);
    pointer-events: none;
    z-index: 0;
}

.home-commitments-grid::before {
    left: calc(100% / 3);
    transform: translateX(-0.5px);
}

.home-commitments-grid::after {
    left: calc(200% / 3);
    transform: translateX(-0.5px);
}

.home-commitments-item {
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: center;
    padding: 0 clamp(16px, 2.5vw, 36px);
}

.home-commitment-icon-ring {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    box-sizing: border-box;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--home-dark-text);
}

.home-commitment-svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.home-commitment-zerop-text {
    font-family: 'Karla', sans-serif;
    font-size: 7px;
    font-weight: 700;
}

.home-commitment-title {
    margin: 0;
    font-family: 'Karla', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 700;
    line-height: 1.35;
    color: var(--home-dark-text);
}

.home-commitment-desc {
    margin: 12px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
}

.home-stores-section {
    padding: clamp(58px, 7vw, 96px) 0;
    background: var(--primary-color);
}

.home-stores-heading {
    margin: 0 auto clamp(32px, 5vw, 52px);
    max-width: 840px;
    font-family: 'Karla', sans-serif;
    font-size: clamp(1.75rem, 2.6vw, 2.35rem);
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    color: var(--color-black);
}

.home-stores-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 28px);
}

.home-store-card {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    background: var(--home-surface-subtle);
}

.home-store-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    vertical-align: middle;
}

.home-store-overlay {
    position: absolute;
    inset: auto 0 0 0;
    min-height: 38%;
    display: flex;
    align-items: flex-end;
    padding: clamp(16px, 2.8vw, 28px);
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.62);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.home-store-overlay-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: clamp(16px, 3vw, 32px);
}

.home-store-copy {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.home-store-title {
    margin: 0;
    font-family: 'Karla', sans-serif;
    font-size: clamp(1.35rem, 2.05vw, 1.95rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-black);
}

.home-store-address-line {
    margin: 8px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(12px, 1.05vw, 13px);
    font-weight: 400;
    line-height: 1.55;
    color: var(--home-body-strong);
}

.home-store-contact {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    text-align: right;
}

.home-store-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(12px, 1.05vw, 13px);
    font-weight: 400;
    color: var(--color-black);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.home-store-cta:visited {
    color: var(--color-black);
}

.home-store-cta-icon {
    display: inline-flex;
    flex-shrink: 0;
}

.home-store-cta-icon svg {
    display: block;
}

.home-store-cta:hover,
.home-store-cta:focus-visible {
    color: var(--color-black);
    opacity: 0.82;
}

.home-store-cta:focus-visible {
    outline: 2px solid var(--color-black);
    outline-offset: 3px;
    border-radius: 2px;
}

.home-categories-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.home-category-tile img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.home-category-tile h3 {
    margin: 12px 0 0;
    font-family: 'Karla', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--color-black);
}

.home-featured-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 760px;
    background: var(--primary-color);
}

.home-featured-media {
    min-height: 100%;
    display: block;
    padding: 0;
}

.home-featured-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.home-featured-content {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(44px, 6.5vw, 78px);
    text-align: center;
    background-color: var(--home-featured-bg);
}

.home-featured-copy {
    width: min(620px, 100%);
}

.home-featured-copy h2 {
    margin: 0;
    font-family: 'Karla', sans-serif;
    font-size: clamp(2rem, 2.6vw, 2.95rem);
    font-weight: 700;
    line-height: 1.24;
    color: var(--color-black);
}

.home-featured-desc {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--home-featured-body);
}

.home-featured-desc-primary {
    margin-top: 24px;
}

.home-featured-desc-secondary {
    margin-top: 34px;
}

.home-featured-product {
    margin-top: 26px;
    width: min(340px, 100%);
}

.home-featured-card {
    align-items: center;
}

.home-featured-card .product-image {
    display: flex;
    justify-content: center;
    width: 100%;
}

.home-featured-card .product-image img {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.home-philosophy-slider {
    position: relative;
    min-height: clamp(520px, 70vh, 740px);
    overflow: hidden;
    color: var(--home-philosophy-text);
}

.home-philosophy-bg,
.home-philosophy-overlay {
    position: absolute;
    inset: 0;
}

.home-philosophy-bg {
    z-index: 0;
    background-image: url('/images/home/philosophy_banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-philosophy-overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(102, 87, 74, 1) 7%, rgba(26, 22, 18, 0.6) 41%, rgba(0, 0, 0, 0.1) 100%);
}

.home-philosophy-shell {
    position: relative;
    z-index: 2;
    min-height: clamp(520px, 70vh, 740px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-philosophy-dashes {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.home-philosophy-dash {
    width: 26px;
    height: 2px;
    border: 0;
    background: rgba(245, 241, 232, 0.5);
    padding: 0;
    cursor: pointer;
    transition: width 260ms ease, background-color 260ms ease;
}

.home-philosophy-dash.is-active {
    width: 52px;
    background: var(--home-philosophy-text);
}

.home-philosophy-content {
    max-width: 540px;
}

.home-philosophy-label {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--home-philosophy-text);
}

.home-philosophy-title {
    margin: 8px 0 0;
    font-family: 'Karla', sans-serif;
    font-size: clamp(3.2rem, 5.2vw, 5.2rem);
    font-weight: 400;
    line-height: 1.06;
    color: var(--home-philosophy-text);
}

.home-philosophy-subtitle {
    margin: 8px 0 0;
    font-family: 'Karla', sans-serif;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.12;
    color: var(--home-philosophy-text);
}

.home-philosophy-description {
    margin: 20px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--home-philosophy-body);
    max-width: 430px;
}

.home-philosophy-link {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--home-philosophy-text);
    border-bottom: 0;
    padding-bottom: 0;
    text-decoration: none;
}

.home-philosophy-link:hover {
    color: var(--home-philosophy-text);
    text-decoration: none;
}

.home-page .home-grid-cols-4 {
    --desktop-columns: 4;
}

@media (max-width: 1200px) {
    .home-hero-indicators {
        width: 100%;
        gap: 16px;
    }

    .hero-indicator-description {
        font-size: 10px;
    }

    .home-edp-title-group h2 {
        font-size: clamp(1.8rem, 3vw, 2.2rem);
    }

    .home-edp-title-group p {
        max-width: 640px;
    }

    .home-categories-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-featured-intro {
        min-height: 680px;
    }

    .home-philosophy-title {
        font-size: clamp(2.7rem, 5vw, 4.2rem);
    }

    .home-philosophy-subtitle {
        font-size: clamp(1.8rem, 3vw, 2.8rem);
    }

    .home-trilogy-layout {
        grid-template-columns: 1fr;
        row-gap: clamp(40px, 6vw, 56px);
    }

    .home-trilogy-intro {
        order: -1;
    }
}

@media (max-width: 992px) {
    .home-hero-shell {
        min-height: 560px;
    }

    .home-hero-title {
        max-width: 100%;
    }

    .home-hero-main,
    .home-hero-indicators {
        padding-left: 0;
    }

    .home-hero-bottom {
        margin-top: 36px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .home-hero-indicators {
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 14px;
        padding-right: 52px;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

    .home-hero-indicators::-webkit-scrollbar {
        display: none;
    }

    .home-hero-indicators {
        scrollbar-width: none;
    }

    .home-hero-indicators .hero-indicator {
        flex: 0 0 min(82%, 360px);
        min-height: 94px;
        scroll-snap-align: start;
    }

    .home-scroll-indicator {
        display: none;
    }

    .home-hero-actions {
        flex-wrap: wrap;
    }

    .home-hero-btn {
        width: 100%;
        max-width: 340px;
        padding-left: 26px;
        padding-right: 26px;
    }

    .home-edp-section-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

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

    .home-featured-intro {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .home-featured-media {
        min-height: 440px;
        padding: 0;
    }

    .home-featured-content {
        padding: 44px 28px 56px;
    }

    .home-philosophy-slider,
    .home-philosophy-shell {
        min-height: 750px;
    }

    .home-philosophy-shell {
        justify-content: flex-end;
        padding-bottom: 56px;
    }

    .home-philosophy-bg {
        background-position: 72% center;
    }

    .home-philosophy-content {
        max-width: 100%;
    }

    .home-commitments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: clamp(36px, 6vw, 52px);
        column-gap: clamp(18px, 4vw, 28px);
    }

    .home-commitments-grid::before,
    .home-commitments-grid::after {
        display: none;
    }

    .home-commitments-item {
        padding-left: 0;
        padding-right: 0;
    }

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

    .home-store-overlay-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-store-contact {
        align-items: flex-start;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .home-hero {
        min-height: 520px;
    }

    .home-hero-shell {
        min-height: 520px;
    }

    .home-hero-title {
        font-size: clamp(28px, 7.2vw, 40px);
        min-height: 140px;
    }

    .home-hero-btn {
        min-width: 0;
        max-width: 100%;
        padding: 10px 22px;
        font-size: 12px;
    }
}
