/* ========================================
   Busco Blend — Artisan Bakery & Grocery
   Classic & Elegant Design System
   Colors: Plum + Amber
======================================== */

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

:root {
    --plum-900: #2D1B30;
    --plum-800: #3D2644;
    --plum-700: #4A2C4E;
    --plum-600: #5C3A62;
    --plum-500: #6E4772;
    --plum-100: #F3EDF5;
    --plum-50:  #FAF7FC;
    --amber-600: #B8860B;
    --amber-500: #D4A843;
    --amber-400: #E8C068;
    --amber-100: #FDF6E3;
    --amber-50:  #FFFCF5;
    --cream:     #FDF9F3;
    --warm-white:#FFFCF8;
    --charcoal:  #1A1420;
    --text-dark: #2A1F2E;
    --text-mid:  #5C4F62;
    --text-light:#8A7D90;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans:  'Karla', 'Helvetica Neue', Arial, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--plum-900);
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber-600);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.75;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
}

.btn-primary {
    background: var(--amber-500);
    color: var(--plum-900);
}

.btn-primary:hover {
    background: var(--amber-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--plum-900);
    border: 1.5px solid var(--plum-700);
}

.btn-secondary:hover {
    background: var(--plum-900);
    color: var(--amber-500);
    border-color: var(--plum-900);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 243, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74, 44, 78, 0.08);
    transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
    background: rgba(253, 249, 243, 0.97);
    box-shadow: 0 4px 30px rgba(45, 27, 48, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-700);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--plum-700);
    border-radius: 4px;
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--plum-900);
    letter-spacing: 0.02em;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--amber-500);
    transition: width 0.3s var(--ease-smooth);
}

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

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

.nav-cta {
    background: var(--plum-700);
    color: var(--amber-500) !important;
    padding: 10px 22px;
    border-radius: 4px;
    font-weight: 600 !important;
}

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

.nav-cta:hover {
    background: var(--plum-800);
    color: var(--amber-400) !important;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle-bar {
    width: 22px;
    height: 2px;
    background: var(--plum-700);
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

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

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

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--plum-700);
    padding: 8px;
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-links a {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--plum-900);
    transition: color 0.3s;
}

.mobile-menu-links a:hover {
    color: var(--amber-600);
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(160deg, var(--plum-900) 0%, var(--plum-800) 50%, var(--plum-700) 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(212, 168, 67, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 20% 80%, rgba(212, 168, 67, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    color: var(--cream);
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber-400);
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--cream);
    margin-bottom: 24px;
    line-height: 1.08;
    font-weight: 700;
}

.hero-headline br {
    display: none;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(253, 249, 243, 0.75);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 36px;
}

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

.hero-actions .btn-secondary {
    border-color: rgba(253, 249, 243, 0.4);
    color: var(--cream);
}

.hero-actions .btn-secondary:hover {
    background: var(--cream);
    color: var(--plum-900);
    border-color: var(--cream);
}

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

.hero-card-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

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

.hero-card-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--amber-500);
    color: var(--plum-900);
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Stat Cards */
.hero-stat-card {
    position: absolute;
    background: var(--warm-white);
    border-radius: 8px;
    padding: 20px 24px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-1 {
    top: 38%;
    left: 0;
    min-width: 130px;
}

.stat-1 .stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--plum-700);
    line-height: 1;
}

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

.stat-2 {
    top: 15%;
    left: 15%;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
}

.stat-2 svg {
    color: var(--amber-600);
    flex-shrink: 0;
}

.stat-2 .stat-number {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--plum-700);
}

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

.stat-3 {
    bottom: 5%;
    left: 5%;
    text-align: center;
    background: var(--plum-700);
    color: var(--cream);
    padding: 24px 28px;
}

.stat-3 .stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amber-400);
}

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

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(253, 249, 243, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
}

.hero-scroll-indicator svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ---------- About ---------- */
.about {
    padding: 120px 0;
    background: var(--cream);
}

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

.about-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(45, 27, 48, 0.12);
    position: relative;
}

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

.about-accent-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 27, 48, 0.85));
    color: var(--cream);
    padding: 40px 24px 20px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
}

