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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #F5EDE3;
    color: #2A2028;
    overflow-x: hidden;
    position: relative;
    line-height: 1.65;
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    letter-spacing: 0.005em;
}

/* Bokeh Background Layer */
.bokeh-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at 20% 30%, rgba(212, 160, 160, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(201, 168, 108, 0.12) 0%, transparent 45%),
                radial-gradient(circle at 40% 80%, rgba(138, 58, 74, 0.1) 0%, transparent 50%);
}

.bokeh {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    filter: blur(60px);
    animation: bokeh-drift 15s ease-in-out infinite;
}

.bokeh-1 {
    width: 150px;
    height: 150px;
    background: #D4A0A0;
    top: 10%;
    left: 15%;
    animation-delay: 0s;
    opacity: 0.15;
}

.bokeh-2 {
    width: 200px;
    height: 200px;
    background: #C9A86C;
    top: 30%;
    right: 10%;
    animation-delay: 3s;
    opacity: 0.12;
}

.bokeh-3 {
    width: 120px;
    height: 120px;
    background: #8A3A4A;
    bottom: 20%;
    left: 25%;
    animation-delay: 6s;
    opacity: 0.1;
}

.bokeh-4 {
    width: 180px;
    height: 180px;
    background: #B8AFAB;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
    opacity: 0.08;
}

.bokeh-5 {
    width: 100px;
    height: 100px;
    background: #C9A86C;
    bottom: 30%;
    right: 15%;
    animation-delay: 4s;
    opacity: 0.11;
}

.bokeh-6 {
    width: 160px;
    height: 160px;
    background: #D4A0A0;
    top: 20%;
    left: 50%;
    animation-delay: 5s;
    opacity: 0.09;
}

@keyframes bokeh-drift {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -30px);
    }
    50% {
        transform: translate(-10px, 40px);
    }
    75% {
        transform: translate(30px, 15px);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
}

.breathing-blob {
    position: absolute;
    width: 60vmin;
    height: 60vmin;
    max-width: 500px;
    max-height: 500px;
    animation: breathing 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes breathing {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    pointer-events: none;
}

#hero-title {
    font-family: 'Commissioner', sans-serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: #F5EDE3;
    margin-bottom: 1rem;
    word-spacing: 9999px;
    animation: text-reveal 3s ease-out;
    font-variant: normal;
}

@keyframes text-reveal {
    0% {
        opacity: 0;
        letter-spacing: 0.1em;
    }
    100% {
        opacity: 1;
        letter-spacing: -0.02em;
    }
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #F5EDE3;
    opacity: 0.9;
    font-weight: 300;
    animation: fade-in 4s ease-out;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.9;
    }
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    grid-auto-rows: auto;
}

