/* ══════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: #141212;
    color: #FFFFFF;
    font-family: 'Source Sans 3', 'Source Sans Pro', system-ui, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 72px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }
h1, h2, h3, h4, h5 {
    font-family: 'EB Garamond', Georgia, serif;
    font-weight: 400;
    color: #FFFFFF;
}

/* ══════════════════════════════════════════
   LAYOUT
   ══════════════════════════════════════════ */
.container {
    max-width: 1432px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ══════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════ */
h1 { font-size: clamp(40px, 5vw, 72px); line-height: 1.1; letter-spacing: -2.88px; }
h2 { font-size: 54px; line-height: 63px; letter-spacing: -2.16px; }
h3 { font-size: 32px; line-height: 140%; letter-spacing: -0.64px; }
h4 { font-size: 28px; line-height: 36px; letter-spacing: -0.64px; }
.text-dark { color: #E0E0E0; }
.text-white { color: #FFFFFF; }
.text-primary { color: #141212; }
.text-center { text-align: center; }
.d-none { display: none; }
.fs14 { font-size: 14px; line-height: 20px; }
.fs24 { font-size: 24px; line-height: 32px; }
.fw-semibold { font-weight: 600; }

/* ══════════════════════════════════════════
   BUTTONS & LINKS
   ══════════════════════════════════════════ */
.primaryBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.04);
    color: #FFF;
    font-family: 'Source Sans 3', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    height: 44px;
    transition: all 0.2s;
    white-space: nowrap;
    text-decoration: none;
}
.primaryBtn:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-divider {
    color: #555;
    cursor: default;
    user-select: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE TYPOGRAPHY
   ══════════════════════════════════════════ */
@media (max-width: 768px) {
    body { padding-top: 48px; }
    h1 { font-size: 45px; line-height: 50px; }
    h2 { font-size: 38px; line-height: 45px; }
    h3 { font-size: 28px; }
    h4 { font-size: 24px; line-height: 32px; }
    .fs24 { font-size: 18px; line-height: 28px; }
}
