@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500&display=swap');

:root {
    --blue: #2E5090;
    --orange: #FF6B35;
    --dark: #0f1923;
    --light: #F7F6F2;
    --mid: #e8e6e0;
    --text: #1A1A1A;
    --muted: #6b7280;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--light);
    color: var(--text);
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 60px;
    background: rgba(247, 246, 242, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--mid);
}

.nav-logo {
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.3em;
    color: var(--blue);
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--blue); font-weight: 600; }

/* ── PAGE HEADER ── */
.page-header {
    padding: 130px 60px 60px;
    background: var(--blue);
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: attr(data-letters);
    position: absolute;
    bottom: -30px; right: 20px;
    font-family: 'Playfair Display', serif;
    font-size: 16em;
    font-weight: 900;
    color: rgba(255,255,255,0.05);
    line-height: 1;
    pointer-events: none;
}

.page-header .section-label { color: rgba(255,255,255,0.55); margin-bottom: 10px; }

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5em, 5vw, 4em);
    font-weight: 900;
    color: white;
    line-height: 1.05;
    letter-spacing: -1px;
}

.page-header h1 span { color: var(--orange); font-style: italic; }

/* ── SECTIONS ── */
section { padding: 80px 60px; }

.section-label {
    font-size: 0.75em;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    color: var(--blue);
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* ── FOOTER ── */
footer {
    background: var(--dark);
    color: rgba(255,255,255,0.4);
    text-align: center;
    padding: 28px;
    font-size: 0.85em;
    letter-spacing: 0.05em;
}

footer span { color: var(--orange); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav { padding: 18px 24px; }
    .nav-links { gap: 20px; }
    .page-header { padding: 100px 24px 50px; }
    section { padding: 50px 24px; }
}
