/* Non-Critical CSS - Loaded after Hero */
/*font faces*/
@font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 500;
    src: url('fonts/space-grotesk-v22-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Space Grotesk';
    font-style: normal;
    font-weight: 600;
    src: url('fonts/space-grotesk-v22-latin-600.woff2') format('woff2');
}


/* Main Content */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    padding-top: 4rem;
    /* Account for fixed nav */
}

section {
    padding: 6rem 0;
    border-top: 1px solid var(--border);
}

section:first-of-type {
    border-top: none;
}

h2 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold-warm);
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text);
}

p.muted {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

strong {
    font-weight: 500;
    color: var(--accent);
}

/* Masters Grid */
.masters-grid {
    display: grid;
    gap: 1px;
    background: var(--border);
    margin: 2.5rem 0;
}

.master {
    background: var(--bg);
    padding: 1.5rem 0;
}

.master-name {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.master-note {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Why we ask */

#why-we-ask {
    padding: 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--gold-warm);
    opacity: 0.9;
}

#why-we-ask p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

#why-we-ask p:first-of-type {
    color: var(--text);
    font-size: 1.1rem;
}

#why-we-ask p:last-of-type {
    margin-bottom: 0;
}

/* Quote */
blockquote {
    margin: 3rem 0;
    padding-left: 1.5rem;
    border-left: 2px solid var(--subtle);
}

blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 0.8rem;
}

blockquote cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Podcast */
.podcast-list {
    margin: 2rem 0;
}

.podcast-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--border);
}

.podcast-item:last-child {
    border-bottom: none;
}

.podcast-item strong {
    display: block;
    margin-bottom: 0.3rem;
}

.podcast-item span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Links */
a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--subtle);
    transition: border-color 0.2s ease;
}

a:hover {
    border-color: var(--accent);
}

a:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 8rem 2rem;
    background: var(--bg-card);
    margin-top: 4rem;
}

.cta h2 {
    font-size: 1.8rem;
    font-family: "Space Grotesk", sans-serif;
    text-transform: none;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.cta-note {
    margin-top: 2rem;
    color: var(--text-secondary);
}

.cta-link {
    border-bottom: 1px solid var(--text-secondary);
}

/* Footer */
footer.site-footer {
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.85rem;
    color: var(--subtle);
}

footer.site-footer a {
    color: var(--subtle);
    
}

footer.site-footer a:hover {
    color: var(--text-secondary);
}

/* WCAG-konforme visually-hidden class */
.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}


/* Responsive */
@media (max-width: 600px) {
    section {
        padding: 4rem 0;
    }

    main {
        padding: 0 1.5rem;
        padding-top: 4rem;
    }

    .cta {
        padding: 5rem 1.5rem;
    }
}