@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');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6914;
    --primary-light: #C9A227;
    --primary-dark: #5C4A0F;
    --secondary: #2C2416;
    --accent: #D4A574;
    --cream: #FDF8F0;
    --warm-white: #FFFBF5;
    --text-dark: #1A1612;
    --text-muted: #6B5E4F;
    --shadow: rgba(44, 36, 22, 0.08);
    --shadow-hover: rgba(44, 36, 22, 0.15);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--warm-white);
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 0.8rem; }

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;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--warm-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--warm-white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--warm-white);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: linear-gradient(180deg, rgba(253, 248, 240, 0.98) 0%, rgba(253, 248, 240, 0.85) 100%);
    backdrop-filter: blur(8px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

header.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

header.header-compact {
    position: fixed;
    padding: 8px 0;
    background: rgba(253, 248, 240, 0.97);
    box-shadow: 0 2px 15px var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

nav a {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 50%, #F5EDE0 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary);
}

.hero-text h1 span {
    color: var(--primary);
    display: block;
}

.hero-text p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 420px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
}

.features {
    background: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background: var(--warm-white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.workshops {
    background: var(--warm-white);
}

.workshop-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.workshop-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.workshop-card:hover {
    transform: translateY(-3px);
}

.workshop-card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.workshop-card h3 {
    margin-bottom: 10px;
}

.workshop-card p {
    font-size: 13px;
    color: var(--text-muted);
    flex: 1;
}

.workshop-card .btn {
    align-self: flex-start;
    margin-top: 15px;
}

.products {
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--warm-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--cream) 0%, #E8DCC8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image i {
    font-size: 3rem;
    color: var(--primary-light);
    opacity: 0.6;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.product-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.testimonials {
    background: linear-gradient(135deg, var(--secondary) 0%, #3D3225 100%);
    color: var(--warm-white);
}

.testimonials .section-header h2 {
    color: var(--warm-white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-slider {
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-item {
    text-align: center;
    padding: 30px 20px;
}

.testimonial-item blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--cream);
}

.testimonial-item cite {
    font-style: normal;
    font-size: 13px;
    color: var(--accent);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--warm-white);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--warm-white);
    margin-bottom: 12px;
}

.cta-section p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.cta-section .btn {
    background: var(--warm-white);
    color: var(--primary-dark);
}

.cta-section .btn:hover {
    background: var(--cream);
}

footer {
    background: var(--secondary);
    color: var(--cream);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand .logo {
    color: var(--cream);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(253, 248, 240, 0.7);
    margin-bottom: 0;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(253, 248, 240, 0.8);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 12px;
    color: rgba(253, 248, 240, 0.8);
    margin-bottom: 6px;
}

.footer-contact i {
    width: 16px;
    color: var(--accent);
    margin-right: 6px;
}

.footer-bottom {
    border-top: 1px solid rgba(253, 248, 240, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(253, 248, 240, 0.6);
    margin-bottom: 0;
}

.policy-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.policy-links a {
    font-size: 11px;
    color: rgba(253, 248, 240, 0.6);
}

.policy-links a:hover {
    color: var(--accent);
}

.page-hero {
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 550px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.about-content {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-muted);
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.values-section {
    background: var(--cream);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--warm-white);
    border-radius: 8px;
    box-shadow: 0 5px 15px var(--shadow);
}

.value-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.value-item h4 {
    margin-bottom: 8px;
}

.value-item p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.team-section {
    background: var(--warm-white);
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.team-intro p {
    color: var(--text-muted);
}

.contact-section {
    background: var(--warm-white);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--secondary) 0%, #3D3225 100%);
    padding: 35px;
    border-radius: 8px;
    color: var(--cream);
}

.contact-info h2 {
    color: var(--cream);
    margin-bottom: 15px;
}

.contact-info > p {
    color: rgba(253, 248, 240, 0.8);
    margin-bottom: 25px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-item i {
    font-size: 1.1rem;
    color: var(--accent);
    margin-top: 2px;
}

.contact-item h4 {
    color: var(--cream);
    font-size: 13px;
    font-family: var(--font-body);
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 13px;
    color: rgba(253, 248, 240, 0.8);
    margin-bottom: 0;
}

.contact-hours h4 {
    color: var(--accent);
    font-size: 13px;
    font-family: var(--font-body);
    margin-bottom: 8px;
}

.contact-hours p {
    font-size: 12px;
    color: rgba(253, 248, 240, 0.7);
    margin-bottom: 4px;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    border: 1px solid #DDD5C8;
    border-radius: 4px;
    background: var(--warm-white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

.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;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin-bottom: 0;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: 0;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.workshop-detail {
    background: var(--warm-white);
}

.workshop-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.workshop-main h2 {
    margin-bottom: 15px;
}

.workshop-main p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.workshop-list {
    list-style: none;
    margin: 20px 0;
}

.workshop-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-muted);
}

.workshop-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.workshop-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: var(--cream);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 30px var(--shadow);
}

.booking-card h3 {
    margin-bottom: 15px;
}

.booking-info {
    margin-bottom: 20px;
}

.booking-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 13px;
}

.booking-info-item i {
    color: var(--primary);
    width: 20px;
}

.booking-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.workshop-schedule {
    background: var(--cream);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.schedule-item {
    background: var(--warm-white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.schedule-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.schedule-item h4 {
    margin-bottom: 8px;
}

.schedule-item p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.policy-content {
    background: var(--warm-white);
    padding: 80px 0;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.policy-wrapper h2 {
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.policy-wrapper h3 {
    margin: 25px 0 12px;
    font-size: 1.1rem;
}

.policy-wrapper p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 13px;
}

.policy-wrapper ul {
    margin: 12px 0 12px 25px;
    color: var(--text-muted);
    font-size: 13px;
}

.policy-wrapper li {
    margin-bottom: 8px;
}

.last-updated {
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
}

.error-page,
.thankyou-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.error-content,
.thankyou-content {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
    height: 100vh;
    padding: 40px 15px;
}

.error-inner,
.thankyou-inner {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.error-inner i,
.thankyou-inner i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.error-inner h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.error-inner h2,
.thankyou-inner h1 {
    margin-bottom: 12px;
}

.error-inner p,
.thankyou-inner p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--cream);
    padding: 15px 0;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 12px;
    margin-bottom: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-inner a {
    color: var(--accent);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 18px;
    font-size: 11px;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text p {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-cards {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .workshop-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }
    
    nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -5px 0 20px var(--shadow-hover);
        display: none;
    }
    
    nav.active {
        transform: translateX(0);
        display: block;
    }
    
    nav a {
        display: block;
        padding: 12px 0;
        font-size: 14px;
        border-bottom: 1px solid rgba(44, 36, 22, 0.1);
        width: 100%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .policy-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }
    
    .container {
        padding: 0 12px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .feature-card,
    .value-item {
        padding: 20px 15px;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .booking-card {
        padding: 20px;
    }
}

@media (max-width: 320px) {
    .logo {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
