@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Josefin+Sans:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B7355;
    --primary-light: #A69076;
    --primary-dark: #6B5344;
    --secondary: #D4C4B0;
    --accent: #E8DDD4;
    --dark: #2C2520;
    --text: #4A4440;
    --text-light: #7A7470;
    --white: #FFFEF9;
    --bg: #FAF8F5;
    --shadow: 0 4px 20px rgba(139, 115, 85, 0.12);
    --shadow-lg: 0 8px 40px rgba(139, 115, 85, 0.18);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
}

h1 { font-size: 2.2rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 0.8rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--primary-dark); }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    position: fixed;
    background: rgba(255, 254, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

header.hidden { transform: translateY(-100%); }

.header-inner {
    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);
    letter-spacing: 1px;
}

.logo span { color: var(--primary); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 5px 0;
    transition: var(--transition);
}

.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);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: var(--transition);
}

nav a:hover::after,
nav a.active::after { width: 100%; }

nav a:hover,
nav a.active { color: var(--primary); }

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--bg) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(139, 115, 85, 0.05) 100%);
    transform: rotate(-15deg);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text { position: relative; z-index: 1; }

.hero-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.hero-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 4px;
    z-index: -1;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-header h2 { margin-bottom: 12px; }

.section-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.services-section { background: var(--white); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg);
    padding: 28px 20px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 18px;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.about-preview {
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.about-text h2 { margin-bottom: 16px; }

.about-text p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.about-features {
    margin: 20px 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.about-features i {
    color: var(--primary);
    font-size: 14px;
}

.products-section { background: var(--white); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.product-placeholder {
    height: 180px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.product-info {
    padding: 18px;
    text-align: center;
}

.product-info h3 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.product-info p {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.testimonials-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--bg) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--white);
    padding: 24px;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-style: italic;
    font-size: 13px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
}

.author-info h4 {
    font-size: 13px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    color: var(--text-light);
}

.cta-section {
    background: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    opacity: 0.9;
    margin-bottom: 20px;
    font-size: 13px;
}

.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

footer {
    background: var(--dark);
    color: var(--secondary);
    padding: 30px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.footer-logo span { color: var(--primary-light); }

.footer-contact {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 12px;
}

.footer-contact a {
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-contact a:hover { color: var(--white); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 11px;
}

.footer-bottom p { margin: 0; }

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a { color: var(--secondary); }

.footer-links a:hover { color: var(--white); }

.page-header {
    background: linear-gradient(135deg, var(--accent) 0%, var(--bg) 100%);
    padding: 120px 0 50px;
    text-align: center;
}

.page-header h1 { margin-bottom: 10px; }

.breadcrumb {
    font-size: 12px;
    color: var(--text-light);
}

.breadcrumb a { color: var(--primary); }

.content-section { background: var(--white); }

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main h2 { margin: 24px 0 12px; }

.content-main p,
.content-main li {
    font-size: 13px;
    color: var(--text);
    line-height: 1.8;
}

.content-main ul {
    margin: 12px 0;
    padding-left: 20px;
}

.content-main li {
    margin-bottom: 8px;
    position: relative;
}

.content-main li::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.sidebar-widget h3 {
    font-size: 1rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--secondary);
}

.sidebar-widget ul { padding: 0; }

.sidebar-widget li {
    margin-bottom: 8px;
}

.sidebar-widget li::before { display: none; }

.sidebar-widget a {
    font-size: 12px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-widget a:hover { color: var(--primary); }

.sidebar-widget i { color: var(--primary); }

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 4px;
    height: 100%;
}

.contact-info-card h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info-card p {
    opacity: 0.9;
    font-size: 13px;
    margin-bottom: 24px;
}

.contact-details { margin-bottom: 24px; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 4px;
}

.contact-item-text span {
    font-size: 12px;
    opacity: 0.85;
}

.contact-form-wrapper {
    background: var(--bg);
    padding: 30px;
    border-radius: 4px;
}

.contact-form-wrapper h2 { margin-bottom: 20px; }

.form-group { margin-bottom: 16px; }

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    border: 1px solid var(--secondary);
    border-radius: 2px;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: var(--text-light);
}

.form-checkbox input {
    width: auto;
    margin-top: 2px;
}

.form-checkbox a { color: var(--primary); }

.map-section { background: var(--bg); }

.map-container {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.error-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.error-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 16px;
}

.error-section h1 {
    margin-bottom: 12px;
}

.error-section p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 14px;
}

.thankyou-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
    margin: 0 auto;
}

.thankyou-section h1 { margin-bottom: 12px; }

.thankyou-section p {
    color: var(--text-light);
    margin: 0 auto;
    margin-bottom: 24px;
    font-size: 14px;
    max-width: 400px;
}

.policy-content {
    padding: 40px 0;
}

.policy-content h1 {
    text-align: center;
    margin-bottom: 30px;
}

.policy-content h2 {
    margin: 28px 0 14px;
    font-size: 1.4rem;
}

.policy-content h3 {
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.policy-content p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.policy-content ul {
    margin: 14px 0;
    padding-left: 24px;
}

.policy-content li {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
}

.policy-content li::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 10px;
    width: 5px;
    height: 5px;
    background: var(--primary);
    border-radius: 50%;
}

.policy-date {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 16px;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 12px;
    flex: 1;
}

.cookie-content a { color: var(--primary-light); }

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 18px;
    font-size: 11px;
    font-weight: 500;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-decline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.full-height-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-detail-text h2 { margin-bottom: 16px; }

.service-detail-text p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.pricing-box {
    background: var(--bg);
    padding: 24px;
    border-radius: 4px;
    margin-top: 20px;
}

.pricing-box h4 { margin-bottom: 14px; }

.pricing-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--secondary);
    font-size: 13px;
}

.pricing-item:last-child { border-bottom: none; }

.pricing-item span:last-child {
    font-weight: 600;
    color: var(--primary);
}

.process-section { background: var(--bg); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 11px;
    color: var(--text-light);
}

.team-section { background: var(--white); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg);
    padding: 24px;
    border-radius: 4px;
    text-align: center;
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
}

.team-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 11px;
    color: var(--primary);
    display: block;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
}

.values-section { background: var(--bg); }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--white);
    padding: 24px 18px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover { box-shadow: var(--shadow); }

.value-card i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 11px;
    color: var(--text-light);
}

.story-section { background: var(--white); }

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content p {
    font-size: 14px;
    line-height: 1.8;
    text-align: center;
    color: var(--text);
}

@media (max-width: 991px) {
    .hero-content,
    .about-grid,
    .contact-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image { order: -1; }

    .services-grid,
    .products-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-grid { grid-template-columns: 1fr; }

    .sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 784px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .hero-text h1 { font-size: 2.2rem; }

    section { padding: 40px 0; }

    .nav-toggle { display: block; }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--white);
        padding: 80px 30px 30px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
    }

    nav.active { right: 0; }

    nav ul {
        flex-direction: column;
        gap: 20px;
    }

    nav a { font-size: 14px; }

    .services-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .sidebar { grid-template-columns: 1fr; }

    .footer-content,
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.8rem; }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
    }

    .process-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .error-code { font-size: 5rem; }

    .contact-info-card,
    .contact-form-wrapper {
        padding: 20px;
    }
}

@media (max-width: 359px) {
    body { font-size: 13px; }

    .container { padding: 0 10px; }

    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }

    .hero { padding: 80px 0 40px; }
    .hero-text h1 { font-size: 1.5rem; }

    .logo { font-size: 1.2rem; }
}
