/* polytics.club -- Editorial Salon Stylesheet */
/* Palette: Antique Ivory #FBF8F1, Editor Black #1C1C1C, Warm Gray #6B665E, Terracotta #C07850, Olive Mist #8B9A78, Deep Charcoal #2A2A2A */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: #FBF8F1;
    color: #6B665E;
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.78;
}

/* ========================
   HERO -- Magazine Cover
   ======================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #1C1C1C 0%, #2A2A2A 40%, #6B665E 80%, #8B9A78 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(28, 28, 28, 0.4) 100%);
    filter: sepia(0.08) contrast(1.05);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.hero-meta {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8B9A78;
    margin-bottom: 2rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 700;
    color: #FBF8F1;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #C07850;
    margin-bottom: 1.5rem;
}

.hero-tagline {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(251, 248, 241, 0.6);
    max-width: 30ch;
    margin: 0 auto;
}

/* ========================
   BOTANICAL DIVIDERS
   ======================== */
.botanical-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
}

.botanical-svg {
    width: min(400px, 80%);
    height: 40px;
}

/* ========================
   SECTION HEADERS
   ======================== */
.section-meta {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #C07850;
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 4.5vw, 4.2rem);
    font-weight: 700;
    color: #1C1C1C;
    line-height: 1.15;
    margin-bottom: 3rem;
}

/* ========================
   PERSPECTIVES SECTION
   ======================== */
.perspectives-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

.perspectives-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 3rem;
}

.perspective {
    padding: 2.5rem;
    border-top: 2px solid #1C1C1C;
}

.perspective-primary {
    border-top-color: #C07850;
}

.perspective-secondary {
    border-top-color: #8B9A78;
}

.perspective-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8B9A78;
    margin-bottom: 1rem;
}

.perspective-primary .perspective-label {
    color: #C07850;
}

.perspective-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #1C1C1C;
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

.perspective-summary {
    color: #6B665E;
    margin-bottom: 1.5rem;
}

.perspective-expanded {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.6s ease, opacity 0.4s ease;
}

.perspective-expanded.is-open {
    max-height: 1200px;
    opacity: 1;
}

.perspective-expanded p {
    margin-bottom: 1.25rem;
    color: #6B665E;
}

.expand-btn {
    display: inline-block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #C07850;
    background: none;
    border: none;
    border-bottom: 1px solid #C07850;
    padding: 0.25rem 0;
    cursor: pointer;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.expand-btn:hover {
    color: #1C1C1C;
    border-color: #1C1C1C;
}

.expand-btn.is-active {
    color: #8B9A78;
    border-color: #8B9A78;
}

/* ========================
   DROP CAPS
   ======================== */
.drop-cap {
    float: left;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 0.8;
    color: #C07850;
    padding-right: 0.12em;
    padding-top: 0.06em;
}

/* ========================
   PULL QUOTES
   ======================== */
.pull-quote {
    max-width: 900px;
    margin: 1rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.pull-quote p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 700;
    font-style: italic;
    color: #1C1C1C;
    line-height: 1.45;
}

/* ========================
   ARTICLES GRID
   ======================== */
.articles-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}

.article-card {
    padding-bottom: 1.5rem;
}

.article-wide {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.article-medium {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.article-narrow {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.article-image {
    width: 100%;
    height: 220px;
    margin-bottom: 1.25rem;
}

.article-wide .article-image {
    height: 360px;
}

.article-meta {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8B9A78;
    margin-bottom: 0.5rem;
}

.article-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: #1C1C1C;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.article-wide .article-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.article-excerpt {
    color: #6B665E;
    font-size: 1rem;
    line-height: 1.7;
}

/* ========================
   FOOTER
   ======================== */
.site-footer {
    background-color: #2A2A2A;
    color: #FBF8F1;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(251, 248, 241, 0.1);
}

.footer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FBF8F1;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Source Serif 4', Georgia, serif;
    font-style: italic;
    color: #C07850;
    font-size: 1rem;
}

.footer-meta {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8B9A78;
    margin-bottom: 0.75rem;
}

.footer-text {
    font-family: 'Source Serif 4', Georgia, serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(251, 248, 241, 0.65);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-copy {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(251, 248, 241, 0.35);
}

/* ========================
   FADE-IN ANIMATION
   ======================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 900px) {
    .perspectives-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .article-wide {
        grid-column: 1;
        grid-row: auto;
    }

    .article-medium {
        grid-column: 1;
        grid-row: auto;
    }

    .article-narrow {
        grid-column: 1;
        grid-row: auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .perspective {
        padding: 1.5rem 0;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .pull-quote p {
        font-size: 1.3rem;
    }

    .perspectives-section,
    .articles-section {
        padding: 2rem 1.25rem;
    }
}