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

:root {
    --burgundy: #722F37;
    --burgundy-deep: #5A252C;
    --blush: #F5E6D8;
    --blush-light: #FDF6F0;
    --blush-dark: #E8D5C4;
    --cream: #FFF9F5;
    --charcoal: #1A1A1A;
    --text: #2C2C2C;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 240, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(114, 47, 55, 0.08);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 40px rgba(114, 47, 55, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--burgundy);
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--burgundy);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--burgundy);
    transition: var(--transition);
}

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

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

.nav-cta {
    background: var(--burgundy) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 100px;
    font-size: 0.875rem !important;
    font-weight: 600 !important;
}

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

.nav-cta:hover {
    background: var(--burgundy-deep) !important;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: var(--transition);
    display: block;
}

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

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

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

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 70% 20%, rgba(245, 230, 216, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(114, 47, 55, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

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

.hero-sub {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 600/750;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(114, 47, 55, 0.15);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--blush);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.6;
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--burgundy);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.06;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(114, 47, 55, 0.25);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid rgba(26, 26, 26, 0.2);
}

.btn-ghost:hover {
    border-color: var(--burgundy);
    color: var(--burgundy);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ─── Marquee ─── */
.marquee {
    background: var(--burgundy);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.marquee-dot {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.6rem;
    white-space: nowrap;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── Section Shared ─── */
.section-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--charcoal);
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

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

/* ─── About ─── */
.about {
    padding: 8rem 0;
    background: var(--cream);
}

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

.about-images {
    position: relative;
    height: 650px;
}

.about-img-main {
    width: 75%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(114, 47, 55, 0.12);
}

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

.about-img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(114, 47, 55, 0.15);
    border: 6px solid var(--cream);
}

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

.about-accent-box {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--burgundy);
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 16px 40px rgba(114, 47, 55, 0.3);
}

.accent-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.accent-label {
    font-size: 0.8rem;
    opacity: 0.8;
    letter-spacing: 0.02em;
}

.about-content .lead {
    margin-bottom: 1.25rem;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.feature svg {
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.25rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ─── Bakery ─── */
.bakery {
    padding: 8rem 0;
    background: var(--blush);
}

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

.section-header .section-lead {
    margin: 0 auto;
}

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

.bakery-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(114, 47, 55, 0.08);
    transition: var(--transition);
}

.bakery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(114, 47, 55, 0.15);
}

.bakery-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.bakery-card:hover img {
    transform: scale(1.05);
}

.bakery-card-content {
    padding: 2rem;
}

.bakery-card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.bakery-card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ─── Groceries ─── */
.groceries {
    padding: 8rem 0;
    background: var(--cream);
}

.groceries-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.grocery-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.grocery-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text);
}

.grocery-list svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

.groceries-visual {
    position: relative;
}

.groceries-visual img {
    width: 100%;
    height: auto;
    aspect-ratio: 550/700;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(114, 47, 55, 0.12);
}

.grocery-floating-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 16px 40px rgba(114, 47, 55, 0.12);
}

.grocery-floating-card svg {
    color: var(--burgundy);
    flex-shrink: 0;
}

.grocery-floating-card span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
}

/* ─── Visit ─── */
.visit {
    padding: 8rem 0;
    background: var(--blush);
}

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

.visit-detail {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(114, 47, 55, 0.1);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
}

.visit-detail svg {
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.visit-detail p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--burgundy);
    text-decoration: none;
    transition: var(--transition);
}

.visit-detail a:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

.visit-map {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(114, 47, 55, 0.12);
    min-height: 480px;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 24px;
}

/* ─── CTA / Contact ─── */
.cta {
    padding: 8rem 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.cta .container {
    position: relative;
    z-index: 1;
}

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

.cta-text .section-eyebrow {
    color: rgba(255, 255, 255, 0.6);
}

.cta-text .section-headline {
    color: var(--white);
}

.cta-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 440px;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--blush-dark);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--blush-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(114, 47, 55, 0.08);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #E8F5E9;
    border-radius: 12px;
    margin-top: 1rem;
    color: #2E7D32;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success svg {
    flex-shrink: 0;
}

/* ─── Footer ─── */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand .logo-mark {
    background: var(--burgundy);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

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

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero .container,
    .about-grid,
    .groceries-layout,
    .visit-grid,
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-images {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .bakery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bakery-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .grocery-floating-card {
        left: 1rem;
        bottom: 1rem;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(253, 246, 240, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-120%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(114, 47, 55, 0.08);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 4rem;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

    .hero-scroll {
        display: none;
    }

    .bakery-grid {
        grid-template-columns: 1fr;
    }

    .bakery-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .bakery-card img {
        height: 260px;
    }

    .about {
        padding: 5rem 0;
    }

    .about-images {
        height: 380px;
    }

    .bakery,
    .groceries,
    .visit {
        padding: 5rem 0;
    }

    .cta {
        padding: 5rem 0;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer {
        padding: 3.5rem 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .about-images {
        height: 300px;
    }

    .about-accent-box {
        top: 1rem;
        right: 1rem;
        padding: 1rem 1.25rem;
    }

    .accent-number {
        font-size: 1.75rem;
    }

    .visit-map,
    .map-placeholder iframe {
        min-height: 300px;
    }
}
