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

:root {
    --pink-light: #FDF5F7;
    --pink-medium: #F5E6EA;
    --pink-rose: #F2D5D9;
    --peach-pink: #F5DDD5;
    --burgundy-main: #8B1538;
    --burgundy-light: #A83652;
    --sage: #9CAF88;
    --forest-green: #5A7C5A;
    --cream: #FAF8F5;
    --plum: #6B2C4A;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(180deg, var(--pink-light) 0%, var(--peach-pink) 50%, var(--pink-rose) 100%);
    color: var(--burgundy-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--pink-light) 0%, var(--pink-medium) 100%);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(139, 21, 56, 0.08);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.logo h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy-main);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

nav a {
    font-size: 1.1rem;
    color: var(--burgundy-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--forest-green);
    transition: width 0.3s ease;
}

nav a:hover {
    color: var(--burgundy-main);
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    position: relative;
}

.hero-image-container {
    position: relative;
    margin-bottom: 3rem;
    overflow: visible;
}

.image-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: brightness(1.02) contrast(0.98);
}

/* Text section with translucent overlay */
.hero-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    padding: 3rem 2rem;
    position: relative;
    background: rgba(250, 248, 245, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 4px;
}

.hero-text::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-text .stanza {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2.8vw, 1.45rem);
    line-height: 1.9;
    color: var(--burgundy-main);
    margin-bottom: 2.5rem;
}

.hero-text .line {
    display: block;
    margin-bottom: 0.3rem;
    opacity: 0;
    animation: fadeInLine 0.8s ease-out forwards;
}

.hero-text .line:nth-child(1) { animation-delay: 0.1s; }
.hero-text .line:nth-child(2) { animation-delay: 0.3s; }
.hero-text .line:nth-child(3) { animation-delay: 0.5s; }
.hero-text .line:nth-child(4) { animation-delay: 0.7s; }
.hero-text .line:nth-child(5) { animation-delay: 0.9s; }
.hero-text .line:nth-child(6) { animation-delay: 1.1s; }
.hero-text .line:nth-child(7) { animation-delay: 1.3s; }
.hero-text .line:nth-child(8) { animation-delay: 1.5s; }
.hero-text .line:nth-child(9) { animation-delay: 1.7s; }
.hero-text .line:nth-child(10) { animation-delay: 1.9s; }
.hero-text .line:nth-child(11) { animation-delay: 2.1s; }

@keyframes fadeInLine {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text .indent-1 {
    padding-left: 1.5rem;
}

.hero-text .indent-2 {
    padding-left: 3rem;
}

.hero-text .emphasis {
    color: var(--plum);
    font-style: italic;
    font-weight: 400;
}

.hero-text .soft {
    color: var(--forest-green);
    font-weight: 300;
}

/* Decorative Divider */
.divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--forest-green), transparent);
    margin: 2.5rem auto;
    opacity: 0.5;
}

/* CTA Button */
.cta-section {
    text-align: center;
    margin: 1rem 0 1.5rem;
}

.cta-button {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: var(--burgundy-main);
    text-decoration: none;
    padding: 1.2rem 3.5rem;
    border: 1.5px solid var(--burgundy-main);
    border-radius: 50px;
    transition: all 0.4s ease;
    position: relative;
    background: rgba(250, 248, 245, 0.8);
    backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(139, 21, 56, 0.08);
    letter-spacing: 0.1em;
}

.cta-button:hover {
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.2);
    transform: translateY(-2px);
    background: rgba(250, 248, 245, 0.95);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    bottom: 0;
    background: rgba(242, 213, 217, 0.25);
    border-radius: 8px;
    z-index: -1;
}

.testimonials-container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    text-align: center;
    color: var(--plum);
    margin-bottom: 3rem;
    letter-spacing: 0.12em;
}

.testimonial-carousel {
    position: relative;
    padding: 2rem 5rem;
    min-height: 250px;
    overflow: visible;
}

.testimonial-slide {
    position: absolute;
    top: 2rem;
    left: 5rem;
    right: 5rem;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 1.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-slide.sliding-out-left {
    transform: translateX(-100%);
    opacity: 0;
}

.testimonial-slide.sliding-in-right {
    transform: translateX(0);
    opacity: 1;
}

.testimonial-quote {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.08);
    position: relative;
}

/* Layered effect on testimonial cards */
.testimonial-quote::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    background: rgba(245, 221, 213, 0.3);
    border-radius: 8px;
    z-index: -1;
}

.testimonial-quote::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--forest-green);
    opacity: 0.25;
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    line-height: 1.7;
    color: var(--burgundy-main);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--burgundy-light);
    font-style: normal;
    font-weight: 400;
    text-align: right;
    letter-spacing: 0.05em;
}

/* Navigation Dots */
.testimonial-dots {
    text-align: center;
    margin-top: 2.5rem;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 8px;
    background-color: var(--forest-green);
    opacity: 0.3;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot:hover,
.dot.active {
    opacity: 1;
    transform: scale(1.3);
    background-color: var(--forest-green);
}

/* Navigation Arrows */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    color: var(--burgundy-main);
    border: 1px solid rgba(90, 124, 90, 0.3);
    font-size: 1.8rem;
    padding: 0.5rem 0.9rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.1);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: rgba(90, 124, 90, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* Good Fit Section */
.good-fit-section {
    padding: 5rem 1.5rem;
    background: rgba(255, 255, 255, 0.3);
}

.good-fit-container {
    max-width: 1200px;
    margin: 0 auto;
}

.good-fit-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    text-align: center;
    color: var(--burgundy-main);
    margin-bottom: 3rem;
    letter-spacing: 0.12em;
}

.good-fit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.fit-column {
    background: rgba(250, 248, 245, 0.7);
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.08);
}

.column-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 400;
    color: var(--plum);
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
    text-align: center;
}

.fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fit-list li {
    font-family: 'Lato', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--burgundy-main);
    padding: 0.8rem 0 0.8rem 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.fit-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--forest-green);
    font-size: 1.5rem;
    line-height: 1;
}

@media (max-width: 968px) {
    .good-fit-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .good-fit-section {
        padding: 3rem 1rem;
    }
    
    .fit-column {
        padding: 2rem 1.5rem;
    }
}

/* Footer */
footer {
    background: rgba(253, 245, 247, 0.95);
    backdrop-filter: blur(10px);
    color: var(--forest-green);
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(90, 124, 90, 0.2);
}

footer p {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        justify-content: center;
        gap: 1rem;
    }

    .testimonial-carousel {
        padding: 2rem 3rem;
    }

    .testimonial-prev,
    .testimonial-next {
        font-size: 1.5rem;
        padding: 0.4rem 0.7rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
    }

    .image-wrapper::before,
    .image-wrapper::after {
        display: none;
    }

    .hero-text::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .testimonial-carousel {
        padding: 1.5rem 2.5rem;
    }

    .testimonial-prev {
        left: -5px;
    }

    .testimonial-next {
        right: -5px;
    }

    .testimonial-quote {
        padding: 2rem 1.5rem;
    }
}
