/* ============================================
   Bernie's Espresso — Editorial Style Stylesheet
   ============================================ */

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

:root {
    --color-terracotta: #B85C38;
    --color-terracotta-dark: #9A4B2C;
    --color-terracotta-light: #D4845E;
    --color-sand: #F5EDE0;
    --color-sand-dark: #E8DCC8;
    --color-cream: #FDF8F0;
    --color-charcoal: #2A2218;
    --color-warm-gray: #6B5E52;
    --color-light-gray: #A89888;
    --color-white: #FFFFFF;
    --color-accent: #C17747;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- SECTION EYEBROW --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

/* --- SECTION TITLE --- */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius-sm);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    border-color: var(--color-terracotta);
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    border-color: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 92, 56, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--color-charcoal);
    border-color: var(--color-charcoal);
}

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

.btn-full {
    width: 100%;
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184, 92, 56, 0.1);
    transition: all var(--transition);
}

.nav.scrolled {
    box-shadow: 0 4px 20px rgba(42, 34, 24, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

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

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--color-warm-gray);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.nav-cta {
    padding: 0.5rem 1.25rem !important;
    background: var(--color-terracotta);
    color: var(--color-white) !important;
    border-radius: var(--radius-sm);
    font-weight: 500 !important;
}

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

.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;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-charcoal);
    transition: all var(--transition);
    transform-origin: center;
}

.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: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 72px;
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, var(--color-terracotta) 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

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

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-sm);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

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

.hero-headline .hero-accent {
    display: block;
    font-size: 0.55em;
    font-weight: 400;
    color: var(--color-warm-gray);
    margin-top: 0.25em;
    line-height: 1.4;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-warm-gray);
    max-width: 520px;
    margin-bottom: var(--space-md);
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.hero-stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-light-gray);
}

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

.hero-image-col {
    position: relative;
    height: 700px;
}

.hero-img-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(42, 34, 24, 0.15);
}

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

.hero-img-float {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 260px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(42, 34, 24, 0.2);
    border: 4px solid var(--color-cream);
}

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

.hero-scroll {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-light-gray);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-light-gray), transparent);
}

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

/* --- ABOUT --- */
.about {
    padding: var(--space-2xl) 0;
    background: var(--color-sand);
}

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

.about-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(42, 34, 24, 0.12);
}

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

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

.about-content .section-title {
    margin-bottom: var(--space-md);
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--color-warm-gray);
    margin-bottom: var(--space-sm);
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-sand-dark);
    font-size: 0.875rem;
    color: var(--color-light-gray);
}

.about-signature svg {
    color: var(--color-terracotta);
}

/* --- MENU --- */
.menu {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

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

.menu-header .section-title {
    margin-bottom: var(--space-sm);
}

.menu-intro {
    font-size: 1.0625rem;
    color: var(--color-warm-gray);
    line-height: 1.7;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.menu-category {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--color-sand-dark);
    transition: all var(--transition);
}

.menu-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(42, 34, 24, 0.1);
    border-color: var(--color-terracotta-light);
}

.menu-cat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-sand);
}

.menu-cat-header svg {
    color: var(--color-terracotta);
    flex-shrink: 0;
}

.menu-cat-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed var(--color-sand);
}

.menu-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-name {
    font-weight: 500;
    color: var(--color-charcoal);
    font-size: 0.9375rem;
}

.menu-item-desc {
    font-size: 0.8125rem;
    color: var(--color-light-gray);
    text-align: right;
    white-space: nowrap;
}

.menu-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-light-gray);
    font-style: italic;
}

/* --- GALLERY --- */
.gallery {
    padding: var(--space-2xl) 0;
    background: var(--color-charcoal);
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.gallery-header .section-eyebrow {
    color: var(--color-terracotta-light);
}

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

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42, 34, 24, 0.2), transparent 40%);
    pointer-events: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.gallery-item:not(.gallery-item--tall) {
    min-height: 240px;
}

.gallery-item--wide {
    grid-column: 5 / 13;
    min-height: 240px;
}

/* --- VISIT --- */
.visit {
    padding: var(--space-2xl) 0;
    background: var(--color-sand);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.visit-info .section-title {
    margin-bottom: var(--space-md);
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

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

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

.visit-detail strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-light-gray);
    margin-bottom: 0.25rem;
}

