:root {
    /* Color Palette */
    --color-primary: #89BDAC;
    --color-primary-soft: rgba(137, 189, 172, 0.1);
    --color-secondary: #5D4037;
    --color-secondary-soft: rgba(93, 64, 55, 0.1);
    --color-accent: #D4AF37;
    --color-background: #F9F7F2;
    --color-surface: #FFFFFF;
    --color-text: #2C1E1A;
    --color-text-muted: #5D4037CC;

    /* Typography */
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-main);
    transition: var(--transition-smooth);
}

/* Base Layout Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section-padding {
    padding: var(--space-xl) 0;
}

/* Custom Utilities */
.gradient-text {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(137, 189, 172, 0.3);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: white;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(93, 64, 55, 0.3);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade {
    animation: fadeIn 1s forwards;
}

/* ── HEADER ───────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    background: rgba(249, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(93, 64, 55, 0.1);
    display: flex;
    align-items: center;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: 0.02em;
    background: none !important;
    -webkit-text-fill-color: inherit !important;
}

.nav {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
}

/* ── MAIN CONTENT ─────────────────────────────────────────── */
.main-content {
    padding-top: 64px;
}

/* ── WELCOME SECTION ──────────────────────────────────────── */
.welcome-section {
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--color-background);
    padding: 80px 24px;
}

.welcome-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    color: var(--color-secondary);
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.welcome-subtitle {
    font-size: 18px;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    font-weight: 400;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 32px 24px;
    font-size: 13px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.6);
}