:root {
    --primary-brown: #8D6E63;
    --accent-gold: #B8A388;
    --cream-white: #F5F5DC;
    --olive-green: #545F4D;
    --text-dark: #2C2C2C;
    --text-light: #5D5D5D;
    --shadow-deep: 0 20px 40px rgba(0,0,0,0.15);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    background-color: var(--cream-white);
    color: var(--text-dark);
    font-family: 'Lato', sans-serif;
    margin: 0;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-brown);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    background: rgba(245, 245, 220, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(141, 110, 99, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 700;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-slow);
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: var(--transition-slow);
}

.nav-links a:hover:after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

/* Hero Section */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--primary-brown);
    color: var(--cream-white);
    overflow: hidden;
}

.hero-img {
    position: absolute;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    mask-image: linear-gradient(to left, black 70%, transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    color: var(--cream-white);
    font-size: 4.5rem;
    line-height: 1.1;
}

/* Sections */
section {
    padding: 120px 0;
}

.section-dark {
    background-color: var(--primary-brown);
    color: var(--cream-white);
}

.section-dark h2 {
    color: var(--cream-white);
}

/* Cards */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.card {
    background: white;
    padding: 40px;
    border: 1px solid rgba(141, 110, 99, 0.1);
    transition: var(--transition-slow);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--accent-gold);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item.left { left: 0; text-align: right; }
.timeline-item.right { left: 50%; }

/* Buttons */
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary-brown);
    color: var(--primary-brown);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition-slow);
}

.btn-outline:hover {
    background: var(--primary-brown);
    color: var(--cream-white);
}

/* Footer */
footer {
    background-color: var(--olive-green);
    color: var(--cream-white);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 245, 220, 0.1);
    padding-top: 40px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 20px;
    display: none;
    z-index: 2000;
    text-align: center;
}

.cookie-btns button, .cookie-btns a {
    margin: 0 10px;
    padding: 8px 20px;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
}

.btn-accept { background: var(--accent-gold); color: white; }
.btn-decline { background: transparent; border: 1px solid white; color: white; }

/* Responsive */
@media (max-width: 1024px) {
    .grid-3 { grid-template-columns: 1fr 1fr; }
    .hero h1 { font-size: 3rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .hero-img { width: 100%; opacity: 0.3; }
    .timeline::after { left: 31px; }
    .timeline-item { width: 100%; padding-left: 70px; text-align: left !important; }
    .timeline-item.right { left: 0; }
}