*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --cream: #faf8f4;
    --warm-white: #f5f2ed;
    --sand: #e8e0d4;
    --stone: #c9bfb0;
    --charcoal: #2a2520;
    --warm-gray: #6b6259;
    --gold: #b8965a;
    --text-soft: #5a5149;
}
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 3.5rem;
    background: rgba(250,248,244,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,150,90,0.15);
}
.nav-logo, .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
}
.nav-logo {
    font-size: 1.35rem;
    color: var(--charcoal);
}
.nav-links, .footer-links {
    display: flex;
    gap: 1.4rem;
    list-style: none;
}
.nav-links a, .footer-links a, .nav-cta, .article-link, .btn-primary {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    text-decoration: none;
}
.nav-links a, .footer-links a { color: var(--warm-gray); }
.nav-links a:hover, .footer-links a:hover, .article-link { color: var(--gold); }
.nav-cta {
    color: var(--charcoal) !important;
    border: 1px solid var(--gold);
    padding: 0.55rem 1.25rem;
}
.hero {
    padding: 0 3.5rem 0;
    background: var(--cream);
}
.hero-inner, .article, .related-inner {
    max-width: 900px;
    margin: 0 auto;
}
.eyebrow, .meta {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.hero-card {
    max-width: 820px;
    background: rgba(250,248,244,0.92);
    padding: 2.75rem;
}
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.1;
    color: var(--charcoal);
}
h1 {
    font-size: clamp(2.55rem, 5vw, 4.7rem);
    margin-bottom: 1.2rem;
}
.dek {
    max-width: 700px;
    color: var(--text-soft);
    font-size: 1.02rem;
}
.article {
    padding: 0 3.5rem;
}
.article p, .article li {
    color: var(--text-soft);
    font-size: 0.98rem;
}
.article p + p { margin-top: 1.1rem; }
.article figure.blog-image {
    margin: 1.5rem 0;
    max-width: 100%;
    overflow: hidden;
}
.article figure.blog-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 2px;
    object-fit: cover;
}
.article figure.blog-image figcaption {
    font-size: 0.78rem;
    color: var(--warm-gray);
    text-align: center;
    margin-top: 0.75rem;
    font-style: italic;
    letter-spacing: 0.02em;
}
.article h2 {
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    margin: 2.5rem 0 0.9rem;
}
.article h3 {
    font-size: 1.55rem;
    margin: 1.8rem 0 0.65rem;
}
.article ul {
    display: grid;
    gap: 0.7rem;
    margin: 1rem 0 1.2rem;
    list-style: none;
}
.article li {
    position: relative;
    padding-left: 1.3rem;
}
.article li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
}
.related {
    padding: 4rem 3.5rem;
    background: var(--warm-white);
    border-top: 1px solid rgba(184,150,90,0.16);
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}
.related-card {
    padding: 1.25rem;
    background: var(--cream);
    border: 1px solid rgba(201,191,176,0.7);
}
.related-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}
.btn-primary {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.95rem 2rem;
    background: var(--charcoal);
    border: 1px solid var(--charcoal);
    color: var(--cream);
}
.btn-primary:hover {
    background: var(--gold);
    border-color: var(--gold);
}
footer {
    background: #1a1612;
    padding: 3rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.footer-logo {
    color: var(--cream);
    font-size: 1.1rem;
}
.footer-copy {
    color: var(--warm-gray);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}
.footer-social {
    display: flex;
    align-items: center;
}
.footer-social a {
    color: var(--warm-gray);
    transition: color 0.2s ease;
}
.footer-social a:hover { color: var(--gold); }
.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ── MOBILE MENU ── */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184,150,90,0.35);
    background: rgba(250,248,244,0.72);
    color: var(--charcoal);
    cursor: pointer;
}

.mobile-menu-toggle span {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease, top 0.2s ease;
}

.mobile-menu-toggle span::before { top: -6px; }
.mobile-menu-toggle span::after { top: 6px; }
nav.nav-open .mobile-menu-toggle span { background: transparent; }
nav.nav-open .mobile-menu-toggle span::before { top: 0; transform: rotate(45deg); }
nav.nav-open .mobile-menu-toggle span::after { top: 0; transform: rotate(-45deg); }

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 1024px) {
    nav {
        flex-wrap: wrap;
        gap: 0.85rem;
        padding: 1rem 1.25rem;
    }
    .nav-logo {
        font-size: clamp(1rem, 4vw, 1.25rem);
        max-width: calc(100% - 60px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .mobile-menu-toggle { display: inline-flex; }
    .nav-links {
        display: none !important;
        flex: 0 0 100%;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 0 0;
        margin-top: 0.25rem;
        border-top: 1px solid rgba(184,150,90,0.18);
    }
    nav.nav-open .nav-links { display: flex !important; }
    .nav-links li { width: 100%; }
    .nav-links a {
        display: block;
        padding: 0.85rem 0;
        line-height: 1.35;
    }
    .nav-cta {
        display: inline-block;
        width: 100%;
        margin-top: 0.4rem;
        text-align: center;
    }
}

@media (max-width: 900px) {
    .nav-logo { font-size: clamp(1rem, 4vw, 1.25rem); }
    .hero { padding: 0 1.5rem 0; }
    .hero-card { padding: 2rem; }
    .article, .related { padding: 0 1.5rem; }
    .related-grid { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; }
}
