/* ============================================
   SONNY'S PRODUCE & GREENHOUSE
   Confident Corporate — Deep Navy + Warm Gold
   ============================================ */

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

:root {
    --navy-950: #0a1628;
    --navy-900: #1e3a5f;
    --navy-800: #264a73;
    --navy-700: #2d5580;
    --navy-600: #346194;
    --gold-500: #c8a45a;
    --gold-400: #d4b76e;
    --gold-300: #e0ca8a;
    --gold-600: #a8873a;
    --neutral-50: #f8f7f4;
    --neutral-100: #f0eeea;
    --neutral-200: #e2dfd8;
    --neutral-300: #c8c4bb;
    --neutral-600: #6b6560;
    --neutral-700: #4a4540;
    --neutral-800: #2d2824;
    --neutral-900: #1a1614;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.10);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.14);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.18);
    
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

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

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(248, 247, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: -0.01em;
}

.logo-tag {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--gold-600);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo-footer .logo-name {
    color: var(--neutral-50);
}

.logo-footer .logo-tag {
    color: var(--gold-400);
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-700);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--navy-900);
    background: var(--neutral-100);
}

.nav-cta {
    background: var(--navy-900);
    color: var(--neutral-50) !important;
    margin-left: var(--space-sm);
}

.nav-cta:hover {
    background: var(--navy-800);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.mobile-toggle:hover {
    background: var(--neutral-100);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--navy-900);
    border-radius: 1px;
    transition: transform var(--transition-base), opacity var(--transition-fast);
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }

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

.mobile-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

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

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-950);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(200, 164, 90, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.4) 0%, transparent 50%);
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 22, 40, 0.95) 0%,
        rgba(30, 58, 95, 0.88) 50%,
        rgba(10, 22, 40, 0.80) 100%
    );
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding: var(--space-3xl) 0;
}

/* Hero Content */
.hero-content {
    max-width: 560px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-xl);
}

.eyebrow-line {
    display: inline-block;
    width: 32px;
    height: 1.5px;
    background: var(--gold-500);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--neutral-50);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.02em;
}

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

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(248, 247, 244, 0.7);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--navy-950);
}

.btn-primary:hover {
    background: var(--gold-400);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200, 164, 90, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--neutral-50);
    border: 1.5px solid rgba(248, 247, 244, 0.25);
}

.btn-ghost:hover {
    border-color: var(--gold-500);
    color: var(--gold-400);
}

.btn svg {
    flex-shrink: 0;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(248, 247, 244, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(248, 247, 244, 0.15);
    flex-shrink: 0;
}

/* Hero Image Stack */
.hero-image-col {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
}

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

.hero-img-main {
    width: 100%;
    aspect-ratio: 6/7.5;
}

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

.hero-img-accent {
    position: absolute;
    bottom: -24px;
    left: -40px;
    width: 65%;
    aspect-ratio: 4/3;
    border: 4px solid var(--neutral-50);
}

.hero-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--navy-900);
    color: var(--gold-400);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

/* --- SECTION COMMON --- */
.section-eyebrow {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy-900);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-lg);
}

.section-lead {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--neutral-600);
    max-width: 600px;
}

section > .container > .section-header {
    margin-bottom: var(--space-3xl);
}

/* --- ABOUT --- */
.about {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

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

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 7/8;
}

.about-accent-box {
    position: absolute;
    bottom: var(--space-lg);
    right: calc(-1 * var(--space-lg));
    background: var(--navy-900);
    color: var(--gold-400);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-md);
}

.about-content {
    padding: var(--space-xl) 0;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--neutral-700);
    margin-bottom: var(--space-md);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.value-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    background: var(--neutral-50);
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: var(--space-xs);
}

.value-item p {
    font-size: 0.875rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin: 0;
}

/* --- PRODUCE --- */
.produce {
    padding: var(--space-4xl) 0;
    background: var(--neutral-100);
}

.produce-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.produce-card {
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base), transform var(--transition-base);
}

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

.produce-img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.produce-card:hover .produce-img img {
    transform: scale(1.04);
}

.produce-info {
    padding: var(--space-xl);
}

.produce-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: var(--space-sm);
}

.produce-info p {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--neutral-600);
}

/* --- GREENHOUSE --- */
.greenhouse {
    padding: var(--space-4xl) 0;
    background: var(--navy-950);
}

.greenhouse .section-eyebrow {
    color: var(--gold-500);
}

.greenhouse .section-title {
    color: var(--neutral-50);
}

.greenhouse .section-lead {
    color: rgba(248, 247, 244, 0.65);
}

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

