@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;900&family=Playfair+Display:ital,wght@1,800&display=swap');

:root {
    --cream:   #f8f4ee;
    --sage:    #7a8c6a;
    --rose:    #a87880;
    --amber:   #c8862a;
    --blue:    #9aafc4;
    --ink:     #1a1a1a;
    --ink-mid: #555;
    --ink-lt:  #999;
    --white:   #ffffff;
    --max-w:   1100px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
html { background: var(--sage); }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 48px; }

/* ─── HEADER ─── */
.site-header {
    background: var(--cream);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }

.logo-link {
    background: transparent;
    padding: 4px 8px;
    display: flex;
    align-items: center;
}
.logo { height: 216px; width: auto; }

/* ─── NAV ─── */
.main-nav { display: flex; gap: 6px; align-items: center; }

.nav-pill {
    color: var(--ink);
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid rgba(0,0,0,0.18);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.nav-pill:hover, .nav-pill.active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

/* ─── HAMBURGER ─── */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
    background: var(--sage);
    text-align: center;
    padding: 0 48px 70px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 240px;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 70px;
    background: var(--cream);
    clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: clamp(30px, 4vw, 52px);
    letter-spacing: -0.02em;
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* ─── EYEBROW LABELS ─── */
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}
.eyebrow-rose {
    background: rgba(168,120,128,0.1);
    border: 1px solid rgba(168,120,128,0.28);
    color: var(--rose);
}
.eyebrow-white {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.28);
    color: rgba(255,255,255,0.9);
}
.eyebrow-amber {
    background: rgba(200,134,42,0.1);
    border: 1px solid rgba(200,134,42,0.28);
    color: var(--amber);
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--sage);
    padding: 0 48px 52px;
    text-align: center;
}
.site-footer .footer-icon { height: 300px; width: auto; margin: 0 auto 28px; }

.footer-nav {
    display: flex;
    gap: 36px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.footer-nav a {
    color: rgba(255,255,255,0.95);
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }

.footer-meta {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}
.footer-meta a {
    color: rgba(255,255,255,0.9);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-meta span {
    color: rgba(255,255,255,0.75);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
}
.footer-meta a:hover { color: var(--white); }

.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}
.footer-social a {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.2s;
}
.footer-social a:hover { color: var(--white); }
.footer-social svg { flex-shrink: 0; }

.footer-copy {
    color: rgba(255,255,255,0.55);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

/* ─── MOBILE ─── */
@media (max-width: 820px) {
    body { font-size: 16px; background: var(--sage); }
    .container { padding: 0 20px; }
    .logo { height: 90px; }
    .nav-toggle { display: flex; }
    .site-header { position: relative; }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--cream);
        border-top: 1px solid rgba(0,0,0,0.08);
        padding: 14px 20px 20px;
        gap: 8px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        z-index: 200;
    }
    .main-nav.open { display: flex; }
    .nav-pill { text-align: center; }
    .page-hero { padding: 0 20px 70px; min-height: 220px; }
    .site-footer { padding: 12px 20px 48px; background: var(--sage); }
    .site-footer img { height: 130px; margin-bottom: 16px; }
    .footer-nav { margin-bottom: 12px; gap: 20px; }
    .footer-meta { margin-bottom: 14px; }
    .footer-social { margin-bottom: 10px; }
}
