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

:root {
    --plum: #5D3A5A;
    --plum-deep: #3E2439;
    --plum-light: #7B5074;
    --plum-muted: #F3ECF2;
    --plum-bg: #FAF6FA;
    --amber: #F5C962;
    --amber-deep: #D4A017;
    --amber-light: #FDE8A0;
    --amber-bg: #FFFBF0;
    --text: #2A1F2B;
    --text-muted: #6B5A6E;
    --text-light: #9B8A9E;
    --white: #FFFFFF;
    --off-white: #FEFCFF;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --shadow-sm: 0 2px 8px rgba(93, 58, 90, 0.06);
    --shadow-md: 0 4px 20px rgba(93, 58, 90, 0.10);
    --shadow-lg: 0 8px 40px rgba(93, 58, 90, 0.14);
    --shadow-xl: 0 16px 60px rgba(93, 58, 90, 0.18);
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--off-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Background pattern */
.bg-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    background-image: radial-gradient(circle at 20% 20%, var(--plum-muted) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, var(--amber-bg) 0%, transparent 50%);
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 200;
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 12px;
}

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn:focus-visible {
    outline: 3px solid var(--amber);
    outline-offset: 2px;
}
.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
}
.btn-lg {
    padding: 18px 36px;
    font-size: 1.0625rem;
    border-radius: var(--radius-xl);
}
.btn-plum {
    background: var(--plum);
    color: var(--white);
    border-color: var(--plum);
}
.btn-plum:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-amber {
    background: var(--amber);
    color: var(--plum-deep);
    border-color: var(--amber);
}
.btn-amber:hover {
    background: var(--amber-deep);
    border-color: var(--amber-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline {
    background: transparent;
    color: var(--plum);
    border-color: var(--plum);
}
.btn-outline:hover {
    background: var(--plum);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
    background: var(--white);
    color: var(--plum);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* Section tags */
.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum);
    background: var(--plum-muted);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* Section titles */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.text-center { text-align: center; }

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 252, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(93, 58, 90, 0.06);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: var(--shadow-md);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--plum);
}
.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--plum);
    color: var(--amber);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 400;
    flex-shrink: 0;
}
.logo-text {
    font-family: var(--font-display);
    font-size: 1.1875rem;
    font-weight: 400;
    color: var(--plum);
}
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.main-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}
.main-nav a:hover {
    color: var(--plum);
    background: var(--plum-muted);
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--plum);
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-toggle:hover {
    background: var(--plum-muted);
}

/* ─── HERO ─── */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(170deg, var(--off-white) 0%, var(--plum-bg) 60%, var(--amber-bg) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 201, 98, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(93, 58, 90, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--plum);
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.hero-badge svg {
    color: var(--amber-deep);
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}
.text-amber {
    color: var(--plum);
    position: relative;
}
.text-amber::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--amber);
    opacity: 0.4;
    border-radius: 4px;
    z-index: -1;
}
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.hero-visual {
    position: relative;
    min-height: 580px;
}
.hero-img-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 500/620;
}
.hero-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}
.float-card--top {
    top: 40px;
    right: -30px;
    animation-delay: 0s;
}
.float-card--bottom {
    bottom: 80px;
    left: -30px;
    animation-delay: 2s;
}
.float-card-icon {
    width: 44px;
    height: 44px;
    background: var(--plum-muted);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}
.float-card-icon--amber {
    background: var(--amber-light);
    color: var(--amber-deep);
}
.float-card-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
}
.float-card-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 2px;
}

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

/* ─── ABOUT ─── */
.about {
    padding: 100px 0;
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 520/480;
}
.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
    aspect-ratio: 300/260;
}
.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 72px;
    height: 72px;
    background: var(--amber);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-deep);
    box-shadow: var(--shadow-md);
    z-index: 2;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-content p {
    color: var(--text-muted);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 16px;
}
.about-features {
    list-style: none;
    margin-top: 28px;
    display: grid;
    gap: 14px;
}
.about-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
}
.about-feature-icon {
    width: 36px;
    height: 36px;
    background: var(--plum-muted);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}