.visit-detail p {
    font-size: 1rem;
    color: var(--color-charcoal);
    line-height: 1.6;
}

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

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

/* Hours */
.visit-hours {
    background: var(--color-charcoal);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    color: var(--color-cream);
}

.visit-hours-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(245, 237, 224, 0.15);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(245, 237, 224, 0.08);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 500;
    color: var(--color-cream);
}

.hours-time {
    color: var(--color-light-gray);
    font-size: 0.9375rem;
}

.hours-note {
    margin-top: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--color-light-gray);
    font-style: italic;
}

/* --- MAP --- */
.map-section {
    height: 360px;
    position: relative;
}

.map-container {
    width: 100%;
    height: 100%;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: saturate(0.6) sepia(0.15);
    transition: filter var(--transition);
}

.map-container:hover iframe {
    filter: saturate(0.8) sepia(0.05);
}

/* --- CONTACT --- */
.contact {
    padding: var(--space-2xl) 0;
    background: var(--color-cream);
}

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

.contact-content .section-title {
    margin-bottom: var(--space-sm);
}

.contact-content > p {
    font-size: 1.0625rem;
    color: var(--color-warm-gray);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

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

.contact-email,
.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1rem;
    color: var(--color-terracotta);
    padding: 0.75rem 1rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-sand-dark);
    transition: all var(--transition);
}

.contact-email:hover,
.contact-phone:hover {
    border-color: var(--color-terracotta-light);
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(184, 92, 56, 0.12);
}

/* Form */
.contact-form-wrap {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    border: 1px solid var(--color-sand-dark);
    box-shadow: 0 8px 32px rgba(42, 34, 24, 0.06);
}

.form-group {
    margin-bottom: var(--space-sm);
}

.form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-warm-gray);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-charcoal);
    background: var(--color-cream);
    border: 1.5px solid var(--color-sand-dark);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(184, 92, 56, 0.1);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--space-sm);
    padding: 1rem;
    background: rgba(184, 92, 56, 0.08);
    border-radius: var(--radius-md);
    color: var(--color-terracotta-dark);
    font-size: 0.9375rem;
}

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

/* --- FOOTER --- */
.footer {
    background: var(--color-charcoal);
    color: var(--color-cream);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-brand p {
    margin-top: var(--space-sm);
    font-size: 0.9375rem;
    color: var(--color-light-gray);
    line-height: 1.7;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-cream);
}

.footer-logo svg {
    color: var(--color-terracotta-light);
}

.footer-nav strong,
.footer-contact strong {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-light-gray);
    margin-bottom: var(--space-sm);
}

.footer-nav ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.9375rem;
    color: var(--color-cream);
    transition: color var(--transition);
}

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

.footer-contact li {
    font-size: 0.9375rem;
    color: var(--color-light-gray);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(245, 237, 224, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--color-light-gray);
}

/* --- SCROLL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .hero-image-col {
        height: 500px;
        order: -1;
    }

    .hero-img-float {
        left: -20px;
        bottom: -20px;
        width: 200px;
    }

    .hero-headline {
        font-size: clamp(2rem, 4vw, 3.25rem);
    }

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

    .about-image-wrap {
        max-height: 400px;
    }

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

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

    .gallery-item--tall {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 300px;
    }

    .gallery-item--wide {
        grid-column: 1 / 3;
        min-height: 240px;
    }

    .gallery-item:not(.gallery-item--tall) {
        min-height: 200px;
    }

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

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

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-grid {
        padding-top: var(--space-md);
        padding-bottom: var(--space-xl);
    }

    .hero-image-col {
        height: 380px;
    }

    .hero-img-float {
        width: 160px;
        left: -10px;
        bottom: -10px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: var(--space-sm);
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .about,
    .menu,
    .gallery,
    .visit,
    .contact {
        padding: var(--space-lg) 0;
    }

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

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: 1;
        min-height: 220px;
    }

    .gallery-item:not(.gallery-item--tall) {
        min-height: 200px;
    }

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

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

    .map-section {
        height: 260px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-md: 1.5rem;
        --space-lg: 3rem;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .hero-image-col {
        height: 300px;
    }

    .hero-img-float {
        width: 130px;
        left: 0;
        bottom: -8px;
    }

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

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    .menu-category {
        padding: var(--space-sm);
    }

    .contact-form-wrap {
        padding: var(--space-sm);
    }
}
