/* Reset & Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #e67e22;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --text-light: #7f8c8d;
    --text-dark: #2c3e50;
    --border-color: #e1e8ed;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    --gradient-accent: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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: 1rem;
    color: var(--text-light);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    font-size: 2rem;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f4 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23000" fill-opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
}

.hero-title {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.title-accent {
    color: var(--accent-color);
    display: block;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.opening-hours {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.hours-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.hours-time {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hours-days {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.image-stack {
    position: relative;
    height: 400px;
}

.stack-image {
    position: absolute;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

.main-image {
    width: 100%;
    height: 100%;
    z-index: 1;
}

.accent-image {
    width: 60%;
    height: 60%;
    top: -20px;
    right: -20px;
    z-index: 2;
    border: 4px solid var(--white);
}

.location-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.location-icon {
    font-size: 1.5rem;
}

.location-text {
    display: flex;
    flex-direction: column;
}

.location-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.location-text span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    text-align: right;
}

.stars {
    display: block;
    margin-bottom: 0.25rem;
}

.rating-score {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Sections */
section {
    padding: 6rem 0;
}

.section-label {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

/* Story Section */
.story-section {
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-paragraphs {
    margin: 2rem 0;
}

.story-paragraphs p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.highlight-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.highlight-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.visual-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    height: 400px;
}

.grid-image {
    border-radius: var(--border-radius);
    object-fit: cover;
    box-shadow: var(--shadow-light);
}

.grid-image.large {
    grid-row: 1 / -1;
    grid-column: 1;
}

.grid-image.small {
    grid-column: 2;
    grid-row: 2;
}

/* Products Section */
.products-section {
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

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

.product-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.card-header {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gradient-accent);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

.product-title {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features,
.product-list {
    list-style: none;
    color: var(--text-light);
}

.product-features li,
.product-list li {
    padding: 0.25rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.product-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

/* Process Section */
.process-section {
    background: var(--white);
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.process-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1rem;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.timeline-step {
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
}

.timeline-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-light);
}

.step-time {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.info-blocks {
    margin: 2rem 0;
}

.info-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

.info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-content p,
.info-content address {
    color: var(--text-light);
    font-style: normal;
    margin-bottom: 0;
}

.services-offered {
    margin-top: 2rem;
}

.services-offered h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: var(--white);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.contact-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.location-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    font-weight: 500;
    color: var(--text-dark);
}

.highlight-emoji {
    font-size: 1.25rem;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    flex: 1;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-tagline {
    color: #bdc3c7;
    margin-bottom: 0;
}

.footer-location {
    flex: 1;
    text-align: right;
}

.footer-location p {
    color: #bdc3c7;
    margin-bottom: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #bdc3c7;
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .story-content,
    .process-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .story-highlights {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-location {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .hero-content {
        text-align: center;
        gap: 2rem;
    }
    
    .image-stack {
        height: 300px;
    }
    
    .accent-image {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .story-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .visual-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr;
        height: 300px;
    }
    
    .grid-image.large {
        grid-row: 1;
        grid-column: 1;
    }
    
    .grid-image.small {
        grid-row: 2;
        grid-column: 1;
    }
    
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .brand-name {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 5rem 0 3rem;
    }
    
    .hero-cta {
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .opening-hours {
        justify-content: center;
        text-align: center;
    }
    
    .location-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}