.bento-cell {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(212, 160, 160, 0.15) 100%);
    border: 1px solid rgba(201, 168, 108, 0.2);
    border-radius: 40px;
    padding: 2.5rem;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.bento-cell:nth-child(1) {
    background: linear-gradient(135deg, #5C1A2A 0%, #8A3A4A 100%);
    color: #F5EDE3;
    grid-column: span 1;
}

.bento-cell:nth-child(2) {
    background: linear-gradient(135deg, #C9A86C 0%, #D4A0A0 100%);
    color: #2A2028;
    grid-column: span 1;
}

.bento-cell:nth-child(3) {
    background: linear-gradient(135deg, #B8AFAB 0%, #C9A86C 100%);
    color: #2A2028;
    grid-column: span 1;
}

.bento-cell:nth-child(4) {
    background: linear-gradient(135deg, #8A3A4A 0%, #5C1A2A 100%);
    color: #F5EDE3;
    grid-column: span 1;
}

.bento-cell:nth-child(5) {
    background: linear-gradient(135deg, #D4A0A0 0%, #B8AFAB 100%);
    color: #2A2028;
    grid-column: span 1;
}

.bento-cell:nth-child(6) {
    background: linear-gradient(135deg, #2A2028 0%, #5C1A2A 100%);
    color: #F5EDE3;
    grid-column: span 1;
}

.bento-cell:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(92, 26, 42, 0.15);
}

.cell-content {
    text-align: center;
    animation: cell-fade-in 0.6s ease-out;
}

@keyframes cell-fade-in {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-cell h2 {
    font-family: 'Commissioner', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.bento-cell p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    opacity: 0.95;
}

/* Features Section */
.features {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h2 {
    font-family: 'Commissioner', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #2A2028;
    margin-bottom: 0.5rem;
}

.features-header p {
    font-size: 1.2rem;
    color: #5C1A2A;
    opacity: 0.8;
}

.feature-blob-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.feature-item {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.feature-blob {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: blob-pulse 4s ease-in-out infinite;
    filter: blur(0.5px);
}

.blob-1 {
    background: linear-gradient(135deg, #5C1A2A 0%, #8A3A4A 100%);
    animation-delay: 0s;
}

.blob-2 {
    background: linear-gradient(135deg, #C9A86C 0%, #D4A0A0 100%);
    animation-delay: 0.5s;
}

.blob-3 {
    background: linear-gradient(135deg, #B8AFAB 0%, #C9A86C 100%);
    animation-delay: 1s;
}

.blob-4 {
    background: linear-gradient(135deg, #D4A0A0 0%, #B8AFAB 100%);
    animation-delay: 1.5s;
}

@keyframes blob-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.feature-item h3 {
    font-family: 'Commissioner', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2A2028;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 1rem;
    color: #5C1A2A;
    opacity: 0.7;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(201, 168, 108, 0.1) 0%, rgba(92, 26, 42, 0.05) 100%);
    margin: 2rem 0;
}

.testimonials h2 {
    font-family: 'Commissioner', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    color: #2A2028;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(201, 168, 108, 0.3);
    border-radius: 30px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 40px rgba(92, 26, 42, 0.1);
    transform: translateY(-4px);
}

.testimonial-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.1rem;
    color: #2A2028;
    margin-bottom: 1rem;
    line-height: 1.8;
    font-style: italic;
    opacity: 0.9;
}

.testimonial-author {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    color: #5C1A2A;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, rgba(92, 26, 42, 0.05) 0%, rgba(201, 168, 108, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.cta-blob-wrapper {
    position: relative;
    max-width: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.cta-blob {
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    animation: cta-blob-float 6s ease-in-out infinite;
}

@keyframes cta-blob-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-family: 'Commissioner', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #2A2028;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: #5C1A2A;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    background: linear-gradient(135deg, #5C1A2A 0%, #8A3A4A 100%);
    color: #F5EDE3;
    border: none;
    padding: 1.2rem 2.5rem;
    font-family: 'Commissioner', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(92, 26, 42, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(92, 26, 42, 0.3);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* Footer */
.footer {
    background: #2A2028;
    color: #F5EDE3;
    padding: 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #C9A86C;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 0.95rem;
}

.footer-nav a:hover {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-blob-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .breathing-blob {
        width: 50vmin;
        height: 50vmin;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }

    .bento-cell {
        min-height: 200px;
        padding: 2rem;
    }

    .features-header,
    .testimonials {
        padding: 2rem 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Smooth scroll for scroll events */
section {
    animation: section-appear 0.8s ease-out forwards;
    opacity: 0;
}

section:nth-of-type(1) {
    animation-delay: 0s;
}

section:nth-of-type(2) {
    animation-delay: 0.1s;
    opacity: 1;
}

section:nth-of-type(3) {
    animation-delay: 0.2s;
    opacity: 1;
}

section:nth-of-type(4) {
    animation-delay: 0.3s;
    opacity: 1;
}

section:nth-of-type(5) {
    animation-delay: 0.4s;
    opacity: 1;
}

@keyframes section-appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
