* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DA764A;
    --secondary-color: #F4A261;
    --accent-color: #E76F51;
    --soft-pink: #F4D1C4;
    --warm-white: #FFF8F5;
    --deep-brown: #8B4513;
    --gradient-sunset: linear-gradient(135deg, #DA764A 0%, #F4A261 50%, #E76F51 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--deep-brown);
    background: var(--warm-white);
    overflow-x: hidden;
}

.organic-shape {
    position: absolute;
    background: rgba(244, 162, 97, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 60% 40% 70% 30%;
    animation: morphing 8s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 200px;
    top: 10%;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 250px;
    height: 180px;
    bottom: 20%;
    left: -80px;
    animation-delay: -4s;
}

.shape-3 {
    width: 180px;
    height: 120px;
    top: 60%;
    right: 20%;
    animation-delay: -2s;
}

@keyframes morphing {
    0%, 100% {
        border-radius: 60% 40% 70% 30%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 30% 70% 40% 60%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 70% 30% 60% 40%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 40% 60% 30% 70%;
        transform: rotate(270deg) scale(1.05);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 80px 0;
    position: relative;
}

.hero-content {
    transform: translateX(-20px);
    animation: slideInLeft 1s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.hero-content {
    opacity: 0;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--deep-brown);
    font-weight: 300;
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 40% 60% 70% 30%;
    background: var(--gradient-sunset);
    animation: floatHero 6s ease-in-out infinite;
}

@keyframes floatHero {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        border-radius: 40% 60% 70% 30%;
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
        border-radius: 60% 40% 30% 70%;
    }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.7s ease;
}

.hero-visual:hover .hero-image {
    transform: scale(1.1);
}

.section {
    padding: 120px 0;
    position: relative;
}

.section-asymmetric {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.section-asymmetric:nth-child(even) {
    grid-template-columns: 3fr 2fr;
    direction: rtl;
}

.section-asymmetric:nth-child(even) > * {
    direction: ltr;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 30% 70% 40% 60%;
    background: var(--gradient-sunset);
    transition: all 0.5s ease;
}

.image-container:hover {
    border-radius: 70% 30% 60% 40%;
    transform: scale(1.02);
}

.section-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.link-natural {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.link-natural:hover {
    color: var(--primary-color);
}

.link-natural::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-sunset);
    transition: width 0.3s ease;
}

.link-natural:hover::after {
    width: 100%;
}

.grid-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 80px 0;
}

.mosaic-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mosaic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(218, 118, 74, 0.2);
}

.mosaic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-sunset);
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-section {
    background: var(--gradient-sunset);
    border-radius: 50px;
    padding: 80px 40px;
    text-align: center;
    margin: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-50px, -50px) rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .section-asymmetric,
    .section-asymmetric:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .hero-visual {
        height: 400px;
    }

    .shape-1, .shape-2, .shape-3 {
        display: none;
    }

    .grid-mosaic {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mosaic-card {
        padding: 30px;
    }

    .cta-section {
        padding: 60px 20px;
        border-radius: 25px;
        margin: 60px 0;
    }
}

.parallax-element {
    transform: translateZ(0);
    will-change: transform;
}