/* ============================================
   D & J Country Store — Custom Styles
   Bold Editorial | Burgundy + Blush
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-burgundy: #581C28;
    --color-burgundy-deep: #3D1219;
    --color-burgundy-light: #7A2535;
    --color-blush: #FDF2F2;
    --color-blush-mid: #F8E4E4;
    --color-blush-dark: #E8C4C4;
    --color-cream: #FFFAF8;
    --color-warm-white: #FEF6F0;
    --color-text: #1A0A0D;
    --color-text-muted: #6B4C52;
    --color-text-light: #9A7B80;
    --color-border: #F0D0D0;
    --color-white: #FFFFFF;
    
    --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
    --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(88, 28, 40, 0.06);
    --shadow-md: 0 4px 20px rgba(88, 28, 40, 0.08);
    --shadow-lg: 0 8px 40px rgba(88, 28, 40, 0.12);
    --shadow-xl: 0 16px 60px rgba(88, 28, 40, 0.15);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* --- Custom Cursor --- */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-burgundy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s, transform 0.1s;
    mix-blend-mode: difference;
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--color-burgundy);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
}

/* --- Typography --- */
.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.section-heading.large {
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.1;
}

.heading-accent {
    color: var(--color-burgundy);
    font-style: italic;
}

.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.label-line {
    width: 40px;
    height: 1.5px;
    background: var(--color-burgundy);
    display: inline-block;
    flex-shrink: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-burgundy);
    color: var(--color-white);
    border: 2px solid var(--color-burgundy);
}

.btn-primary:hover {
    background: var(--color-burgundy-deep);
    border-color: var(--color-burgundy-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--color-burgundy);
    border: 2px solid var(--color-burgundy);
}

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

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 250, 248, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: var(--space-sm) 0;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

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

.logo-text {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--color-burgundy);
    color: var(--color-white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
}

.hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
    display: block;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-base);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

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

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-text);
    transition: color var(--transition-fast);
}

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

.mobile-menu-cta {
    margin-top: var(--space-md);
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--color-burgundy);
    color: var(--color-white) !important;
    padding: 0.875rem 2rem;
    border-radius: 50px;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 0 4rem;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(88, 28, 40, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(88, 28, 40, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.eyebrow-line {
    width: 32px;
    height: 2px;
    background: var(--color-burgundy);
    display: inline-block;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.headline-line {
    display: block;
}

.headline-accent {
    color: var(--color-burgundy);
}

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

.hero-subtext {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 480px;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--color-border);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-burgundy);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Image Stack */
.hero-right {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

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

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.hero-img:hover img {
    transform: scale(1.03);
}

.hero-img-main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-secondary {
    width: 260px;
    height: 340px;
    bottom: 20px;
    right: 140px;
    z-index: 3;
    border: 4px solid var(--color-cream);
}

.hero-badge {
    position: absolute;
    bottom: 260px;
    left: -20px;
    z-index: 4;
    background: var(--color-burgundy);
    color: var(--color-white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
}

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

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

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

/* --- Marquee --- */
.marquee-section {
    background: var(--color-burgundy);
    padding: var(--space-md) 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-blush);
    letter-spacing: 0.05em;
}

.marquee-dot {
    font-size: 0.5rem !important;
    color: var(--color-blush-dark) !important;
}

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

/* --- About Section --- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--color-warm-white);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.about-label {
    margin-bottom: var(--space-xl);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-img-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 4px solid var(--color-warm-white);
    box-shadow: var(--shadow-md);
}

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

.about-text-col .section-heading {
    margin-bottom: var(--space-lg);
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.about-features {
    margin-top: var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

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

.feature-item svg {
    color: var(--color-burgundy);
    flex-shrink: 0;
}

/* --- Products Section --- */
.products {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.products-header {
    margin-bottom: var(--space-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-lg);
}

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

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

.product-card--large {
    grid-column: span 7;
}

.product-card--wide {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

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

.product-card--wide .product-card-img {
    height: 100%;
    min-height: 300px;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-content {
    padding: var(--space-lg);
}

.product-card--wide .product-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-2xl);
}

.product-card-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-blush-dark);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.product-card-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.product-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-md);
    font-weight: 500;
    color: var(--color-burgundy);
    transition: gap var(--transition-fast);
}

.product-card-link:hover {
    gap: var(--space-sm);
}

/* --- Fresh Section --- */
.fresh-section {
    padding: var(--space-4xl) 0;
    background: var(--color-burgundy);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.fresh-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(253, 242, 242, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(253, 242, 242, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.fresh-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
}

.fresh-content .section-label {
    color: var(--color-blush);
}

.fresh-content .label-line {
    background: var(--color-blush);
}

.fresh-content .section-heading {
    color: var(--color-white);
}

.fresh-content .heading-accent {
    color: var(--color-blush);
}

.fresh-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(253, 242, 242, 0.75);
    max-width: 480px;
}

.fresh-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--space-md);
    height: 500px;
}

