:root {
    /* Core palette - Desert oasis meets luxury */
    --cream: #F7F4EF;
    --cream-dark: #EDE8DF;
    --charcoal: #1A1A1A;
    --charcoal-soft: #2D2D2D;
    --sage: #4A6741;
    --sage-light: #6B8B5E;
    --sage-pale: #A8C4A0;
    --terracotta: #C4785A;
    --terracotta-dark: #A35D42;
    --gold: #B8936A;
    --gold-light: #D4B896;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Manrope', -apple-system, sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--charcoal);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
}

/* Grain texture overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    z-index: 1000;
}

/* Geometric accents */
.geometric-accent {
    position: fixed;
    pointer-events: none;
    z-index: 0;
}

.accent-1 {
    top: 10%;
    right: -5%;
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    border: 1px solid var(--sage-pale);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.accent-2 {
    bottom: 15%;
    left: -10%;
    width: 30vw;
    height: 30vw;
    max-width: 350px;
    max-height: 350px;
    background: linear-gradient(135deg, var(--gold-light) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 25s ease-in-out infinite reverse;
}

.accent-3 {
    top: 50%;
    right: 20%;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, var(--sage), transparent);
    opacity: 0.2;
    transform: rotate(30deg);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(2deg); }
    66% { transform: translate(-10px, 15px) rotate(-1deg); }
}

/* Header */
.header {
    padding: var(--space-md) var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    animation: fadeDown 1s ease-out;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--charcoal);
}

.logo-divider {
    width: 1px;
    height: 24px;
    background: var(--gold);
}

.logo-subtext {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal-soft);
}

.location {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--charcoal-soft);
    letter-spacing: 0.05em;
}

.location-icon {
    width: 16px;
    height: 16px;
    color: var(--terracotta);
}

/* Main content */
.main {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    padding: var(--space-lg) var(--space-lg) var(--space-xl);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 5;
}

.content {
    animation: fadeUp 1s ease-out 0.2s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: var(--cream-dark);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage);
    margin-bottom: var(--space-md);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.headline {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: var(--space-md);
    color: var(--charcoal);
}

.headline-line {
    display: block;
}

.headline-line.accent {
    color: var(--sage);
    font-style: italic;
}

.description {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--charcoal-soft);
    font-weight: 300;
    max-width: 480px;
    margin-bottom: var(--space-lg);
}

/* Contact Block */
.contact-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal-soft);
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--charcoal);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1.5px solid var(--charcoal);
}

.contact-email:hover {
    border-color: var(--sage-pale);
    box-shadow: 0 4px 25px rgba(74, 103, 65, 0.1);
    color: var(--sage);
}

.email-icon {
    width: 20px;
    height: 20px;
    color: var(--terracotta);
    flex-shrink: 0;
}

/* Visual section */
.visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeUp 1s ease-out 0.4s both;
}

.visual-frame {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 3/4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-inner {
    width: 85%;
    height: 85%;
    background: linear-gradient(165deg, var(--cream-dark) 0%, var(--cream) 100%);
    border-radius: 200px 200px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

.visual-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, var(--sage-pale) 0%, transparent 60%);
    opacity: 0.2;
}

.plant-illustration {
    width: 60%;
    animation: sway 8s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

@keyframes sway {
    0%, 100% { transform: rotate(-1deg); }
    50% { transform: rotate(1deg); }
}

.plant-illustration svg {
    width: 100%;
    height: auto;
}

/* Frame corners */
.frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
}

.corner-tl {
    top: 0;
    left: 0;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 0;
    right: 0;
    border-left: none;
    border-top: none;
}

/* Footer */
.footer {
    padding: var(--space-md) var(--space-lg);
    text-align: center;
    position: relative;
    z-index: 10;
    animation: fadeUp 1s ease-out 0.6s both;
}

.services {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    flex-wrap: wrap;
}

.service-tag {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    color: var(--charcoal-soft);
}

.service-divider {
    color: var(--gold);
    font-size: 0.6rem;
}

.copyright {
    font-size: 0.75rem;
    color: #999;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 968px) {
    .main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .content {
        order: 2;
    }
    
    .visual {
        order: 1;
    }
    
    .description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-block {
        align-items: center;
    }
    
    .visual-frame {
        max-width: 280px;
    }
    
    .headline {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
}

@media (max-width: 600px) {
    :root {
        --space-lg: 1.5rem;
    }
    
    .header {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .contact-email {
        font-size: 0.95rem;
    }
    
    .services {
        flex-direction: column;
        gap: var(--space-xs);
    }
    
    .service-divider {
        display: none;
    }
    
    .accent-1, .accent-2 {
        display: none;
    }
}

/* Selection styling */
::selection {
    background: var(--sage-pale);
    color: var(--charcoal);
}

