* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg: #110d0b;
    --bg-soft: #1a1411;
    --card: #f3eee6;
    --ink: #241915;
    --muted: #6b5a4f;
    --accent: #b1875a;
    --accent-soft: #e2cbb0;
    --border: #d6cbbf;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', 'Times New Roman', serif;
    --radius-lg: 18px;
    --radius-md: 12px;
    --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.5);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: radial-gradient(circle at top, #1f1812 0, #110d0b 55%);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* NAVIGATION */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 18px 0;
    background: rgba(17, 13, 11, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(22px);
}

.nav-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 13px;
    color: #fdf7ef;
}

.nav-links {
    display: flex;
    gap: 26px;
    font-size: 13px;
    color: #f5ede4;
}

.nav-links a {
    position: relative;
    padding-bottom: 4px;
    opacity: 0.78;
    transition: opacity 0.18s var(--ease);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    transform-origin: center;
    transform: scaleX(0);
    background: linear-gradient(90deg, #f3e3c2, #b1875a);
    transition: transform 0.25s var(--ease);
}

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

.nav-links a.active::after,
.nav-links a:hover::after {
    transform: scaleX(1);
}

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

.nav-toggle span {
    width: 18px;
    height: 2px;
    background: #fdf7ef;
}

/* HERO */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    margin-top: 64px;
}

.hero-background {
    position: absolute;
    inset: 0;
}

.hero-background img {
    filter: grayscale(0.15) brightness(0.7);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(250, 244, 234, 0.18), transparent 55%),
                linear-gradient(145deg, rgba(8, 6, 5, 0.95), rgba(8, 6, 5, 0.8));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    text-align: left;
    color: #fdf7ef;
}

.hero-eyebrow {
    font-family: var(--font-serif);
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0.7;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(34px, 4.6vw, 46px);
    line-height: 1.08;
    margin-bottom: 18px;
}

.hero-text {
    font-size: 15px;
    max-width: 440px;
    color: rgba(253, 247, 239, 0.82);
    margin-bottom: 24px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid rgba(243, 227, 194, 0.7);
    background: rgba(8, 6, 5, 0.6);
    color: #fdf7ef;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    gap: 8px;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.hero-cta:hover {
    background: rgba(243, 227, 194, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

/* SECTIONS */
.section {
    padding: 80px 24px;
}

.section-inner {
    max-width: 1120px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-family: var(--font-serif);
    font-size: 26px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: #f3eee6;
}

.section-header p {
    font-size: 15px;
    color: var(--muted);
}

/* Intro split */
.intro {
    background: radial-gradient(circle at top, #1f1812 0, #110d0b 60%);
}

.intro-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.intro-text {
    color: #f3eee6;
}

.intro-text h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 14px;
}

.intro-text p {
    font-size: 15px;
    color: rgba(243, 238, 230, 0.86);
    margin-bottom: 10px;
}

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* Cards */
.experiences-preview {
    background: var(--card);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fbf7f0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.card-image {
    height: 190px;
}

.card-body {
    padding: 18px 18px 20px;
}

.card-body h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    margin-bottom: 8px;
}

.card-body p {
    font-size: 14px;
    color: var(--muted);
}

/* Strip */
.strip {
    background: #1a1411;
    color: rgba(243, 238, 230, 0.9);
}

.strip-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    line-height: 1.8;
}

.strip-inner a {
    text-decoration: underline;
}

/* Highlight split */
.highlight {
    background: var(--card);
}

.highlight-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.highlight-text h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    margin-bottom: 12px;
}

.highlight-text p {
    font-size: 15px;
    color: var(--muted);
}

.highlight-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

/* FOOTER */
.footer {
    padding: 40px 24px 32px;
    background: #0c0907;
    color: rgba(246, 241, 232, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto 18px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.footer h3,
.footer h4 {
    font-family: var(--font-serif);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 10px;
}

.footer p,
.footer a {
    font-size: 13px;
    color: rgba(246, 241, 232, 0.9);
}

.footer a:hover {
    text-decoration: underline;
}

.footer-copy {
    max-width: 1120px;
    margin: 0 auto;
    font-size: 12px;
    color: rgba(246, 241, 232, 0.6);
}

/* ANIMATIONS */
[data-animate] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .nav-inner {
        padding: 0 18px;
    }

    .nav-links {
        position: fixed;
        inset: 60px 0 auto 0;
        background: rgba(17, 13, 11, 0.96);
        flex-direction: column;
        padding: 12px 24px 18px;
        transform: translateY(-110%);
        transition: transform 0.25s var(--ease);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .section-inner,
    .intro-layout,
    .highlight-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .card-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero {
        padding-top: 20px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 64px 18px;
    }

    .hero-content {
        max-width: 100%;
    }
}