.greenhouse-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(248, 247, 244, 0.65);
    margin-bottom: var(--space-lg);
}

.greenhouse-categories {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.gh-cat {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    padding: var(--space-lg);
    background: rgba(248, 247, 244, 0.04);
    border: 1px solid rgba(248, 247, 244, 0.08);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.gh-cat:hover {
    background: rgba(248, 247, 244, 0.07);
}

.gh-cat-num {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-500);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
}

.gh-cat h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--neutral-50);
    margin-bottom: var(--space-xs);
}

.gh-cat p {
    font-size: 0.85rem;
    color: rgba(248, 247, 244, 0.5);
    line-height: 1.5;
    margin: 0;
}

.greenhouse-img-stack {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

.gh-img-1 {
    aspect-ratio: 5/6.2;
}

.gh-img-2 {
    aspect-ratio: 5/3;
}

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

/* --- SEASONS --- */
.seasons {
    padding: var(--space-4xl) 0;
    background: var(--neutral-50);
}

.seasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.season-card {
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.season-card:hover {
    border-color: var(--gold-500);
    box-shadow: var(--shadow-md);
}

.season-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--space-lg) var(--space-lg) var(--space-md);
}

.season-num {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy-900);
}

.season-months {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neutral-600);
    letter-spacing: 0.04em;
}

.season-img {
    overflow: hidden;
    aspect-ratio: 5/3;
}

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

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

.season-list {
    padding: var(--space-md) var(--space-lg) var(--space-xl);
}

.season-list li {
    font-size: 0.85rem;
    color: var(--neutral-700);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--neutral-100);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.season-list li:last-child {
    border-bottom: none;
}

.season-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold-500);
    border-radius: 50%;
    flex-shrink: 0;
}

/* --- VISIT --- */
.visit {
    padding: var(--space-4xl) 0;
    background: var(--neutral-100);
}

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

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    background: var(--neutral-50);
}

.contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-600);
    margin-bottom: var(--space-xs);
}

.contact-value {
    display: block;
    font-size: 0.9rem;
    color: var(--neutral-800);
    line-height: 1.6;
}

.contact-item a.contact-value {
    color: var(--navy-900);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-item a.contact-value:hover {
    color: var(--gold-600);
}

.visit-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.visit-actions .btn-ghost {
    color: var(--navy-900);
    border-color: var(--navy-900);
}

.visit-actions .btn-ghost:hover {
    background: var(--navy-900);
    color: var(--neutral-50);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    border: 4px solid var(--neutral-50);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* --- FOOTER --- */
.site-footer {
    background: var(--navy-950);
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(248, 247, 244, 0.08);
}

.footer-desc {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(248, 247, 244, 0.45);
    margin-top: var(--space-md);
    max-width: 300px;
}

.footer-contact h4,
.footer-hours h4 {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-md);
}

.footer-contact p,
.footer-hours p {
    font-size: 0.875rem;
    color: rgba(248, 247, 244, 0.6);
    line-height: 1.7;
}

.footer-contact a {
    color: var(--neutral-50);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--gold-400);
}

.hours-time {
    font-weight: 600;
    color: var(--neutral-50) !important;
}

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

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(248, 247, 244, 0.3);
}

/* --- SCROLL REVEAL (progressive enhancement) --- */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
}

@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.visible[data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* --- MOBILE NAV OVERLAY --- */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(248, 247, 244, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    padding: var(--space-2xl);
}

.mobile-nav-overlay.open {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.mobile-nav-overlay .nav-link {
    font-size: 1.1rem;
    padding: var(--space-md);
    border-bottom: 1px solid var(--neutral-200);
    border-radius: 0;
}

.mobile-nav-overlay .nav-cta {
    margin-left: 0;
    margin-top: var(--space-md);
    text-align: center;
    border-bottom: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .hero-image-col {
        justify-content: center;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .about-grid,
    .greenhouse-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about-image-col {
        order: -1;
        max-width: 500px;
    }
    
    .greenhouse-image-col {
        order: -1;
        max-width: 480px;
    }
    
    .seasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: calc(72px + var(--space-2xl)) 0 var(--space-2xl);
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .hero-img-accent {
        left: -16px;
        bottom: -16px;
    }
    
    .hero-badge {
        top: -12px;
        right: -8px;
        padding: var(--space-sm) var(--space-md);
        font-size: 0.7rem;
    }
    
    .produce-grid {
        grid-template-columns: 1fr;
    }
    
    .seasons-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about-accent-box {
        right: var(--space-sm);
        bottom: var(--space-sm);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-headline {
        font-size: 1.875rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .visit-actions {
        flex-direction: column;
    }
    
    .visit-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
