/* ========================================
   Aluna Coffee, Kava and Market
   Warm & Friendly — Terracotta + Sand
   ======================================== */

/* CSS Custom Properties */
:root {
    --color-terracotta: #C1694F;
    --color-terracotta-dark: #A8553A;
    --color-terracotta-light: #D4896F;
    --color-sand: #F5E6D3;
    --color-sand-light: #FDF6EE;
    --color-sand-dark: #E8D5C0;
    --color-cream: #FFF9F3;
    --color-brown: #5C3D2E;
    --color-brown-light: #7A5444;
    --color-text: #3D2B1F;
    --color-text-light: #7A6455;
    --color-text-muted: #A89080;
    --color-white: #FFFFFF;
    --color-bg: #FDF6EE;
    --color-bg-alt: #F5E6D3;
    
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 2px 8px rgba(93, 61, 46, 0.06);
    --shadow-md: 0 4px 20px rgba(93, 61, 46, 0.1);
    --shadow-lg: 0 8px 40px rgba(93, 61, 46, 0.12);
    --shadow-xl: 0 16px 60px rgba(93, 61, 46, 0.15);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    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;
}

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

ul {
    list-style: none;
}

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

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 238, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(193, 105, 79, 0.08);
    transition: var(--transition);
}

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

.nav-container {
    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;
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--color-terracotta);
    font-weight: 400;
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--color-terracotta-dark);
}

.nav-logo-icon {
    flex-shrink: 0;
}

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

.nav-links a {
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-light);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-terracotta);
    background: rgba(193, 105, 79, 0.08);
}

.nav-cta {
    background: var(--color-terracotta) !important;
    color: var(--color-white) !important;
    margin-left: 8px;
}

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

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(193, 105, 79, 0.08);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    color: var(--color-terracotta);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: rgba(193, 105, 79, 0.1);
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--color-text);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu-link:hover {
    color: var(--color-terracotta);
    background: rgba(193, 105, 79, 0.06);
}

.mobile-menu-cta {
    display: inline-block;
    margin-top: 16px;
    background: var(--color-terracotta);
    color: var(--color-white) !important;
    border-radius: var(--radius-full);
    padding: 14px 36px !important;
    font-size: 1.1rem !important;
    font-family: var(--font-body);
    font-weight: 700;
}

.mobile-menu-contact {
    margin-top: 32px;
    padding: 20px;
    background: var(--color-sand);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

.mobile-menu-contact a {
    color: var(--color-terracotta);
    font-weight: 700;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(193, 105, 79, 0.3);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(193, 105, 79, 0.4);
}

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

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

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

/* ========================================
   Section Tags & Titles
   ======================================== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(193, 105, 79, 0.1);
    color: var(--color-terracotta);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: var(--color-terracotta);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    line-height: 1.8;
}

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

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 24px 60px;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand-light) 50%, var(--color-sand) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(193, 105, 79, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 230, 211, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(193, 105, 79, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    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 {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--color-white);
    color: var(--color-terracotta);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge svg {
    color: var(--color-terracotta);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s 0.1s ease forwards;
    opacity: 0;
}

.hero-highlight {
    color: var(--color-terracotta);
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(193, 105, 79, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.hero-subheadline {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    animation: fadeInUp 0.6s 0.2s ease forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s 0.3s ease forwards;
    opacity: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: fadeIn 0.8s 0.4s ease forwards;
    opacity: 0;
}

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

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

.hero-image-accent {
    position: absolute;
    bottom: -30px;
    left: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

.hero-image-accent img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

/* ========================================
   About Section
   ======================================== */
.about {
    padding: 120px 0;
    background: var(--color-white);
}

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

.about-images {
    position: relative;
}

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

.about-img-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-white);
}

.about-img-secondary img {
    width: 400px;
    height: 350px;
    object-fit: cover;
}

.about-stat {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.about-content {
    max-width: 520px;
}

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

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

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

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-sand-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--color-sand);
    transform: translateX(4px);
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    color: var(--color-text-muted) !important;
    line-height: 1.6 !important;
}

/* ========================================
   Menu Section
   ======================================== */
