/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── Variables ── */
:root {
    --bg:           #FAF7F2;
    --ink:          #1A1510;
    --ink-soft:     #6B5E52;
    --ink-muted:    #A89888;
    --rule:         #E2D9CE;
    --surface:      #F0EBE3;
    --accent:       #C4622D;
    --accent-warm:  #EDD8C8;
    --dark:         #1A1510;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ── Utilities ── */
.display { font-family: 'Fraunces', serif; font-optical-sizing: auto; }

.eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ── Nav ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--rule);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    font-family: 'Fraunces', serif;
    font-size: 19px;
    font-weight: 400;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.01em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 13px;
    font-weight: 400;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.15s;
}
.nav-link:hover { color: var(--ink); }

.nav-cta {
    font-size: 13px;
    font-weight: 500;
    color: var(--bg);
    background: var(--ink);
    padding: 9px 22px;
    text-decoration: none;
    transition: opacity 0.15s;
    letter-spacing: 0.01em;
}
.nav-cta:hover { opacity: 0.82; }

/* ── Page Header (interior pages) ── */
.page-header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 48px 48px;
    text-align: center;
}

.page-header .eyebrow { margin-bottom: 16px; }

.page-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin-bottom: 16px;
}

.page-title em { font-style: italic; color: var(--accent); }

.page-subtitle {
    font-size: 16px;
    color: var(--ink-soft);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Footer ── */
footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 56px 48px 36px;
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 52px;
}

.footer-brand {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
}

.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.3); }

.footer-cols { display: flex; gap: 72px; }

.footer-col h4 {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255,255,255,0.48);
    text-decoration: none;
    transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

.footer-badges { display: flex; gap: 10px; }

.footer-badge {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.28);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 4px 10px;
    letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .nav-inner { padding: 0 24px; }
    .page-header { padding: 56px 24px 36px; }
    footer { padding-left: 24px; padding-right: 24px; }
    .footer-top { flex-direction: column; gap: 36px; }
    .footer-cols { gap: 40px; }
}
