@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
    --primary: #8B7355;
    --primary-light: #A69076;
    --primary-dark: #6B5544;
    --secondary: #E8DDD4;
    --accent: #C9A86C;
    --text-dark: #2D2A26;
    --text-light: #5A5550;
    --white: #FFFFFF;
    --off-white: #FAF8F5;
    --border: #E0D8D0;
    --shadow: rgba(45, 42, 38, 0.08);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--off-white);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 12px; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--primary-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(250, 248, 245, 0.98) 0%, rgba(250, 248, 245, 0.95) 100%);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

header.hidden {
    transform: translateY(-100%);
}

header.scrolled {
    box-shadow: 0 2px 20px var(--shadow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    position: absolute;
}

.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 28px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

main {
    padding-top: 60px;
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--off-white) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(201, 168, 108, 0.1));
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.section {
    padding: 60px 0;
}

.section-light {
    background: var(--white);
}

.section-accent {
    background: var(--secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.service-icon i {
    font-size: 22px;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px var(--shadow);
}

.about-content h2 {
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-light);
    font-size: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--accent);
    font-size: 16px;
}

.about-feature span {
    font-size: 13px;
    font-weight: 600;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow);
}

.product-image {
    height: 180px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial {
    text-align: center;
    padding: 0 20px;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.testimonial-author {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    text-align: center;
    padding: 50px 20px;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--accent);
    color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 24px;
    right: -10px;
    width: calc(100% - 48px);
    height: 2px;
    background: var(--border);
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    position: relative;
    z-index: 1;
}

.process-step h4 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.process-step p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}

.page-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--off-white) 100%);
    padding: 50px 0 40px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 12px;
}

.page-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    margin-top: 16px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb span {
    color: var(--text-light);
}

.content-section {
    padding: 50px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-wrapper h2 {
    margin-top: 28px;
    margin-bottom: 14px;
}

.content-wrapper h3 {
    margin-top: 22px;
    margin-bottom: 12px;
}

.content-wrapper p {
    color: var(--text-light);
    font-size: 14px;
}

.content-wrapper ul {
    margin: 14px 0;
    padding-left: 24px;
}

.content-wrapper li {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 14px;
}

.contact-section {
    padding: 50px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-item-content p {
    font-size: 13px;
    margin-bottom: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 8px 32px var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0;
    color: var(--text-light);
}

.checkbox-group a {
    text-decoration: underline;
}

.contact-form-wrapper .btn {
    width: 100%;
    padding: 12px;
}

.map-container {
    margin-top: 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.team-avatar i {
    font-size: 32px;
    color: var(--primary);
}

.team-card h4 {
    margin-bottom: 4px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.value-card i {
    font-size: 28px;
    color: var(--accent);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}

.error-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.error-content h2 {
    margin-bottom: 14px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.thank-you-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.thank-you-content i {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.thank-you-content h1 {
    margin-bottom: 14px;
}

.thank-you-content p {
    color: var(--text-light);
    max-width: 450px;
    margin: 0 auto 24px;
}

footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span {
    color: var(--accent);
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 16px;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.policy-links {
    display: flex;
    gap: 16px;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.policy-links a:hover {
    color: var(--white);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
    flex: 1;
}

.cookie-content a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 18px;
    font-size: 11px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.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: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 16px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
}

.color-palette-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.palette-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
}

.palette-colors {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    justify-content: center;
}

.palette-colors span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.palette-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.palette-card p {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 0;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.benefit-item i {
    font-size: 24px;
    color: var(--accent);
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}

.wardrobe-tips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tip-card {
    background: var(--white);
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--border);
    text-align: center;
}

.tip-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 14px;
}

.tip-card h4 {
    margin-bottom: 8px;
}

.tip-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .services-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .process-steps,
    .color-palette-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    h1 { font-size: 2rem; }
    .hero h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--off-white);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .main-nav.active {
        opacity: 1;
        visibility: visible;
        height: 100vh;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .main-nav a {
        font-size: 18px;
    }

    .hero {
        min-height: 70vh;
    }

    .section {
        padding: 40px 0;
    }

    .services-grid,
    .products-grid,
    .team-grid,
    .values-grid,
    .color-palette-grid,
    .benefits-list,
    .wardrobe-tips {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav,
    .policy-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }

    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }

    .hero h1 { font-size: 1.8rem; }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }

    .container {
        padding: 0 12px;
    }

    .section {
        padding: 32px 0;
    }

    .contact-form-wrapper {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 12px;
    }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }

    .hero h1 { font-size: 1.5rem; }

    .container {
        padding: 0 10px;
    }

    .logo {
        font-size: 1.1rem;
    }
}