.menu {
    padding: 120px 0;
    background: var(--color-bg);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-light);
    background: var(--color-white);
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.menu-tab:hover {
    color: var(--color-terracotta);
    border-color: rgba(193, 105, 79, 0.2);
}

.menu-tab.active {
    background: var(--color-terracotta);
    color: var(--color-white);
    border-color: var(--color-terracotta);
    box-shadow: 0 4px 16px rgba(193, 105, 79, 0.3);
}

.menu-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.menu-panel.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
    max-width: 700px;
}

.menu-item {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px 20px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.menu-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.menu-item-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.menu-item-info p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.menu-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    max-width: 500px;
    margin: 0 auto;
}

.menu-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ========================================
   Market Section
   ======================================== */
.market {
    padding: 120px 0;
    background: var(--color-white);
}

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

.market-content .section-title {
    margin-bottom: 24px;
}

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

.market-content .btn {
    margin-top: 24px;
}

.market-images {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.market-img-row img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.market-img-row img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Visit Section
   ======================================== */
.visit {
    padding: 120px 0;
    background: var(--color-sand-light);
}

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

.visit-info .section-title {
    margin-bottom: 40px;
}

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

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

.visit-detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.visit-detail h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.visit-detail p, .visit-detail a {
    font-size: 1rem;
    color: var(--color-text);
    font-weight: 600;
    line-height: 1.6;
}

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

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 450px;
}

.map-placeholder {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 450px;
}

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

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

.contact-content .section-title {
    margin-bottom: 20px;
}

.contact-content p {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.85;
}

.contact-form-wrapper {
    background: var(--color-sand-light);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--color-sand-dark);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-terracotta);
    box-shadow: 0 0 0 4px rgba(193, 105, 79, 0.1);
}

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

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

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.4s ease;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(193, 105, 79, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 80px 0 0;
    background: var(--color-brown);
    color: var(--color-sand);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--color-sand);
    margin-bottom: 16px;
}

.footer-logo-icon {
    flex-shrink: 0;
}

.footer-brand p {
    color: rgba(245, 230, 211, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-terracotta-light);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-hours ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-hours span,
.footer-contact li {
    color: rgba(245, 230, 211, 0.7);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-hours li {
    justify-content: space-between;
    padding: 4px 0;
}

.footer-hours span:last-child {
    color: var(--color-sand);
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 230, 211, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: rgba(245, 230, 211, 0.5);
    font-size: 0.85rem;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-6px); }
    60% { transform: translateX(-50%) translateY(-3px); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .hero-image-accent {
        left: -20px;
        bottom: -20px;
    }
    
    .hero-image-accent img {
        width: 300px;
        height: 220px;
    }
    
    .about-grid,
    .market-split,
    .visit-grid,
    .contact-wrapper {
        gap: 48px;
    }
    
    .about-img-secondary {
        right: -20px;
        bottom: -20px;
    }
    
    .about-img-secondary img {
        width: 280px;
        height: 250px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper img {
        height: 450px;
    }
    
    .hero-image-accent {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 16px;
        border: none;
        box-shadow: var(--shadow-md);
    }
    
    .hero-image-accent img {
        width: 100%;
        height: 200px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .about {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-img-main img {
        height: 400px;
    }
    
    .about-img-secondary {
        right: 0;
        bottom: -20px;
    }
    
    .about-img-secondary img {
        width: 220px;
        height: 200px;
    }
    
    .about-stat {
        right: 20px;
        top: -16px;
    }
    
    .menu {
        padding: 80px 0;
    }
    
    .menu-tabs {
        gap: 6px;
    }
    
    .menu-tab {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .market {
        padding: 80px 0;
    }
    
    .market-split {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .market-img-row img {
        height: 200px;
    }
    
    .visit {
        padding: 80px 0;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .visit-map {
        min-height: 300px;
    }
    
    .map-placeholder {
        min-height: 300px;
    }
    
    .contact {
        padding: 80px 0;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 90px 16px 60px;
    }
    
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .menu-tabs {
        gap: 4px;
    }
    
    .menu-tab {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .contact-form-wrapper {
        padding: 20px;
    }
}
