:root {
    --bg-dark: #050706;
    --olive-deep: #111a11;
    --olive-mid: #1d2a1b;
    --accent-gold: #d2a75b;
    --accent-green: #86b76a;
    --accent-green-soft: #5c7f4a;
    --text-light: #f7f3e9;
    --text-muted: #a39b8c;
    --border-soft: rgba(255, 255, 255, 0.06);
    --radius-xl: 32px;
    --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.9);
    --container-width: 1180px;
    --transition-fast: 220ms ease-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    scroll-behavior: smooth;
    background: radial-gradient(circle at top, #18231a 0, #050706 50%, #020302 100%);
    color: var(--text-light);
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    overflow-x: hidden;
}

.page-wrapper {
    min-height: 100vh;
    position: relative;
    color: var(--text-light);
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== CUSTOM CURSOR ========== */
.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(134,183,106,0.6);
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    border: 2px solid rgba(134,183,106,0.8);
    transition: width 0.3s ease, height 0.3s ease;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(134,183,106,0.2);
}

/* ========== ZEYTIN PARTICLE EFFECT ========== */
.zeytin-particle {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, var(--accent-green), var(--accent-green-soft));
    pointer-events: none;
    animation: particleFloat 2.5s ease-out forwards;
    box-shadow: 0 0 15px rgba(134,183,106,0.9), 0 0 8px rgba(134,183,106,0.6);
    z-index: 9997;
}

@keyframes particleFloat {
    0% {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(calc(var(--tx) * 0.5), calc(var(--ty) * 0.5)) scale(1.2);
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(0.3);
    }
}

/* ========== SECTIONS ========== */
section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

section:nth-of-type(2n) {
    background: radial-gradient(circle at top, rgba(24,36,25,0.7), rgba(5,7,5,1));
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1000ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.section-header.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
}

.section-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.section-desc {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* ========== BUTTONS ========== */
.btn-primary {
    padding: 14px 28px;
    border-radius: 999px;
    border: none;
    background: radial-gradient(circle at top left, #f4d79b, #86b76a);
    color: #15110c;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 18px 44px rgba(0,0,0,0.85), 0 0 0 1px rgba(0,0,0,0.4), 0 0 30px rgba(134,183,106,0.3);
    transform: translateY(0) translateZ(0);
    transition: all 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255,255,255,0.4), transparent);
    transform: translate(-50%, -50%);
    transition: width 700ms ease-out, height 700ms ease-out;
}

.btn-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-primary span.arrow {
    display: inline-block;
    transform: translateX(0) translateZ(0);
    transition: transform 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-primary:hover span.arrow {
    transform: translateX(8px) translateZ(12px);
    animation: arrowBounce 0.6s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-6px) translateZ(30px) scale(1.05);
    box-shadow: 0 35px 90px rgba(0,0,0,0.95), 0 0 70px rgba(134,183,106,0.8), inset 0 0 40px rgba(255,255,255,0.3);
    filter: brightness(1.15);
    text-decoration: none;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(8px) translateZ(12px); }
    50% { transform: translateX(12px) translateZ(12px); }
}

.btn-ghost {
    border-radius: 999px;
    border: 1px solid rgba(134,183,106,0.4);
    padding: 11px 20px;
    background: rgba(134,183,106,0.05);
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 450ms cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn-ghost::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 999px;
    background: rgba(134,183,106,0.2);
    transform: translate(-50%, -50%);
    transition: width 600ms ease-out, height 600ms ease-out;
}

.btn-ghost:hover::before {
    width: 350px;
    height: 350px;
}

.btn-ghost:hover {
    background: rgba(134,183,106,0.18);
    border-color: rgba(134,183,106,0.9);
    transform: translateY(-4px) translateZ(20px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.9), 0 0 50px rgba(134,183,106,0.6);
    text-decoration: none;
}

.btn-ghost svg {
    width: 16px;
    height: 16px;
    transition: transform 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn-ghost:hover svg {
    transform: translateX(5px);
    animation: arrowBounce 0.6s ease-in-out infinite;
}

/* ========== LINKS ========== */
a {
    text-decoration: none;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 720px) {
    .custom-cursor {
        display: none;
    }
    
    section {
        padding: 80px 0;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 40px;
    }

    .btn-primary,
    .btn-ghost {
        text-decoration: none !important;
    }
}