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

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFFCF7;
    color: #2C2420;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.site-header {
    background-color: #FFFCF7;
    padding: 4rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid #E8E3D8;
}

.site-title {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 600;
    color: #1A1512;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.site-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: #7A6E62;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Main Container */
.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Section */
.hero-section {
    margin-bottom: 4rem;
    text-align: center;
}

.section-heading {
    font-family: 'IBM Plex Serif', serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #1A1512;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-intro {
    font-size: 1.0625rem;
    line-height: 1.65;
    color: #2C2420;
    max-width: 700px;
    margin: 0 auto;
}

/* Questions Grid */
.questions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.question-card {
    background-color: #FFFCF7;
    border: 2px solid #E8E3D8;
    padding: 2rem;
    border-radius: 8px;
    transition: all 300ms ease;
    animation: fadeInUp 600ms ease-out forwards;
    opacity: 0;
}

.column:nth-child(1) .question-card:nth-child(1) { animation-delay: 0.1s; }
.column:nth-child(1) .question-card:nth-child(2) { animation-delay: 0.2s; }
.column:nth-child(2) .question-card:nth-child(1) { animation-delay: 0.3s; }
.column:nth-child(2) .question-card:nth-child(2) { animation-delay: 0.4s; }
.column:nth-child(3) .question-card:nth-child(1) { animation-delay: 0.5s; }
.column:nth-child(3) .question-card:nth-child(2) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.question-card:hover {
    border-color: #A8863A;
    box-shadow: 0 4px 12px rgba(168, 134, 58, 0.1);
    transform: translateY(-4px);
}

.question-title {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1A1512;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.question-excerpt {
    font-size: 0.95rem;
    color: #7A6E62;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #E8E3D8;
    font-size: 0.85rem;
    color: #7A6E62;
}

.meta-category {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: #A8863A;
}

.meta-length {
    font-family: 'Inter', sans-serif;
    color: #7A6E62;
}

/* Featured Section */
.featured-section {
    background-color: #F5EFE6;
    border-left: 5px solid #A8863A;
    padding: 3rem;
    margin-bottom: 4rem;
    border-radius: 4px;
}

.featured-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #A8863A;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.featured-content {
    animation: slideInRight 600ms ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.featured-title {
    font-family: 'IBM Plex Serif', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #1A1512;
    margin-bottom: 1rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.featured-text {
    font-size: 1rem;
    line-height: 1.65;
    color: #2C2420;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.read-button {
    background-color: #A8863A;
    color: #FFFCF7;
    border: none;
    padding: 0.9rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
}

.read-button:hover {
    background-color: #7A6E62;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(122, 110, 98, 0.2);
}

/* Subscribe Section */
.subscribe-section {
    background-color: #1A1512;
    color: #FFFCF7;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 4rem;
}

.subscribe-title {
    font-family: 'IBM Plex Serif', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.subscribe-text {
    font-size: 1rem;
    color: #E8E3D8;
    margin-bottom: 2rem;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-input {
    flex: 1;
    background-color: rgba(255, 252, 247, 0.1);
    border: 1px solid rgba(255, 252, 247, 0.3);
    padding: 0.9rem 1.2rem;
    color: #FFFCF7;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 300ms ease;
}

.subscribe-input::placeholder {
    color: rgba(255, 252, 247, 0.6);
}

.subscribe-input:focus {
    outline: none;
    background-color: rgba(255, 252, 247, 0.15);
    border-color: rgba(255, 252, 247, 0.6);
}

.subscribe-button {
    background-color: #A8863A;
    color: #FFFCF7;
    border: none;
    padding: 0.9rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 300ms ease;
    white-space: nowrap;
}

.subscribe-button:hover {
    background-color: #7A6E62;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    background-color: #2C2420;
    color: #E8E3D8;
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    border-top: 1px solid #3C3430;
}

/* Responsive */
@media (max-width: 1024px) {
    .questions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .questions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .main-container {
        padding: 2rem 1rem;
    }

    .site-header {
        padding: 2rem 1rem;
    }

    .featured-section,
    .subscribe-section {
        padding: 2rem 1.5rem;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .subscribe-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .site-title {
        font-size: 1.5rem;
    }

    .section-heading {
        font-size: 1.3rem;
    }

    .question-card {
        padding: 1.5rem;
    }

    .question-title {
        font-size: 1.1rem;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .subscribe-title {
        font-size: 1.3rem;
    }
}
