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

:root {
    --black: #0a0a0a;
    --white: #f4f1ec;
    --warm: #c8a97e;
    --grey: #888880;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 300;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.15) 0%,
        rgba(10, 10, 10, 0.55) 100%
    );
}

.hero-text {
    position: absolute;
    bottom: 12vh;
    left: 6vw;
}

.hero-text h1 {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(2.5rem, 6vw, 5rem);
    letter-spacing: 0.04em;
    color: var(--white);
    line-height: 1;
}

.hero-text .tagline {
    margin-top: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 300;
    font-size: clamp(1rem, 2vw, 1.4rem);
    color: var(--warm);
    letter-spacing: 0.08em;
}

.scroll-hint {
    position: absolute;
    bottom: 3vh;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    opacity: 0.4;
    font-size: 1.2rem;
    animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── INTRO ─── */
.intro {
    padding: 12vh 6vw;
    max-width: 900px;
    margin: 0 auto;
}

.intro p {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.7rem);
    font-weight: 300;
    line-height: 1.8;
    color: var(--white);
    opacity: 0.88;
}

/* ─── ENTRY POINTS ─── */
.entry-points {
    display: flex;
    gap: 1px;
    background-color: #1a1a1a;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
}

.entry {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 5vh 4vw;
    text-decoration: none;
    background-color: var(--black);
    transition: background-color 0.3s ease;
    gap: 0.4rem;
}

.entry:hover {
    background-color: #111111;
}

.entry-label {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.03em;
}

.entry-sub {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--grey);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.entry:hover .entry-label {
    color: var(--warm);
    transition: color 0.3s ease;
}

/* ─── FOOTER ─── */
footer {
    padding: 4vh 6vw;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--grey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


/* ─── NAV ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 6vw;
    background: linear-gradient(to bottom, rgba(10,10,10,0.7) 0%, transparent 100%);
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--white);
    text-decoration: none;
}

.nav-links a {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 1;
}