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

:root {
    --forest: #064e3b;
    --forest-light: #065f46;
    --forest-dark: #022c22;
    --cream: #faf9f6;
    --cream-dark: #f5f4f0;
    --text: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #7a7a7a;
    --line: #e2e0db;
    --white: #ffffff;
    
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    --nav-height: 72px;
    --container-max: 1200px;
    --radius: 4px;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background-color: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── Navigation ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--forest);
}

.logo-mark {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--forest);
    transition: width 0.3s ease;
}

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

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

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

.nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: all 0.3s ease;
}

/* ─── Mobile Menu ─── */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 8px;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-link {
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    display: block;
    padding: 12px 0;
    transition: color 0.25s ease;
}

.mobile-link:hover {
    color: var(--forest);
}

/* ─── Hero ─── */
.hero {
    padding-top: calc(var(--nav-height) + 60px);
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.hero-eyebrow {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-headline em {
    font-style: italic;
    color: var(--forest);
}

.hero-body {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 460px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--forest);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--forest-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--line);
}

.btn-ghost:hover {
    border-color: var(--forest);
    color: var(--forest);
}

.hero-image {
    position: relative;
}

.hero-img-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
}

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

.hero-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.accent-line {
    width: 40px;
    height: 2px;
    background: var(--forest);
}

.hero-accent p {
    font-size: 0.82rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

/* ─── Section Divider ─── */
.section-divider {
    padding: 0 24px;
}

.divider-line {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 1px;
    background: var(--line);
}

/* ─── Section Shared ─── */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.02em;
}

.section-title em {
    font-style: italic;
    color: var(--forest);
}

/* ─── About ─── */
.about {
    padding: 100px 0;
}

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

.about-label {
    display: flex;
    align-items: center;
    gap: 16px;
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--forest);
}

.about-label p {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.about-body {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--text);
}

.value-item svg {
    color: var(--forest);
    flex-shrink: 0;
}

/* ─── Produce ─── */
.produce {
    padding: 100px 0;
    background: var(--white);
}

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

.produce-card {
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.produce-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.produce-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.produce-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.produce-card:hover .produce-img img {
    transform: scale(1.04);
}

.produce-info {
    padding: 28px 4px;
}

.produce-info h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
}

.produce-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── Bakery Highlight ─── */
.bakery-highlight {
    padding: 100px 0;
}

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

.bakery-image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 11/12;
}

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

.bakery-content .section-eyebrow {
    text-align: left;
}

.bakery-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.bakery-body {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 32px;
}

.bakery-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.bakery-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--text);
}

.list-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--forest);
    flex-shrink: 0;
}

/* ─── Visit ─── */
.visit {
    padding: 100px 0;
    background: var(--white);
}

.visit-header {
    text-align: center;
    margin-bottom: 60px;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.info-block {
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}

.info-block:first-child {
    border-top: 1px solid var(--line);
}

.info-block h3 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 12px;
}

.info-block p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.info-block a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.25s ease;
}

.info-block a:hover {
    color: var(--forest);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.95rem;
}

.hours-row span:first-child {
    color: var(--text-light);
}

.hours-row span:last-child {
    color: var(--text);
    font-weight: 400;
}

.visit-map {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 400px;
}

.visit-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

/* ─── Footer ─── */
.footer {
    padding: 60px 0 32px;
    background: var(--forest-dark);
    color: rgba(255,255,255,0.7);
}

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

.footer .logo-mark {
    color: var(--white);
}

.footer .logo-text {
    color: rgba(255,255,255,0.5);
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 280px;
    color: rgba(255,255,255,0.5);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.88rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}

/* ─── Scroll Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .about-grid {
        gap: 48px;
    }
    
    .bakery-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 64px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding-top: calc(var(--nav-height) + 40px);
        padding-bottom: 60px;
        min-height: auto;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-img-wrapper {
        aspect-ratio: 3/2;
    }
    
    .hero-accent {
        bottom: -16px;
        left: 16px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-label {
        margin-bottom: 8px;
    }
    
    .produce-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bakery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bakery-image {
        aspect-ratio: 4/3;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-headline {
        font-size: 1.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}
