main {
    width: var(--container);
    margin: 0 auto;
    padding: 36px 0 96px;
}

.hero-section {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 36px;
    align-items: center;
    min-height: calc(100vh - 180px);
    padding: 28px 0 40px;
}

.hero-copy {
    max-width: 620px;
}

.hero-eyebrow,
.section-kicker,
.panel-kicker {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary-deep);
}

.hero-copy h1,
.catalog-header h2,
.modal-panel-copy h3 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.03em;
    line-height: 0.96;
}

.hero-copy h1 {
    font-size: clamp(3.4rem, 7vw, 6.2rem);
    margin-bottom: 22px;
}

.hero-copy p,
.catalog-header p,
.modal-panel-copy p {
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 30px 0 34px;
}

.hero-primary,
.hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.hero-primary {
    background: var(--cta);
    color: #fff;
    box-shadow: 0 22px 40px rgba(35, 24, 31, 0.18);
}

.hero-primary:hover {
    transform: translateY(-2px);
    background: var(--cta-hover);
}

.hero-secondary {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    color: var(--text);
}

.hero-secondary:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.hero-visual {
    position: relative;
    min-height: 520px;
}

.hero-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-card);
}

.hero-product-media {
    position: relative;
    padding: 18px;
    background: linear-gradient(180deg, rgba(255, 244, 247, 0.95), rgba(255, 250, 248, 0.72));
}

.hero-product-media img {
    width: 100%;
    min-height: 360px;
    max-height: 420px;
    object-fit: cover;
    border-radius: 26px;
}

.hero-product-badge,
.hero-product-label,
.hero-product-price-label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-deep);
}

.hero-product-badge {
    position: absolute;
    top: 34px;
    left: 34px;
    z-index: 1;
    padding: 9px 12px;
    margin-bottom: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 26px rgba(74, 49, 60, 0.12);
}

.hero-product-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px 26px;
}

.hero-product-copy h3 {
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    line-height: 0.94;
    letter-spacing: -0.03em;
}

.hero-product-copy p {
    color: var(--text-soft);
    line-height: 1.7;
}

.hero-product-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
}

.hero-product-price {
    font-size: 1.7rem;
    line-height: 1;
}

.hero-product-swatches {
    display: flex;
    gap: 10px;
}

.catalog-shell {
    padding: 24px 0 20px;
}

.catalog-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.catalog-header h2 {
    font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.catalog-header p {
    max-width: 420px;
}

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

@media (max-width: 1120px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    main {
        padding-top: 24px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 8px;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-visual {
        min-height: 420px;
    }

    .hero-product-media img {
        min-height: 420px;
    }

    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-header p {
        max-width: 100%;
    }

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

@media (max-width: 640px) {
    main {
        padding-bottom: 88px;
    }

    .hero-copy h1 {
        font-size: clamp(2.8rem, 12vw, 4rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-primary,
    .hero-secondary {
        width: 100%;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-product-media img {
        min-height: 320px;
    }

    .hero-product-body {
        padding: 18px;
    }

    .hero-product-copy h3 {
        font-size: 2rem;
    }

    .hero-product-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}
