/* Saint-Gervais Mont-Blanc — SEO Landing Page */

/* Alpine accent color */
:root {
    --alpine-blue: #1a3a5c;
    --alpine-snow: #f0f4f8;
}

/* HERO */
.local-hero {
    padding: 60px 24px 80px;
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--alpine-snow) 100%);
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--alpine-blue);
    font-weight: 600;
    margin-bottom: 20px;
    background: var(--alpine-snow);
    border: 1px solid rgba(26, 58, 92, .2);
    padding: 6px 16px;
    border-radius: 20px;
}

.local-hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.local-hero p {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: var(--gold-primary);
    color: var(--black);
    padding: 14px 28px;
    border-radius: 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 181, 42, .4);
}

.cta-secondary {
    background: transparent;
    color: var(--black);
    padding: 14px 28px;
    border-radius: 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border: 1.5px solid var(--black);
    transition: background 0.2s, color 0.2s;
}

.cta-secondary:hover {
    background: var(--black);
    color: var(--white);
}

/* LOCATION CONTEXT */
.location-context {
    padding: 80px 24px;
    background: var(--white);
}

.location-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.location-text p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.location-text p strong {
    color: var(--black);
}

.location-text a {
    color: var(--black);
    font-weight: 500;
}

.atelier-card {
    background: var(--gray-50);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.atelier-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.atelier-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.atelier-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.atelier-row-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.atelier-row-text {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.atelier-row-text strong {
    color: var(--black);
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}

/* COLLECTION ESSKISS FEATURE */
.esskiss-feature {
    padding: 80px 24px;
    background: var(--gray-50);
}

.esskiss-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.esskiss-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.esskiss-inner p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.esskiss-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.product-mini {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    transition: transform 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-mini:hover {
    transform: translateY(-4px);
}

.product-mini img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
}

.product-mini-info {
    padding: 14px;
}

.product-mini-collection {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 4px;
}

.product-mini-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.loading-mini,
.empty-mini {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--gray-400);
    font-style: italic;
}

/* SEO CONTENT */
.seo-content {
    padding: 80px 24px;
    background: var(--white);
}

.seo-inner {
    max-width: 900px;
    margin: 0 auto;
}

.seo-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.seo-inner h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 32px 0 12px;
}

.seo-inner p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.7;
}

.seo-inner p strong {
    color: var(--black);
}

.seo-inner ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.seo-inner li {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 8px;
    line-height: 1.6;
}

/* OTHER COLLECTIONS */
.other-collections {
    padding: 80px 24px;
    background: var(--gray-50);
}

.other-collections-header {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.other-collections-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.other-collections-header p {
    color: var(--gray-600);
    font-size: 14px;
}

.collections-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 32px auto 0;
}

.collection-link {
    display: block;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    text-align: center;
    transition: border-color 0.2s;
    border: 1px solid var(--gray-200);
}

.collection-link:hover {
    border-color: var(--gold-primary);
}

.collection-link h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.collection-link p {
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
    .collections-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .local-hero h1 {
        font-size: 2rem;
    }
    .esskiss-products {
        grid-template-columns: repeat(2, 1fr);
    }
    .collections-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .esskiss-products,
    .collections-row {
        grid-template-columns: 1fr;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
}
