        /* ── SEASONS ── */
        #seasons { background: var(--cream); padding: 0; }
        #seasons-inner { max-width: 1400px; margin: 0 auto; padding: 72px 20px 40px; }
        @media (min-width: 640px) { #seasons-inner { padding: 100px 40px 56px; } }
        @media (min-width: 1024px) { #seasons-inner { padding: 180px 96px 80px; } }
        #seasons-header { margin-bottom: 40px; }
        @media (min-width: 768px) { #seasons-header { margin-bottom: 56px; } }
        #seasons-heading {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(22px, 4vw, 42px);
            font-weight: 300; line-height: 1.2; color: var(--blue);
        }
        #seasons-grid {
            display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px;
        }
        @media (min-width: 768px) { #seasons-grid { grid-template-columns: repeat(4, 1fr); } }
        .season-card {
            position: relative; overflow: hidden;
            aspect-ratio: 3/4; cursor: default;
            clip-path: inset(0 0 100% 0);
            -webkit-tap-highlight-color: transparent;
        }
        .season-card img {
            width: 100%; height: 100%; object-fit: cover;
            filter: grayscale(30%) contrast(1.1) brightness(0.88);
            transform: scale(1.05);
            transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        .season-card:hover img,
        .season-card.tapped img { transform: scale(1.0); }
        .season-card-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(8,9,64,0.96) 0%, rgba(8,9,64,0.72) 42%, rgba(8,9,64,0.15) 75%, transparent 100%);
            transition: background 0.5s ease;
        }
        .season-card-text { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px; }
        @media (min-width: 640px) { .season-card-text { padding: 28px 24px; } }
        @media (min-width: 1024px) { .season-card-text { padding: 32px 28px; } }
        .season-tag {
            font-family: 'Cormorant Garamond', serif;
            font-size: 9.5px; letter-spacing: 0.3em;
            color: var(--gold); text-transform: uppercase;
            display: block; margin-bottom: 8px;
        }
        @media (min-width: 640px) { .season-tag { font-size: 11px; } }
        .season-name {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(21px, 4.6vw, 32px);
            font-weight: 500; color: white;
            display: block; margin-bottom: 10px;
        }
        .season-desc {
            font-size: 13px; color: rgba(255,255,255,0.7);
            font-weight: 300; line-height: 1.6;
            opacity: 1;
        }
        @media (min-width: 640px) { .season-desc { font-size: 14px; } }

