* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    color: #2f2a24;
    background: #f8f4ee;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: #6b2f1f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(36, 28, 22, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 0;
}

.site-logo {
    width: 86px;
    height: 86px;
    object-fit: contain;
    border-radius: 50%;
}

.facebook-embed {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
}

.facebook-embed .fb-page,
.facebook-embed .fb_iframe_widget,
.facebook-embed .fb_iframe_widget span,
.facebook-embed iframe {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.site-nav a {
    color: #f5ede3;
    font-size: 0.98rem;
    letter-spacing: 0.03em;
}

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(25, 18, 12, 0.70), rgba(25, 18, 12, 0.85)),
        url("../../images/pantry_portrait.jpg") center/cover no-repeat;
    color: #fff8f0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.12), rgba(0,0,0,0.36));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 110px 0 90px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.8rem;
    margin-bottom: 14px;
    color: #f0d6b3;
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2.6rem, 6vw, 5rem);
    line-height: 1.05;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin: 0 0 10px;
    color: #f2dfcb;
}

.hero-text {
    font-size: 1.1rem;
    margin: 0 0 28px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-block;
    padding: 14px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-primary {
    background: #8a3d24;
    color: #ffffff;
}

.btn-primary:hover {
    background: #73321d;
}

.btn-secondary {
    background: rgba(255, 248, 240, 0.14);
    color: #fff8f0;
    border: 1px solid rgba(255, 248, 240, 0.35);
}

.intro-strip {
    background: #2f241d;
    color: #f7ede0;
    padding: 22px 0;
    text-align: center;
    font-size: 1.08rem;
}

.section {
    padding: 80px 0;
}

.section-light {
    background: #f8f4ee;
}

.section-dark {
    background: #241b16;
    color: #f6eee6;
}

.section-cream {
    background: #efe1d1;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 36px;
}

.section-heading h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.two-column {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.text-column h2,
.visit-card h2,
.cta-box h2 {
    margin-top: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.feature-card {
    background: #fffdf9;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(58, 41, 29, 0.10);
    border: 1px solid rgba(80, 55, 33, 0.10);
}

.feature-card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.feature-list {
    margin: 0;
    padding-left: 18px;
}

.feature-list li {
    margin-bottom: 12px;
}

.signature-block {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 28px;
    background: #fff9f2;
    border-radius: 22px;
    padding: 18px;
    border: 1px solid rgba(111, 79, 52, 0.12);
}

.signature-image-wrap {
    flex: 0 0 170px;
}

.signature-image {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 18px;
}

.signature-heading {
    margin: 0 0 8px;
    font-weight: 700;
    font-size: 1.1rem;
}

.carousel {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.24);
}

.carousel-track {
    position: relative;
    min-height: 560px;
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-slide img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    color: #2b221d;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 2;
}

.carousel-btn.prev {
    left: -18px;
}

.carousel-btn.next {
    right: -18px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
}

.dot.active {
    background: #d9b58d;
}

.suppliers-section {
    overflow: hidden;
}

.supplier-marquee {
    overflow: hidden;
    position: relative;
    background: #fffdf9;
    border-radius: 20px;
    border: 1px solid rgba(80, 55, 33, 0.10);
    padding: 18px 0;
}

.supplier-track {
    display: flex;
    width: max-content;
    animation: scrollSuppliers 24s linear infinite;
}

.supplier-logo {
    min-width: 180px;
    margin: 0 14px;
    padding: 22px 18px;
    border-radius: 16px;
    background: #f2e8dc;
    text-align: center;
    font-weight: 700;
    color: #6b4d32;
    border: 1px dashed rgba(107, 77, 50, 0.32);
}

@keyframes scrollSuppliers {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.visit-card {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 35px rgba(71, 44, 25, 0.08);
}

.cta-section {
    background: linear-gradient(135deg, #3a261b, #6f3b26);
    color: #fff4ea;
}

.cta-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 24px;
}

.site-footer {
    background: #1e1713;
    color: #eadccc;
    text-align: center;
    padding: 28px 0;
}

.footer-inner p {
    margin: 6px 0;
}

@media (max-width: 900px) {
    .two-column,
    .visit-grid {
        grid-template-columns: 1fr;
    }

    .carousel-slide img,
    .carousel-track {
        height: 420px;
        min-height: 420px;
    }

    .carousel-btn.prev {
        left: 10px;
    }

    .carousel-btn.next {
        right: 10px;
    }
}

@media (max-width: 700px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
    }

    .site-nav {
        justify-content: center;
    }

    .hero {
        min-height: 76vh;
    }

    .signature-block {
        flex-direction: column;
        align-items: flex-start;
    }

    .signature-image-wrap,
    .signature-image {
        width: 100%;
        max-width: 280px;
        height: auto;
    }

    .section {
        padding: 60px 0;
    }

    .carousel-slide img,
    .carousel-track {
        height: 300px;
        min-height: 300px;
    }
}