/* ========== Reset & Base ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-plum: #7B3252;
    --color-plum-dark: #5C2239;
    --color-plum-light: #9B4D6E;
    --color-plum-pale: #F3E5EA;
    --color-amber: #D4882C;
    --color-amber-dark: #B8721F;
    --color-amber-light: #F0C26E;
    --color-cream: #FDF6EC;
    --color-cream-dark: #F5E6D0;
    --color-text: #2D1F24;
    --color-text-light: #6B5560;
    --color-white: #FFFFFF;
    --color-bg: #FFFAF5;

    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(123, 50, 82, 0.06);
    --shadow-md: 0 8px 30px rgba(123, 50, 82, 0.1);
    --shadow-lg: 0 16px 60px rgba(123, 50, 82, 0.14);
    --shadow-card: 0 4px 20px rgba(123, 50, 82, 0.08);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-plum);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 500;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 16px;
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-plum);
    color: var(--color-white);
    border-color: var(--color-plum);
    box-shadow: 0 4px 16px rgba(123, 50, 82, 0.3);
}

.btn-primary:hover {
    background: var(--color-plum-dark);
    border-color: var(--color-plum-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 50, 82, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--color-plum);
    border-color: var(--color-plum);
}

.btn-outline:hover {
    background: var(--color-plum);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-plum);
    border-color: var(--color-plum-light);
}

.btn-outline-light:hover {
    background: var(--color-plum-pale);
    transform: translateY(-2px);
}

/* ========== Navbar ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 246, 236, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 50, 82, 0.08);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(253, 246, 236, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-plum);
}

.logo-icon {
    color: var(--color-plum);
}

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

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

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

.nav-links a:not(.btn):hover {
    color: var(--color-plum);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-plum);
    border-radius: 2px;
    transition: all var(--transition);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger {
    top: 50%;
    margin-top: -4px;
}

.hamburger::before {
    content: '';
    top: -7px;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--color-plum);
    border-radius: 2px;
    position: absolute;
}

.hamburger::after {
    content: '';
    bottom: -7px;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--color-plum);
    border-radius: 2px;
    position: absolute;
}

.mobile-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.mobile-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ========== Hero ========== */
.hero {
    padding-top: 100px;
    padding-bottom: 0;
    background: var(--color-cream);
    overflow: hidden;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 80px;
}

.hero-content {
    max-width: 540px;
}

.hero-tag {
    display: inline-block;
    background: var(--color-plum-pale);
    color: var(--color-plum);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 24px;
}

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

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

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.trust-item svg {
    color: var(--color-amber);
    flex-shrink: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 680px;
}

.hero-img-main {
    width: 75%;
    height: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

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

.hero-img-float {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}

.hero-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-bread {
    width: 55%;
    bottom: 60px;
    right: 0;
    height: 220px;
}

.hero-img-produce {
    width: 48%;
    top: 40px;
    right: 10%;
    height: 180px;
    border: 4px solid var(--color-white);
}

.float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--color-amber);
    color: var(--color-white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    letter-spacing: 0.04em;
}

.hero-wave {
    margin-top: -1px;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ========== Section Shared ========== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    background: var(--color-plum-pale);
    color: var(--color-plum);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

/* ========== Products ========== */
.products {
    padding: 96px 0;
    background: var(--color-cream);
}

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

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

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

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

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-body {
    padding: 28px;
}

.product-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.card-plum .product-icon {
    background: var(--color-plum-pale);
    color: var(--color-plum);
}

.card-amber .product-icon {
    background: #FEF0D7;
    color: var(--color-amber);
}

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

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

/* ========== About ========== */
.about {
    padding: 100px 0;
    background: var(--color-bg);
}

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

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

.about-img-main {
    width: 78%;
    height: 460px;
    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;
}

.about-img-accent {
    position: absolute;
    width: 55%;
    height: 240px;
    bottom: 0;
    right: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 4px solid var(--color-white);
}

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

.about-stat {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    background: var(--color-plum);
    color: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    z-index: 4;
    box-shadow: var(--shadow-md);
}

.about-stat .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-stat .stat-label {
    font-size: 0.82rem;
    opacity: 0.85;
    font-weight: 500;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

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

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

.feature-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-plum-pale);
    color: var(--color-plum);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ========== Visit ========== */
.visit {
    padding: 96px 0;
    background: var(--color-cream);
}

.visit-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-white);
}

.visit-content {
    padding: 64px 56px;
    background: var(--color-plum);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit-content .section-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-amber-light);
}

.visit-content .section-title {
    color: var(--color-white);
    text-align: left;
    margin-bottom: 16px;
}

.visit-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    color: var(--color-white);
    transition: all var(--transition);
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.7;
    font-weight: 500;
}

.contact-value {
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
}

.btn-primary-light {
    background: var(--color-amber);
    border-color: var(--color-amber);
    color: var(--color-text);
}

.btn-primary-light:hover {
    background: var(--color-amber-dark);
    border-color: var(--color-amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 136, 44, 0.35);
}

.visit-visual {
    height: 100%;
    min-height: 500px;
}

.visit-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== Footer ========== */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

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

.logo-light {
    color: var(--color-white);
    margin-bottom: 16px;
}

.logo-light .logo-icon {
    color: var(--color-amber-light);
}

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

.footer-info h4,
.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-info address {
    font-style: normal;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-link {
    color: var(--color-amber-light);
    font-weight: 500;
    transition: color var(--transition);
}

.footer-link:hover {
    color: var(--color-amber);
}

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

.footer-links a {
    font-size: 0.95rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

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

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

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

    .hero-visual {
        height: 540px;
    }

    .about-grid {
        gap: 48px;
    }

    .visit-card {
        grid-template-columns: 1fr;
    }

    .visit-visual {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 99;
    }

    .nav-links.open {
        right: 0;
    }

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

    .mobile-toggle {
        display: block;
        z-index: 101;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        height: 420px;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-img-main {
        width: 80%;
        height: 380px;
    }

    .hero-img-bread {
        width: 58%;
        height: 170px;
    }

    .hero-img-produce {
        width: 55%;
        height: 150px;
    }

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

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

    .about-images {
        height: 440px;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-content .section-title {
        text-align: center;
    }

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

    .about-features {
        justify-items: center;
    }

    .visit-content {
        padding: 48px 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        justify-content: center;
    }

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

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

    .hero {
        padding-top: 80px;
    }

    .hero-visual {
        height: 340px;
    }

    .hero-img-main {
        height: 300px;
    }

    .hero-img-bread {
        height: 140px;
    }

    .hero-img-produce {
        height: 120px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 0.9rem;
    }

    .products {
        padding: 72px 0;
    }

    .about {
        padding: 72px 0;
    }

    .about-images {
        height: 360px;
    }

    .about-img-main {
        height: 340px;
    }

    .about-img-accent {
        height: 180px;
    }

    .visit {
        padding: 72px 0;
    }

    .visit-content {
        padding: 36px 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

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

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