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

:root {
    --bg-deep: #06060f;
    --bg-primary: #0a0a18;
    --bg-secondary: #0f0f26;
    --bg-card: rgba(16, 16, 38, 0.65);
    --bg-card-solid: #10102a;
    --gold: #c9a44e;
    --gold-light: #e6cc7a;
    --gold-pale: #f2e2b6;
    --gold-glow: rgba(201, 164, 78, 0.25);
    --rose: #b8657a;
    --rose-light: #d98a9c;
    --cream: #ece3d0;
    --text: #ddd5c8;
    --text-muted: #7e7688;
    --border-subtle: rgba(201, 164, 78, 0.1);
    --border-gold: rgba(201, 164, 78, 0.25);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--bg-deep);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ── Typography ──────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--cream); }

h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

p { max-width: 620px; }

.label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── Layout ──────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
}

section { position: relative; }

/* ── Navigation ──────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 12px 0;
    background: rgba(6, 6, 15, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    position: relative;
    padding-top: 0;
}

.logo-img {
    position: absolute;
    top: -12px;
    left: -8px;
    width: 36px;
    height: 34px;
    object-fit: contain;
    filter: invert(1);
    transform: rotate(6deg);
    pointer-events: none;
    transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-logo:hover .logo-img {
    filter: invert(1) sepia(1) saturate(3) hue-rotate(5deg) brightness(0.9);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: transparent;
    border: 1px solid var(--border-gold);
    color: var(--gold) !important;
    padding: 8px 22px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--bg-deep) !important;
    border-color: var(--gold);
}

.nav-cta::after { display: none !important; }

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-mobile-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--cream);
    transition: all 0.3s ease;
}

/* ── Page Hero ───────────────────────────────── */
.page-hero {
    position: relative;
    padding: 160px 24px 100px;
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 110%, rgba(201, 164, 78, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 50%, rgba(100, 60, 140, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(184, 101, 122, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-primary) 40%, var(--bg-secondary) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero .label { margin-bottom: 16px; }

.page-hero h1 {
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--gold-pale) 50%, var(--cream) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    color: var(--text-muted);
    margin: 0 auto;
    max-width: 540px;
    line-height: 1.7;
}

/* ── Section Shared ──────────────────────────── */
.section-padding { padding: 120px 0; }

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header .label { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 18px; }

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin: 0 auto;
}

/* ── Scroll Animations ───────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Footer ──────────────────────────────────── */
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 64px 0 40px;
    background: var(--bg-deep);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 16px;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer-col ul a {
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-col ul a:hover { color: var(--gold); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 164, 78, 0.06);
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 960px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
    .nav-links { display: none; }
    .nav-mobile-toggle { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(6, 6, 15, 0.95);
        backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border-subtle);
    }

    .page-hero { padding: 120px 20px 70px; }
    h1 { font-size: 2.4rem; }
    .section-padding { padding: 80px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
