@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Quicksand:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6B61;
    --secondary: #C4A77D;
    --accent: #E8D5C4;
    --dark: #3D2C29;
    --light: #FDF8F5;
    --text: #4A3F3A;
    --white: #FFFFFF;
    --shadow: rgba(139, 107, 97, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--dark);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

header.scrolled {
    position: fixed;
    background: rgba(253, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 10px 0;
}

header.hidden {
    transform: translateY(-100%);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.logo span {
    color: var(--primary);
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, var(--secondary) 0%, transparent 70%);
    opacity: 0.2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 15px;
    margin-bottom: 25px;
    color: var(--text);
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text);
    max-width: 550px;
    margin: 0 auto;
    font-size: 14px;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--light);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 13px;
    color: var(--text);
}

.about-section {
    background: linear-gradient(to right, var(--accent) 0%, var(--light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 15px;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 14px;
}

.features-list {
    list-style: none;
    margin: 20px 0;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.features-list i {
    color: var(--secondary);
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.product-info p {
    font-size: 12px;
    color: var(--text);
    margin-bottom: 15px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.testimonials {
    background: var(--dark);
    color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.testimonial-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 13px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--accent);
}

.testimonial-author {
    font-weight: 600;
    color: var(--white);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--accent);
    margin-bottom: 25px;
    font-size: 14px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--secondary);
    color: var(--white);
}

footer {
    background: var(--dark);
    color: var(--accent);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 10px;
    display: inline-block;
}

.footer-brand p {
    font-size: 12px;
    color: var(--accent);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--accent);
    font-size: 12px;
    display: block;
    padding: 4px 0;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 11px;
    color: var(--accent);
}

.page-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 12px;
    color: var(--text);
}

.breadcrumb a {
    color: var(--primary);
}

.content-section {
    padding: 50px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 {
    margin-bottom: 15px;
}

.content-main p {
    margin-bottom: 15px;
    font-size: 14px;
}

.sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    height: fit-content;
}

.sidebar h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.sidebar ul {
    list-style: none;
}

.sidebar ul li {
    padding: 8px 0;
    border-bottom: 1px solid var(--accent);
}

.sidebar ul li:last-child {
    border-bottom: none;
}

.sidebar a {
    font-size: 13px;
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
}

.contact-form-wrapper h2 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--accent);
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 12px;
    margin-bottom: 0;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--light);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-card h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.contact-card p {
    font-size: 13px;
    color: var(--text);
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 15px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.thank-you-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
}

.thank-you-content {
    max-width: 500px;
    padding: 40px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 60px var(--shadow);
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.thank-you-content h1 {
    margin-bottom: 15px;
}

.thank-you-content p {
    margin-bottom: 25px;
    font-size: 14px;
}

.error-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--accent) 100%);
}

.error-content {
    max-width: 500px;
    padding: 40px;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.error-content h2 {
    margin-bottom: 15px;
}

.error-content p {
    margin-bottom: 25px;
    font-size: 14px;
}

.policy-section {
    background: var(--white);
    padding: 50px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.policy-content ul {
    margin-bottom: 15px;
    padding-left: 25px;
}

.policy-content ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    font-size: 13px;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--secondary);
    color: var(--dark);
}

.cookie-decline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.process-section {
    background: var(--light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 25px 15px;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -10px;
    width: 20px;
    height: 2px;
    background: var(--secondary);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.process-step h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.process-step p {
    font-size: 12px;
    color: var(--text);
}

.benefits-section {
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-card {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--light);
    border-radius: 12px;
}

.benefit-card i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-card h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.benefit-card p {
    font-size: 13px;
    color: var(--text);
}

.team-section {
    background: var(--light);
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.team-text h2 {
    margin-bottom: 15px;
}

.team-text p {
    margin-bottom: 15px;
    font-size: 14px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 1.8rem;
    color: var(--primary);
}

.stat-item p {
    font-size: 11px;
    color: var(--text);
}

.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    border: 2px solid var(--accent);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--primary);
    background: var(--light);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.value-card p {
    font-size: 13px;
    color: var(--text);
}

.faq-section {
    background: var(--light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 18px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text);
}

.intro-section {
    background: var(--white);
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.intro-text h2 {
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 14px;
    margin-bottom: 15px;
}

.color-palette {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 3px 10px var(--shadow);
}

.types-section {
    background: var(--light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.type-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
}

.type-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-card h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.type-card p {
    font-size: 12px;
    color: var(--text);
}

.wardrobe-intro {
    background: var(--white);
}

.wardrobe-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.wardrobe-text h2 {
    margin-bottom: 15px;
}

.wardrobe-text p {
    font-size: 14px;
    margin-bottom: 15px;
}

.style-tips {
    background: var(--light);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.tip-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.tip-card h4 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.tip-card p {
    font-size: 13px;
    color: var(--text);
}

@media (max-width: 992px) {
    .hero-content,
    .about-grid,
    .contact-grid,
    .team-content,
    .intro-content,
    .wardrobe-grid {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .values-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 15px;
        box-shadow: -5px 0 30px var(--shadow);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 15px;
        padding: 10px 0;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .benefits-grid,
    .values-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    section {
        padding: 40px 0;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }

    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .process-grid,
    .types-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .policy-links {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .container {
        padding: 0 10px;
    }

    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }

    .logo {
        font-size: 1.2rem;
    }

    .nav-links {
        width: 85%;
    }

    .thank-you-content,
    .error-content {
        padding: 25px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}
