/* Template 13 - Vintage Paper / Classic Editorial */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;500;600;700;800;900&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Source+Serif+4:wght@300;400;500;600&display=swap');

:root {
    --paper-cream: #faf8f3;
    --paper-aged: #f5f0e6;
    --ink-black: #1a1814;
    --ink-brown: #3d3428;
    --ink-sepia: #6b5b4a;
    --accent-burgundy: #7b2d3e;
    --accent-gold: #b8963e;
    --rule-color: #d4cfc4;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Source Serif 4', Georgia, serif;
    line-height: 1.8;
    color: var(--ink-black);
    background: var(--paper-cream);
    font-weight: 400;
    font-size: 18px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(181, 166, 145, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(181, 166, 145, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Header - Classic Newspaper Style */
.site-header {
    background: var(--paper-cream);
    padding: 2rem 0 1rem;
    text-align: center;
    border-bottom: 3px double var(--ink-black);
    position: relative;
}

.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: var(--accent-burgundy);
}

.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.site-logo a {
    font-family: 'Bodoni Moda', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--ink-black);
    text-decoration: none;
    letter-spacing: 8px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: block;
}

.site-logo a:hover {
    letter-spacing: 12px;
}

.site-logo::after {
    content: 'EST. 2024';
    display: block;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.7rem;
    letter-spacing: 4px;
    color: var(--ink-sepia);
    margin-top: 0.25rem;
}

.site-nav {
    width: 100%;
    border-top: 1px solid var(--rule-color);
    border-bottom: 1px solid var(--rule-color);
    padding: 0.75rem 0;
}

.site-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 3rem;
    align-items: center;
}

.site-nav a {
    color: var(--ink-brown);
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.site-nav a:hover {
    color: var(--accent-burgundy);
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-burgundy);
    transition: width 0.3s ease;
}

.site-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.section.head {
    padding: 5rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid var(--rule-color);
    position: relative;
}

.section.head::before {
    content: '§';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--ink-sepia);
    background: var(--paper-cream);
    padding: 0 1rem;
}

.section.head h1 {
    font-family: 'Bodoni Moda', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--ink-black);
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section.head h1::first-line {
    font-size: 1.1em;
}

.section.head p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1.15rem;
    color: var(--ink-sepia);
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    line-height: 1.9;
}

.section.head p::before,
.section.head p::after {
    content: '"';
    color: var(--accent-gold);
    font-size: 1.5em;
}

/* Section Styling */
.section {
    padding: 4rem 0;
    position: relative;
}

.section header {
    text-align: center;
    margin-bottom: 3rem;
}

.section header h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--ink-black);
    position: relative;
    display: inline-block;
}

.section header h2::before,
.section header h2::after {
    content: '—';
    color: var(--accent-gold);
    margin: 0 1rem;
}

.section header p {
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: var(--ink-sepia);
    font-style: italic;
}

/* Footer - Classic */
.footer {
    background: var(--ink-black);
    color: var(--paper-aged);
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--accent-burgundy),
        var(--accent-burgundy) 2px,
        transparent 2px,
        transparent 8px
    );
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-about {
    flex: 1;
    max-width: 400px;
}

.footer-tagline {
    color: var(--paper-aged);
    opacity: 0.8;
    line-height: 1.9;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.95rem;
    font-style: italic;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--paper-aged);
    text-decoration: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(250, 248, 243, 0.2);
}

.copyright a {
    color: var(--paper-aged);
    font-size: 0.85rem;
    opacity: 0.6;
    font-family: 'Source Serif 4', serif;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.15s; }
.fade-in:nth-child(2) { animation-delay: 0.3s; }
.fade-in:nth-child(3) { animation-delay: 0.45s; }

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.5rem;
    color: var(--ink-black);
    margin-top: 20px;
    margin-bottom: 12px;
    text-align: left;
    font-weight: 600;
}
