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

:root {
    --emerald: #047857;
    --emerald-dark: #065f46;
    --emerald-light: #06b6d4;
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --cream-light: #FFFCF7;
    --accent: #F59E0B;
    --accent-light: #FCD34D;
    --text-dark: #1A2E2A;
    --text-mid: #374151;
    --text-light: #6B7280;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(4, 120, 87, 0.08);
    --shadow-md: 0 8px 30px rgba(4, 120, 87, 0.12);
    --shadow-lg: 0 20px 60px rgba(4, 120, 87, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.accent-serif {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--emerald);
}

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

/* GEOMETRIC BACKGROUND */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--emerald);
    top: -200px;
    right: -150px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: 20%;
    left: -100px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--emerald-light);
    top: 50%;
    right: 5%;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    top: 30%;
    left: 10%;
    border-radius: 50%;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(4, 120, 87, 0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(253, 248, 240, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--emerald-dark);
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--emerald);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
    background: var(--emerald-dark);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--emerald);
    border-radius: 2px;
    transition: var(--transition);
}

.nav a:hover {
    color: var(--emerald);
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--emerald);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(4, 120, 87, 0.08);
    border: 1px solid rgba(4, 120, 87, 0.15);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease forwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s 0.1s ease forwards;
    opacity: 0;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 500px;
    animation: fadeInUp 0.6s 0.2s ease forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s 0.3s ease forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background: var(--emerald);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(4, 120, 87, 0.3);
}

.btn-primary:hover {
    background: var(--emerald-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(4, 120, 87, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid rgba(4, 120, 87, 0.2);
}

.btn-secondary:hover {
    border-color: var(--emerald);
    color: var(--emerald);
    transform: translateY(-3px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.6s 0.4s ease forwards;
    opacity: 0;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
}

.stat-divider {
    width: 40px;
    height: 2px;
    background: rgba(4, 120, 87, 0.2);
    border-radius: 2px;
}

/* HERO VISUAL */
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s 0.2s ease forwards;
    opacity: 0;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
    animation: float 3s ease-in-out infinite;
}

.hero-float-card img {
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.hero-float-card.card-produce {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.hero-float-card.card-bakery {
    bottom: 15%;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-shape-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--accent);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    opacity: 0.15;
    z-index: -1;
}

/* SECTION TAGS */
.section-tag {
    display: inline-block;
    background: rgba(4, 120, 87, 0.08);
    border: 1px solid rgba(4, 120, 87, 0.15);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--emerald);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 560px;
}

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

/* ABOUT */
.about {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    z-index: 3;
    border: 6px solid var(--cream);
}

.about-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--emerald);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: -30px;
    left: -30px;
    opacity: 0.08;
    z-index: 1;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(4, 120, 87, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background: var(--emerald);
    color: var(--white);
    transform: rotate(-5deg) scale(1.05);
}

.feature-item strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

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

/* PRODUCTS */
.products {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.products .section-header {
    margin-bottom: 60px;
}

.products .section-desc {
    margin: 0 auto;
}

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

.product-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(4, 120, 87, 0.06);
}

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

.product-card-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.product-tag {
    background: var(--emerald);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card-body {
    padding: 28px;
}

.product-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-card-body p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* BAKERY */
.bakery {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

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

.bakery-visual {
    position: relative;
}

.bakery-img-stack {
    position: relative;
}

.bakery-img-stack img:first-child {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    display: block;
}

.bakery-img-secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--cream);
}

.bakery-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bakery-content p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.bakery-highlights {
    display: flex;
    gap: 32px;
    margin: 36px 0;
}

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

.highlight-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--emerald);
    line-height: 1;
}

.highlight-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 6px;
}

/* VISIT */
.visit {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.visit-banner {
    background: var(--emerald);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.visit-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, var(--white) 1px, transparent 0);
    background-size: 32px 32px;
}

.visit-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.visit .section-tag {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--cream);
}

.visit .section-title {
    color: var(--white);
}

.visit .section-title .accent-serif {
    color: var(--accent-light);
}

.visit-desc {
    font-size: 1.1rem;
    color: rgba(253, 248, 240, 0.8);
    line-height: 1.7;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-light);
}

.visit-detail strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    color: rgba(253, 248, 240, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.visit-detail a:hover {
    color: var(--accent-light);
}

/* CONTACT */
.contact {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    background: var(--white);
}

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

.contact-info p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
}

.contact-method:hover {
    border-color: rgba(4, 120, 87, 0.15);
    background: var(--cream-light);
    transform: translateX(4px);
}

.method-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(4, 120, 87, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

.contact-method span {
    font-size: 0.95rem;
    color: var(--text-mid);
}

.contact-form-wrapper {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(4, 120, 87, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid rgba(4, 120, 87, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 4px rgba(4, 120, 87, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    animation: fadeInUp 0.5s ease;
}

.form-success.show {
    display: flex;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(4, 120, 87, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-mid);
    font-size: 1rem;
}

/* FOOTER */
.site-footer {
    background: var(--text-dark);
    color: rgba(253, 248, 240, 0.7);
    padding: 80px 0 0;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    color: var(--cream);
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    background: var(--emerald);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(253, 248, 240, 0.55);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--cream);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: rgba(253, 248, 240, 0.55);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-links span {
    display: block;
    font-size: 0.95rem;
    color: rgba(253, 248, 240, 0.55);
    padding: 6px 0;
}

.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-contact a {
    display: block;
    color: rgba(253, 248, 240, 0.55);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 4px 0;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 248, 240, 0.08);
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(253, 248, 240, 0.35);
}

/* SCROLL ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .bakery-grid,
    .visit-content,
    .contact-grid {
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav.open {
        right: 0;
    }

    .nav a {
        font-size: 1.1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .hero-float-card.card-produce {
        left: 0;
    }

    .hero-float-card.card-bakery {
        right: 0;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .about-grid,
    .bakery-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-accent {
        right: 0;
    }

    .bakery-img-secondary {
        left: 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .visit-banner {
        padding: 48px 28px;
    }

    .visit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bakery-highlights {
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }
}

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

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .bakery-highlights {
        flex-direction: column;
        gap: 20px;
    }
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
}

.nav-overlay.show {
    display: block;
}
