/* =============================================
   Closiq – Shared Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400&family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
    --nav-bg: #7297C5;
    --nav-text: #000;
    --footer-bg: #000;
    --footer-text: #fff;
    --body-bg: #fff;
    --text-primary: #000;
    --text-secondary: #444;
    --text-muted: #777;
    --border: #e0e0e0;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'EB Garamond', serif;
    --font-ui: 'Inter', sans-serif;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
    background: var(--body-bg);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ---- NAV ---- */
.nav {
    background: var(--nav-bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.45rem;
    font-weight: 300;
    color: var(--nav-text);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.nav-link {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--nav-text);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.nav-link:hover { opacity: 1; }

.nav-cta {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    text-decoration: none;
    padding: 0.45rem 1.1rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: #222; }

.nav-right { display: flex; align-items: center; }

/* ---- FOOTER ---- */
.footer {
    background: var(--footer-bg);
    color: var(--footer-text);
    margin-top: auto;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-copy {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    opacity: 0.6;
    letter-spacing: 0.03em;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
    letter-spacing: 0.03em;
    transition: opacity 0.2s;
}
.footer-link:hover { opacity: 1; }

/* ---- MAIN CONTENT WRAPPER ---- */
main { flex: 1; }

/* ---- UTILITY ---- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 6rem 0; }
.section--sm { padding: 4rem 0; }
.section--lg { padding: 9rem 0; }

.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 0;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-primary);
}

.eyebrow {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    display: block;
}

.btn {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 1.8rem;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    cursor: pointer;
    border: none;
}

.btn-dark {
    background: #000;
    color: #fff;
}
.btn-dark:hover { background: #222; }

.btn-outline {
    background: transparent;
    color: #000;
    border: 1.5px solid #000;
}
.btn-outline:hover { background: #000; color: #fff; }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .nav-left { gap: 1.2rem; }
    .nav-link { display: none; }
    .section { padding: 4rem 0; }
    .section--lg { padding: 5rem 0; }
}