@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary: #0f0f0f;
    --accent: #bc9c63;
    --accent-light: #e0d0b0;
    --text: #2c2c2c;
    --text-muted: #7a7a7a;
    --bg: #fcfbf7;
    --white: #ffffff;
    --border: rgba(188, 156, 99, 0.2);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navigation - Aesthetic Glassmorphism */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    background: rgba(252, 251, 247, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 2rem;
    font-weight: 600;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-links a:hover {
    color: var(--accent);
    opacity: 1;
}

/* Hero - More Compact & Dramatic */
.hero {
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--primary);
    margin-bottom: 2rem;
}

.hero-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    filter: sepia(30%) brightness(0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 750px;
}

.hero-subtitle {
    display: block;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.8rem;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
}

/* Tighter Sections */
section {
    padding: 2.2rem 0;
}

.section-tag {
    display: block;
    text-align: center;
    color: var(--accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: var(--accent);
    margin: 0.6rem auto 0;
}

.intro-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    text-align: center;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 1.5rem;
}

/* Aesthetic Dividers */
.divider {
    height: 1px;
    width: 150px;
    background: var(--border);
    margin: 0.5rem auto;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: none;
    border-radius: 2px;
}

.emotional-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-placeholder:hover .emotional-img {
    transform: scale(1.05);
}

/* Timeline - Minimalist & Compact */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 2.5rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
}

.timeline-date {
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Cards - Elegant Subtle shadow */
.card-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0 15px 40px rgba(188, 156, 99, 0.08);
    transform: translateY(-5px);
}

.card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    display: block;
}

.card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Quote - Sober and Modern */
.quote-section {
    background: #111;
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
}

.quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
footer {
    padding: 3rem 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-nav {
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.75rem;
    text-decoration: none;
    margin: 0 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .card-group {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}