:root {
    --color-bg: #f3ebdd;
    --color-surface: #fbf7f0;
    --color-surface-strong: #efe3d0;
    --color-ink: #2b2623;
    --color-muted: #63574f;
    --color-accent: #6e2f2f;
    --color-accent-strong: #542222;
    --color-leaf: #5e6b52;
    --color-gold: #b8924a;
    --color-border: rgba(43, 38, 35, 0.12);
    --shadow-soft: 0 20px 50px rgba(43, 38, 35, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    color: var(--color-ink);
    background:
        radial-gradient(circle at top left, rgba(184, 146, 74, 0.14), transparent 32%),
        linear-gradient(180deg, #f8f1e7 0%, var(--color-bg) 100%);
    line-height: 1.65;
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(243, 235, 221, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(43, 38, 35, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    max-width: min(420px, 100%);
}

.site-brand__eyebrow,
.section-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-leaf);
}

.site-brand__logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 84px;
    object-fit: contain;
}

.site-nav__list,
.footer-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav__list a,
.footer-links a {
    color: var(--color-muted);
}

.site-nav__list a:hover,
.footer-links a:hover,
.text-link:hover {
    color: var(--color-accent);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    background: var(--color-accent);
    color: #fff;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
    background: var(--color-accent-strong);
    transform: translateY(-1px);
}

.button--ghost {
    background: transparent;
    color: var(--color-accent);
    border: 1px solid rgba(110, 47, 47, 0.22);
}

.button--ghost:hover {
    background: rgba(110, 47, 47, 0.08);
}

.site-main {
    overflow: hidden;
}

.hero,
.section,
.page-hero {
    padding: 5rem 0;
}

.hero__grid,
.split,
.site-footer__grid {
    display: grid;
    gap: 2rem;
}

.hero__grid,
.split {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: center;
}

.hero h1,
.section h2,
.page-hero h1,
.post-card h2 {
    margin: 0 0 1rem;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.02em;
}

.hero h1 {
    font-size: clamp(3.2rem, 7vw, 5.6rem);
}

.section h2,
.page-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.hero__lead,
.section-heading p,
.rich-text p,
.page-content p {
    font-size: 1.12rem;
    color: var(--color-muted);
}

.hero__actions,
.cta-panel__actions,
.section-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.8rem;
}

.hero__card,
.card,
.cta-panel,
.post-card {
    background: rgba(251, 247, 240, 0.78);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.hero__card {
    padding: 2rem;
}

.hero__card-eyebrow {
    margin: 0 0 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
}

.hero__card-text,
.card p {
    margin: 0;
    color: var(--color-muted);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 2rem;
}

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

.cards--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    padding: 1.7rem;
}

.card h3 {
    margin: 0 0 0.7rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.9rem;
}

.section--accent {
    background: rgba(239, 227, 208, 0.5);
}

.section--dark {
    background:
        linear-gradient(135deg, rgba(43, 38, 35, 0.95), rgba(61, 30, 30, 0.96)),
        var(--color-accent-strong);
    color: #f7f0e8;
}

.section--dark .section-eyebrow,
.section--dark .rich-text p,
.text-link--light {
    color: rgba(247, 240, 232, 0.8);
}

.split--inverse {
    grid-template-columns: 0.95fr 1.25fr;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    color: var(--color-accent);
    font-weight: 700;
}

.cta-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    padding: 2rem;
}

.page-content,
.post-list {
    max-width: 860px;
}

.album-hero__grid,
.album-grid {
    display: grid;
    gap: 1.5rem;
}

.album-hero__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
}

.album-hero__card,
.album-card {
    background: rgba(251, 247, 240, 0.84);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.album-hero__card {
    padding: 2rem;
}

.album-heading {
    max-width: 860px;
}

.album-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.album-card {
    overflow: hidden;
}

.album-card__media {
    background: linear-gradient(180deg, rgba(110, 47, 47, 0.1), rgba(184, 146, 74, 0.08));
}

.album-card__media img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.album-card__body {
    padding: 1.6rem;
}

.album-card h3 {
    margin: 0 0 0.85rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.album-card p {
    margin: 0 0 1rem;
    color: var(--color-muted);
}

.album-card blockquote {
    margin: 0;
    padding: 1.2rem 1.25rem;
    border-left: 3px solid rgba(110, 47, 47, 0.35);
    background: rgba(239, 227, 208, 0.55);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.45rem;
    line-height: 1.2;
    color: var(--color-accent-strong);
}

.album-card .text-link {
    margin-top: 1.2rem;
}

.page-content h2,
.page-content h3 {
    font-family: "Cormorant Garamond", serif;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.page-content ul {
    padding-left: 1.2rem;
    color: var(--color-muted);
}

.post-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.site-footer {
    padding: 3rem 0 1.4rem;
    background: #201a18;
    color: rgba(255, 250, 244, 0.8);
}

.site-footer__grid {
    grid-template-columns: 1.1fr 0.8fr 0.9fr;
    align-items: start;
}

.site-footer__title {
    margin: 0 0 0.7rem;
    font-weight: 700;
    color: #fff;
}

.site-footer__logo {
    display: block;
    width: min(100%, 360px);
    height: auto;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.site-footer__text,
.site-footer__bottom {
    color: rgba(255, 250, 244, 0.72);
}

.site-footer__bottom {
    padding-top: 1.5rem;
    margin-top: 1.5rem;
    border-top: 1px solid rgba(255, 250, 244, 0.12);
    font-size: 0.95rem;
}

@media (max-width: 960px) {
    .site-header__inner,
    .hero__grid,
    .split,
    .cta-panel,
    .site-footer__grid,
    .album-hero__grid {
        grid-template-columns: 1fr;
    }

    .site-header__inner {
        display: grid;
    }

    .site-brand {
        max-width: 320px;
    }

    .site-nav__list {
        gap: 0.85rem;
    }

    .cards--three,
    .album-grid {
        grid-template-columns: 1fr;
    }

    .hero,
    .section,
    .page-hero {
        padding: 4rem 0;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(var(--container), calc(100% - 1.25rem));
    }

    .site-header__cta {
        width: 100%;
    }

    .site-brand {
        max-width: 100%;
    }

    .button,
    .button--ghost {
        width: 100%;
    }
}