.about-body {
    font-size: 1.025rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-item svg {
    color: var(--amber-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--plum-900);
    margin-bottom: 4px;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- Products ---------- */
.products {
    padding: 120px 0;
    background: var(--warm-white);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.product-card {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    border: 1px solid rgba(74, 44, 78, 0.06);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(45, 27, 48, 0.1);
}

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

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.product-card-content {
    padding: 28px 32px 32px;
}

.product-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--plum-800);
}

.product-card-content p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: 120px 0;
    background: var(--plum-900);
}

.gallery .section-header {
    margin-bottom: 48px;
}

.gallery .section-eyebrow {
    color: var(--amber-400);
}

.gallery .section-title {
    color: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 260px);
    gap: 16px;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(45, 27, 48, 0.75));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--cream);
    font-weight: 600;
}

.gallery-item-tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

.gallery-item-wide {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
}

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

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

.visit-body {
    font-size: 1.025rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-detail svg {
    color: var(--amber-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--plum-900);
    margin-bottom: 4px;
}

.visit-detail span {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--plum-600);
    transition: color 0.3s;
}

.visit-detail a:hover {
    color: var(--amber-600);
}

.visit-visual {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(45, 27, 48, 0.12);
    height: 600px;
}

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

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background: var(--warm-white);
}

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

.contact-body {
    font-size: 1.025rem;
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 36px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-mid);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-method:hover {
    color: var(--plum-700);
}

.contact-method svg {
    color: var(--amber-600);
    flex-shrink: 0;
}

.contact-method a {
    color: inherit;
    transition: color 0.3s;
}

.contact-method a:hover {
    color: var(--amber-600);
}

/* Form */
.contact-form-wrapper {
    background: var(--cream);
    border-radius: 8px;
    padding: 40px;
    border: 1px solid rgba(74, 44, 78, 0.06);
    box-shadow: 0 16px 40px rgba(45, 27, 48, 0.06);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(74, 44, 78, 0.15);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--warm-white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-500);
    box-shadow: 0 0 0 3px rgba(74, 44, 78, 0.08);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--plum-100);
    border-radius: 4px;
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--plum-800);
    line-height: 1.5;
}

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

.form-success svg {
    color: var(--amber-600);
    flex-shrink: 0;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--plum-900);
    color: var(--cream);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(253, 249, 243, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--amber-500);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--amber-500);
    border-radius: 4px;
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--cream);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(253, 249, 243, 0.6);
    line-height: 1.75;
    max-width: 280px;
}

.footer-nav strong,
.footer-hours strong,
.footer-contact strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--amber-400);
    margin-bottom: 16px;
}

.footer-nav ul,
.footer-hours ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(253, 249, 243, 0.6);
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--amber-400);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: rgba(253, 249, 243, 0.6);
    gap: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(253, 249, 243, 0.4);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.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; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        height: 450px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid,
    .visit-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image-wrapper {
        height: 400px;
    }

    .visit-visual {
        height: 400px;
    }

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

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

    .gallery-grid {
        grid-template-rows: repeat(3, 220px);
    }

    .gallery-item-tall {
        grid-column: 1 / 7;
        grid-row: 1 / 3;
    }

    .gallery-item-wide {
        grid-column: 7 / 13;
        grid-row: 2 / 4;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 20px 60px;
    }

    .hero-headline br {
        display: block;
    }

    .hero-visual {
        height: 380px;
    }

    .hero-stat-card {
        padding: 14px 18px;
    }

    .stat-1 .stat-number {
        font-size: 1.5rem;
    }

    .stat-3 .stat-number {
        font-size: 1.35rem;
    }

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

    .product-card-content {
        padding: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 200px);
    }

    .gallery-item-tall {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item-wide {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .about,
    .products,
    .gallery,
    .visit,
    .contact {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: 320px;
    }

    .hero-stat-card {
        padding: 12px 16px;
    }

    .stat-1 .stat-number {
        font-size: 1.25rem;
    }

    .stat-3 .stat-number {
        font-size: 1.15rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item-tall,
    .gallery-item-wide {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .gallery-item {
        height: 220px;
    }
}