.fresh-img {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.fresh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.fresh-img--1 {
    grid-row: span 2;
}

.fresh-img--1 img {
    height: 100%;
}

/* --- Visit Section --- */
.visit-section {
    padding: var(--space-4xl) 0;
    background: var(--color-warm-white);
}

.visit-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.visit-info .section-heading {
    margin-bottom: var(--space-xl);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.visit-icon {
    width: 48px;
    height: 48px;
    background: var(--color-blush);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy);
    flex-shrink: 0;
}

.visit-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.visit-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.visit-text a,
.visit-text span {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 500;
}

.visit-text a:hover {
    color: var(--color-burgundy);
}

.visit-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Visit CTA Card */
.visit-cta-col {
    position: sticky;
    top: 100px;
}

.visit-cta-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.cta-icon {
    width: 72px;
    height: 72px;
    background: var(--color-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--color-burgundy);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

.cta-hours {
    text-align: center;
    padding: var(--space-lg);
    background: var(--color-blush);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.cta-hours h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-burgundy);
    margin-bottom: var(--space-xs);
}

.cta-hours p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.hours-note {
    font-size: 0.8rem !important;
    color: var(--color-text-light) !important;
    font-style: italic;
}

.visit-cta-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

/* --- Contact Section --- */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--color-cream);
}

.contact-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.contact-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-3xl);
}

.contact-header .section-heading {
    margin-bottom: var(--space-md);
}

.contact-intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.form-input {
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-cream);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-burgundy);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(88, 28, 40, 0.08);
}

.form-input::placeholder {
    color: var(--color-text-light);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B4C52' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.btn-submit {
    align-self: flex-start;
}

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-2xl);
    gap: var(--space-md);
}

.form-success.active {
    display: flex;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--color-blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy);
}

.form-success h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-success p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}

.form-success a {
    color: var(--color-burgundy);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Contact Info Cards */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.contact-info-card--accent {
    background: var(--color-burgundy);
    color: var(--color-white);
}

.contact-info-card--accent h4,
.contact-info-card--accent .contact-info-text,
.contact-info-card--accent .contact-info-note {
    color: var(--color-white);
}

.contact-info-card h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.contact-info-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.contact-info-note {
    font-size: 0.9rem;
    color: var(--color-text-light);
    font-style: italic;
}

.contact-phone,
.contact-email {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-burgundy);
    transition: gap var(--transition-fast);
}

.contact-phone:hover,
.contact-email:hover {
    gap: var(--space-md);
}

.contact-info-card--accent .contact-phone,
.contact-info-card--accent .contact-email {
    color: var(--color-blush);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

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

/* --- Footer --- */
.footer {
    background: var(--color-burgundy-deep);
    color: var(--color-white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(253, 242, 242, 0.15);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-blush);
}

.footer-logo-text {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-blush-mid);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(253, 242, 242, 0.6);
    max-width: 360px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
}

.footer-link-col h5 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-blush);
    margin-bottom: var(--space-md);
}

.footer-link-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-link-col a {
    font-size: 0.9rem;
    color: rgba(253, 242, 242, 0.6);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(253, 242, 242, 0.4);
}

.footer-location {
    font-size: 0.85rem;
    color: rgba(253, 242, 242, 0.4);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    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; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-right {
        display: none;
    }
    
    .hero-stats {
        max-width: 400px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-img-accent {
        right: 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-card--large {
        grid-column: span 2;
    }
    
    .product-card--wide {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
    
    .fresh-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .fresh-gallery {
        height: 350px;
    }
    
    .visit-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .visit-cta-col {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 7rem 0 3rem;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-md);
    }
    
    .stat-divider {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card--large,
    .product-card--wide {
        grid-column: span 1;
    }
    
    .product-card--wide {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .fresh-gallery {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .fresh-img--1 {
        grid-row: span 1;
    }
    
    .fresh-img {
        height: 220px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1.25rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }
    
    .hero-headline {
        font-size: 1.75rem;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .section-heading.large {
        font-size: 1.5rem;
    }
    
    .contact-form-wrapper {
        padding: var(--space-lg);
    }
    
    .visit-cta-card {
        padding: var(--space-lg);
    }
}