/* ─── PRODUCTS ─── */
.products {
    padding: 100px 0;
    background: var(--plum-bg);
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 56px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-card-img {
    overflow: hidden;
    aspect-ratio: 400/300;
}
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card-img img {
    transform: scale(1.05);
}
.product-card-body {
    padding: 28px;
}
.product-card-title {
    font-size: 1.375rem;
    margin-bottom: 10px;
    color: var(--plum);
}
.product-card-body p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ─── FRESH BANNER ─── */
.fresh-banner {
    padding: 100px 0;
    background: var(--plum);
    position: relative;
    overflow: hidden;
}
.fresh-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 201, 98, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.fresh-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.fresh-banner-content .section-tag {
    background: rgba(245, 201, 98, 0.2);
    color: var(--amber);
}
.fresh-banner-content .section-title {
    color: var(--white);
    margin-bottom: 20px;
}
.fresh-banner-content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 460px;
}
.fresh-banner-visual {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 480/560;
}
.fresh-banner-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ─── VISIT ─── */
.visit {
    padding: 100px 0;
    background: var(--white);
}
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.visit-info .section-tag { margin-bottom: 16px; }
.visit-info .section-title { margin-bottom: 28px; }
.visit-details {
    font-style: normal;
    background: var(--plum-bg);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}
.visit-details p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text);
}
.visit-phone {
    color: var(--plum);
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    transition: var(--transition);
}
.visit-phone:hover {
    color: var(--amber-deep);
}
.visit-hours {
    margin-bottom: 36px;
}
.visit-hours h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--plum);
    margin-bottom: 14px;
}
.visit-hours p {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 10px 0;
    border-bottom: 1px solid var(--plum-muted);
    font-size: 0.9375rem;
}
.visit-hours p:first-child { border-top: 1px solid var(--plum-muted); }
.visit-hours p span:first-child {
    font-weight: 700;
    color: var(--text);
}
.visit-hours p span:last-child {
    color: var(--text-muted);
}
.visit-hours-note {
    font-size: 0.8125rem !important;
    color: var(--text-light) !important;
    border: none !important;
    padding-top: 12px !important;
    font-style: italic;
}
.visit-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 560/480;
    position: relative;
}
.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}
.map-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.map-link:hover img {
    transform: scale(1.03);
}
.map-overlay {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--white);
    color: var(--plum);
    font-weight: 800;
    font-size: 0.9375rem;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}
.map-link:hover .map-overlay {
    background: var(--plum);
    color: var(--white);
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--plum-deep);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-mark {
    background: var(--amber);
    color: var(--plum-deep);
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    margin-bottom: 16px;
}
.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.375rem;
    display: block;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: var(--transition);
    padding: 4px 0;
}
.footer-links a:hover {
    color: var(--amber);
}
.footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 8px;
}
.footer-contact a {
    color: var(--amber);
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
}
.footer-contact a:hover {
    color: var(--amber-light);
}
.footer-bottom {
    padding-top: 28px;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.4);
}

/* ─── MOBILE NAV ─── */
@media (max-width: 900px) {
    .nav-toggle { display: flex; align-items: center; justify-content: center; }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(254, 252, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 24px;
        border-bottom: 1px solid rgba(93, 58, 90, 0.08);
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
        z-index: 99;
    }
    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
        text-align: center;
    }
    .main-nav a {
        display: block;
        padding: 14px 16px;
    }
    .main-nav .btn {
        margin-top: 8px;
        justify-content: center;
    }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .hero-grid,
    .about-grid,
    .fresh-banner-inner,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero { padding: 100px 0 60px; }
    .hero-visual { min-height: 400px; order: -1; }
    .hero-img-card { aspect-ratio: 4/3; }
    .float-card { display: none; }
    .hero-title { font-size: clamp(2rem, 7vw, 2.75rem); }
    .hero-subtitle { max-width: none; }
    .hero-actions { justify-content: center; }
    .hero-content { text-align: center; }
    .hero-badge { margin: 0 auto 20px; }
    .products-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .about-img-secondary { right: 10px; bottom: -20px; }
    .about-accent { top: -10px; left: -10px; width: 56px; height: 56px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .fresh-banner-visual { order: -1; aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero { padding: 90px 0 50px; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .visit-cta-group { flex-direction: column; }
    .visit-cta-group .btn { width: 100%; justify-content: center; }
    .btn-lg { padding: 16px 28px; font-size: 1rem; }
}

/* ─── ANIMATIONS ─── */
.reveal {
    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);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
