@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg:      #0d0d0d;
    --surface: #161616;
    --text:    #f0ede8;
    --muted:   #888888;
    --border:  rgba(255, 255, 255, 0.08);
    --accent:  #f0ede8;
}

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

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: "Inter", sans-serif;
    margin: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Syne", sans-serif;
}

/* ====== NAV ====== */
.nav-bar {
    width: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo-img {
    height: 38px;
    width: auto;
}

.nav-content nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-content nav a {
    color: var(--muted);
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 7px 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.18s;
}

.nav-content nav a:hover {
    color: var(--text);
}

.nav-content nav a.nav-active {
    color: var(--text);
    font-weight: 600;
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: transform 0.25s, opacity 0.25s;
}

.nav-hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger--open span:nth-child(2) { opacity: 0; }
.nav-hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 640px) {
    .nav-hamburger { display: flex; }

    .nav-content { padding: 0 20px; }

    .nav-content nav {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        padding: 8px 16px 16px;
        z-index: 100;
    }

    .nav-content nav.nav-open { display: flex; }

    .nav-content nav a {
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* ====== HERO / PROFILE ====== */
.profile {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    text-align: center;
    padding: 100px 24px 110px;
    position: relative;
    overflow: hidden;
}

.profile::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 0%, transparent 68%);
    pointer-events: none;
}

.profile .profile-picture {
    margin-bottom: 0;
    padding-top: 0;
    position: relative;
    z-index: 1;
}

.profile-picture.blank {
    border-radius: 50%;
    width: 138px;
    height: 138px;
    background: var(--surface);
    margin: 0 auto 28px;
    border: 1px solid var(--border);
}

.profile h1 {
    font-family: "Syne", sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--text);
    margin: 0 0 12px;
    letter-spacing: -1px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.profile-subtitle {
    font-size: 15px;
    color: var(--muted);
    font-weight: 400;
    margin: 0 0 36px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-cta-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.profile-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 0;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.profile-cta:hover {
    background: var(--text);
    border-color: var(--text);
    color: var(--bg);
}

/* ====== CONTENT ====== */
.content {
    max-width: 860px;
    margin: 0 auto;
    padding: 100px 24px 100px;
}

.section-heading {
    font-family: "Syne", sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin: 0 0 32px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--muted);
    margin-bottom: 18px;
}

/* ====== MARQUEE ====== */
.marquee-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    white-space: nowrap;
    padding: 18px 0;
    background: var(--surface);
    margin: 0 0 0 0;
}

.marquee-inner {
    display: inline-block;
    animation: marquee-scroll 28s linear infinite;
}

.marquee-inner span {
    font-family: "Syne", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding-right: 60px;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ====== EXPLORE / PAGE CARDS ====== */
.explore-section { margin-top: 52px; }

.page-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    border: 1px solid var(--border);
}

.page-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--surface);
    border: none;
    border-radius: 0;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, background 0.2s;
    outline: 1px solid var(--border);
}

.page-card:hover {
    background: #1e1e1e;
    outline-color: rgba(255, 255, 255, 0.2);
}

.page-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.page-card-text h3 {
    font-family: "Syne", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.page-card-text p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}

/* ====== FOOTER ====== */
.pg-foot {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 60px 32px 40px;
    margin-top: 0;
}

.pg-foot-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.pg-foot-col-label {
    font-family: "Syne", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 16px;
}

.pg-foot-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pg-foot-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.04em;
    transition: color 0.18s;
}

.pg-foot-links a:hover {
    color: var(--text);
}

.pg-foot-contact-email {
    color: var(--muted);
    font-size: 14px;
    letter-spacing: 0.04em;
}

.pg-foot-brand {
    max-width: 1280px;
    margin: 40px auto 0;
    text-align: center;
}

.pg-foot-brand-name {
    font-family: "Syne", sans-serif;
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1;
    user-select: none;
}

.pg-foot-copy {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 0.06em;
    text-align: center;
    margin: 20px 0 0;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* ====== INFINITE SCROLL RIVER ====== */
.river-section {
    border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
    .profile { padding: 72px 20px 80px; }
    .profile h1 { font-size: 36px; }
    .profile-picture.blank { width: 110px; height: 110px; }
    .section-heading { font-size: 22px; }
    .about-section p { font-size: 15px; }
    .page-cards-grid { grid-template-columns: 1fr; }
    .pg-foot-inner { grid-template-columns: 1fr; gap: 32px; }
}
