﻿/* ===========================
   CSS Variables & Reset
   =========================== */

:root {
    --color-primary: #E4E4E4;
    --color-secondary: #BAB3A0;
    --color-accent: #77634B;
    --color-white: #FFFFFF;
    --color-text: #2C2C2C;
    --color-text-light: #666666;
    
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Arial', 'Helvetica', sans-serif;
    
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(119, 99, 75, 0.1);
    --shadow-md: 0 4px 16px rgba(119, 99, 75, 0.15);
    --shadow-lg: 0 8px 32px rgba(119, 99, 75, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-primary);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* ===========================
   Container & Layout
   =========================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
    color: var(--color-accent);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1em;
}

/* ===========================
   Buttons
   =========================== */

.btn-primary,
.btn-outline,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    border-radius: 2px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    padding: 10px 20px;
    font-size: 14px;
}

.btn-secondary:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

/* ===========================
   Cookie Consent Banner
   =========================== */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-banner .btn-primary {
    background-color: var(--color-white);
    color: var(--color-accent);
    border-color: var(--color-white);
}

.cookie-banner .btn-primary:hover {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.cookie-banner .btn-secondary {
    color: var(--color-white);
    border-color: var(--color-white);
}

.cookie-banner .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-accent);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-buttons button,
    .cookie-buttons a {
        width: 100%;
    }
}

/* ===========================
   Header
   =========================== */

.header {
    position: sticky;
    top: 0;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--color-accent);
    font-weight: 600;
}

.logo img {
    width: 40px;
    height: 40px;
}

.logo-text {
    display: inline-block;
}

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }
}

.nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 5px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--color-accent);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background-color: var(--color-white);
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease;
        padding: 30px 20px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .nav-menu a {
        font-size: 16px;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--color-secondary);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(119, 99, 75, 0.85) 0%, rgba(186, 179, 160, 0.75) 100%);
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
    color: var(--color-white);
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    color: var(--color-white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 35px;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-decoration {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    opacity: 0.3;
    z-index: 2;
}

.art-nouveau-ornament {
    width: 100%;
    height: 100%;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 450px;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        width: 100%;
        max-width: 280px;
    }
}

/* ===========================
   Countdown Section
   =========================== */

.countdown-section {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 60px 0;
    text-align: center;
}

.countdown-content h2 {
    color: var(--color-white);
    margin-bottom: 10px;
}

.countdown-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.time-value {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
}

.time-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

@media (max-width: 640px) {
    .countdown-timer {
        gap: 20px;
    }
    
    .time-unit {
        min-width: 70px;
    }
}

/* ===========================
   Section Styling
   =========================== */

.about-studio,
.product-section,
.faq-section,
.trust-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 20px;
}

.decorative-line {
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0 auto 15px;
    position: relative;
}

.decorative-line::before,
.decorative-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.decorative-line::before {
    left: -12px;
}

.decorative-line::after {
    right: -12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .about-studio,
    .product-section,
    .faq-section,
    .trust-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
}

/* ===========================
   About Studio
   =========================== */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow-md);
    background-color: var(--color-secondary);
}

.about-text h3 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-item .icon {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===========================
   Product Sections
   =========================== */

.product-section {
    background-color: var(--color-white);
}

.product-section:nth-of-type(even) {
    background-color: var(--color-primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.product-card {
    background-color: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
    background-color: var(--color-secondary);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.product-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===========================
   Techniques Block
   =========================== */

.techniques-block {
    background-color: var(--color-secondary);
    padding: 50px;
    border-radius: 4px;
    margin-top: 40px;
}

.techniques-block h3 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--color-accent);
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.technique-item {
    text-align: center;
}

.technique-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--color-accent);
}

.technique-icon svg {
    width: 100%;
    height: 100%;
}

.technique-item h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.technique-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .techniques-block {
        padding: 30px 20px;
    }
    
    .techniques-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===========================
   Sculpture Showcase
   =========================== */

.sculpture-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.showcase-main {
    position: relative;
    padding-top: 120%;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--color-secondary);
}

.showcase-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-description h3 {
    margin-bottom: 20px;
}

.showcase-description p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

@media (max-width: 968px) {
    .sculpture-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===========================
   Accordion / FAQ
   =========================== */

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

.accordion-item {
    background-color: var(--color-white);
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--color-white);
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-accent);
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: rgba(119, 99, 75, 0.05);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 25px 20px;
}

.accordion-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 640px) {
    .accordion-header {
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .accordion-content {
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 0 20px 15px;
    }
}

/* ===========================
   Trust Badges
   =========================== */

.trust-section {
    background-color: var(--color-white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.trust-badge {
    text-align: center;
    padding: 30px 20px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--color-accent);
}

.trust-badge h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.trust-badge p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
}

@media (max-width: 640px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===========================
   Footer
   =========================== */

.footer {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-column a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ===========================
   Form Elements
   =========================== */

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--color-accent);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--color-secondary);
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--color-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===========================
   Utility Classes
   =========================== */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-40 {
    margin-top: 40px;
}

/* ===========================
   Responsive Images
   =========================== */

@media (max-width: 320px) {
    body {
        font-size: 14px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 12px 24px;
        font-size: 14px;
    }
}