:root {
    --plum-50: #fdf4f6;
    --plum-100: #fce8ec;
    --plum-200: #f9d0d9;
    --plum-300: #f4a8b8;
    --plum-400: #ec728f;
    --plum-500: #db4d6e;
    --plum-600: #c03554;
    --plum-700: #9f2844;
    --plum-800: #83253a;
    --plum-900: #6e2334;
    
    --amber-50: #fffbeb;
    --amber-100: #fff3c4;
    --amber-200: #ffe78a;
    --amber-300: #ffd44d;
    --amber-400: #ffc020;
    --amber-500: #ffaa00;
    --amber-600: #e08f00;
    --amber-700: #b86e00;
    --amber-800: #945500;
    --amber-900: #7a4300;
    
    --neutral-50: #fafafa;
    --neutral-100: #f5f5f5;
    --neutral-200: #e5e5e5;
    --neutral-300: #d4d4d4;
    --neutral-400: #a3a3a3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    --font-display: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
}

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

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo svg {
    color: var(--amber-500);
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    font-weight: 600;
    color: var(--neutral-700);
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--plum-600);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--plum-600);
    color: white;
    box-shadow: 0 4px 12px rgba(192, 53, 84, 0.3);
}

.btn-primary:hover {
    background: var(--plum-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(192, 53, 84, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--plum-700);
    border: 2px solid var(--plum-200);
}

.btn-secondary:hover {
    border-color: var(--plum-400);
    background: var(--plum-50);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--amber-100);
    color: var(--amber-800);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

/* Section Label */
.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum-600);
    margin-bottom: 12px;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--plum-50) 0%, var(--amber-50) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, var(--plum-100) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 540px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--plum-900);
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--neutral-600);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--amber-300);
    border-radius: 32px;
    z-index: -1;
}

/* About */
.about {
    padding: 120px 0;
    background: white;
}

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

.about-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--plum-900);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--neutral-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature {
    text-align: center;
    padding: 24px;
    background: var(--plum-50);
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--plum-100);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-600);
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--plum-800);
    margin-bottom: 8px;
}

.feature p {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    margin: 0;
    line-height: 1.6;
}

.about-image img {
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Products */
.products {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--amber-50) 0%, var(--plum-50) 100%);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--plum-900);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--neutral-600);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--plum-800);
    padding: 24px 24px 0;
}

.product-card p {
    font-size: 1rem;
    color: var(--neutral-600);
    padding: 12px 24px 24px;
    line-height: 1.7;
}

/* Visit */
.visit {
    padding: 120px 0;
    background: white;
}

.visit .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.visit-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--plum-900);
    margin-bottom: 16px;
}

.visit-content > p {
    font-size: 1.125rem;
    color: var(--neutral-600);
    margin-bottom: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--plum-50);
    border-radius: 20px;
}

.contact-item svg {
    color: var(--amber-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    color: var(--plum-800);
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--neutral-600);
    margin: 0;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--plum-50);
    border-radius: 20px;
    color: var(--plum-700);
    font-weight: 600;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
    background: var(--plum-100);
    transform: translateX(4px);
}

.contact-link svg {
    color: var(--amber-500);
    flex-shrink: 0;
}

.visit-map {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
}

/* Footer */
.main-footer {
    background: var(--plum-900);
    color: var(--plum-200);
    padding: 48px 0;
    text-align: center;
}

.main-footer p {
    margin-bottom: 8px;
}

.main-footer a {
    color: var(--amber-300);
    transition: color 0.2s ease;
}

.main-footer a:hover {
    color: var(--amber-400);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--neutral-700);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero .container,
    .about .container,
    .visit .container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image img {
        height: 500px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-image img {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 16px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .visit-map {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}
