:root {
    --ink: #1a1712;
    --muted: #5e5347;
    --sand: #f3ede4;
    --cream: #faf7f2;
    --olive: #5f6f52;
    --terracotta: #c26d3b;
    --mist: rgba(255, 255, 255, 0.72);
    --border: rgba(26, 23, 18, 0.12);
}

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

body {
    font-family: "Manrope", "Helvetica Neue", sans-serif;
    color: var(--ink);
    background:
        radial-gradient(900px 600px at 12% 12%, rgba(194, 109, 59, 0.18), transparent 60%),
        radial-gradient(700px 500px at 92% 10%, rgba(95, 111, 82, 0.2), transparent 55%),
        linear-gradient(145deg, var(--cream), var(--sand));
    min-height: 100vh;
    padding: 2.5rem 1.5rem 4rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.page {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    gap: 0.75rem;
}

.nav a {
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--mist);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(26, 23, 18, 0.12);
}

.hero {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
    padding: 2.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    box-shadow: 0 28px 60px rgba(26, 23, 18, 0.15);
    animation: fadeIn 0.8s ease both;
}

.hero h1 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero p {
    color: var(--muted);
    line-height: 1.7;
}

.hero-meta {
    display: grid;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--muted);
}

.hero-meta span {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    background: rgba(95, 111, 82, 0.15);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section {
    display: grid;
    gap: 1.5rem;
}

.section-title {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section-lead {
    color: var(--muted);
    max-width: 720px;
    line-height: 1.7;
}

.cards {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    padding: 1.5rem;
    border-radius: 18px;
    background: var(--mist);
    border: 1px solid var(--border);
    box-shadow: 0 18px 30px rgba(26, 23, 18, 0.1);
    animation: riseIn 0.8s ease both;
}

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

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card ul {
    list-style: none;
    display: grid;
    gap: 0.45rem;
    color: var(--muted);
}

.card ul li::before {
    content: "•";
    color: var(--terracotta);
    margin-right: 0.5rem;
}

.grid-2 {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.quote-block {
    padding: 1.5rem 2rem;
    border-left: 4px solid var(--terracotta);
    background: rgba(194, 109, 59, 0.08);
    border-radius: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.outline {
    display: grid;
    gap: 1rem;
}

.outline-item {
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--border);
}

.outline-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.outline-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 26px rgba(26, 23, 18, 0.12);
}

.outline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.outline-item p {
    color: var(--muted);
    line-height: 1.6;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pill {
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(95, 111, 82, 0.15);
    color: var(--muted);
    font-size: 0.9rem;
}

.cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(95, 111, 82, 0.2), rgba(194, 109, 59, 0.15));
    border: 1px solid var(--border);
}

.cta a {
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    background: var(--olive);
    color: #fff;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.part-page {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.part-hero {
    padding: 2.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    box-shadow: 0 28px 60px rgba(26, 23, 18, 0.15);
}

.part-hero h1 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.part-hero p {
    color: var(--muted);
    line-height: 1.7;
    max-width: 760px;
}

.part-section {
    display: grid;
    gap: 1rem;
    padding: 1.8rem;
    border-radius: 18px;
    background: var(--mist);
    border: 1px solid var(--border);
}

.part-section h2 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-size: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.part-section p {
    color: var(--muted);
    line-height: 1.7;
}

.list {
    display: grid;
    gap: 0.55rem;
    color: var(--muted);
}

.list li::before {
    content: "•";
    color: var(--terracotta);
    margin-right: 0.5rem;
}

.list li {
    list-style: none;
    line-height: 1.7;
}

.highlight {
    padding: 1.3rem 1.6rem;
    border-left: 4px solid var(--terracotta);
    background: rgba(194, 109, 59, 0.1);
    border-radius: 16px;
    line-height: 1.7;
}

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

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

@media (max-width: 720px) {
    .nav {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }

    .hero {
        padding: 2rem 1.5rem;
    }

    .cta {
        align-items: stretch;
    }

    .cta a {
        text-align: center;
    }
}

@media (max-width: 700px) {
    .part-hero {
        padding: 2rem 1.5rem;
    }
}
