@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6B4F;
    --primary-dark: #6B4F3A;
    --secondary: #D4A574;
    --accent: #E8DDD4;
    --bg-light: #FAF8F5;
    --bg-cream: #F5EFE7;
    --text-dark: #3D3229;
    --text-muted: #7A6F64;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(139, 107, 79, 0.12);
    --shadow-lg: 0 8px 32px rgba(139, 107, 79, 0.18);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    transform: translateY(-100%);
}

header.show-nav {
    transform: translateY(0);
}

.header-wrapper {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--white) 100%);
    box-shadow: var(--shadow);
}

.header-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 16px;
    position: relative;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 1.2rem;
    color: var(--secondary);
}

.menu-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: var(--transition);
}

.menu-toggle:hover {
    background: var(--primary-dark);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.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(4px, -5px);
}

.nav-menu {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--accent);
}

.nav-menu.active {
    display: block;
}

.nav-menu ul {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
}

.nav-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border-left: 3px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: var(--bg-cream);
    border-left-color: var(--primary);
    color: var(--primary);
}

main {
    flex: 1;
    padding-top: 65px;
}

.hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--accent) 50%, var(--bg-light) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, var(--secondary) 0%, transparent 70%);
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.hero h1 {
    font-size: 2.4rem;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.hero p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 480px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-img {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 40%;
    max-width: 400px;
    opacity: 0.9;
}

.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--bg-light);
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.workshops {
    background: var(--bg-cream);
}

.workshop-list {
    display: grid;
    gap: 20px;
}

.workshop-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.workshop-img {
    height: 180px;
    overflow: hidden;
}

.workshop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-content {
    padding: 20px;
}

.workshop-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}

.workshop-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.workshop-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.workshop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--accent);
}

.workshop-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    gap: 30px;
    align-items: center;
}

.about-content h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat-item {
    text-align: center;
    padding: 16px 8px;
    background: var(--bg-cream);
    border-radius: var(--radius);
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.testimonials {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-grid {
    display: grid;
    gap: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 24px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-quote {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.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;
    font-weight: 700;
    font-size: 0.9rem;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
}

.author-info span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.cta-section {
    background: var(--bg-cream);
    text-align: center;
}

.cta-box {
    background: var(--white);
    padding: 36px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

.page-header {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--accent) 100%);
    padding: 50px 0 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 0.8rem;
}

.breadcrumbs a {
    color: var(--primary);
}

.breadcrumbs span {
    color: var(--text-muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 200px;
    background: var(--bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-img i {
    font-size: 3rem;
    color: var(--secondary);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    gap: 30px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-top: 2px;
}

.info-item h4 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 107, 79, 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: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary);
}

.checkbox-group label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.map-section {
    padding: 0;
}

.map-container {
    height: 300px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.error-content,
.thankyou-content {
    max-width: 480px;
    margin: 0 auto;
}

.error-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 16px;
}

.error-content h1,
.thankyou-content h1 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.error-content p,
.thankyou-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thankyou-icon i {
    font-size: 2rem;
    color: var(--white);
}

.policy-content {
    background: var(--white);
    padding: 40px 0;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin: 28px 0 14px;
}

.policy-text h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 20px 0 10px;
}

.policy-text p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.policy-text ul {
    margin: 12px 0 16px 20px;
}

.policy-text li {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 8px;
    position: relative;
    padding-left: 16px;
}

.policy-text li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 24px 0 16px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
    max-width: 250px;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo i {
    color: var(--secondary);
}

.footer-brand p {
    font-size: 0.8rem;
    opacity: 0.8;
    line-height: 1.5;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.footer-links a {
    font-size: 0.8rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.7;
}

.privacy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
}

.privacy-links a {
    font-size: 0.75rem;
    opacity: 0.7;
}

.privacy-links a:hover {
    opacity: 1;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.intro-section {
    background: var(--white);
}

.intro-grid {
    display: grid;
    gap: 30px;
    align-items: center;
}

.intro-text h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

.intro-text p {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.intro-list {
    margin: 16px 0;
}

.intro-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.intro-list i {
    color: var(--primary);
    font-size: 0.9rem;
}

.gallery-section {
    background: var(--bg-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.team-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.team-avatar i {
    font-size: 1.8rem;
    color: var(--white);
}

.team-card h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.team-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.values-section {
    background: var(--bg-cream);
}

.values-grid {
    display: grid;
    gap: 16px;
}

.value-card {
    display: flex;
    gap: 16px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
}

.value-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon i {
    font-size: 1.2rem;
    color: var(--primary);
}

.value-content h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.value-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.process-section {
    background: var(--white);
}

.process-steps {
    display: grid;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.faq-section {
    background: var(--bg-light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    display: block;
}

@media (min-width: 640px) {
    html {
        font-size: 16px;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: block !important;
        background: transparent;
        border: none;
    }

    .nav-menu ul {
        flex-direction: row;
        justify-content: center;
        gap: 4px;
        padding: 0 0 10px;
    }

    .nav-menu li a {
        padding: 8px 14px;
        border-radius: var(--radius);
        border-left: none;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background: var(--accent);
        color: var(--primary);
    }

    .workshop-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .intro-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1.3fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .workshop-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 639px) {
    .hero-img {
        display: none;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links ul {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 359px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 12px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
