/* ========================================
   Humes Blooms — Café & Bar
   Classic & Elegant · Plum + Amber
   ======================================== */

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

:root {
    --plum-deep: #3D1C30;
    --plum: #5C2E4E;
    --plum-mid: #7A3D62;
    --plum-light: #A05478;
    --plum-pale: #D4B8C4;
    --plum-ghost: #F2E8EC;
    --amber: #C8923C;
    --amber-light: #D4A04A;
    --amber-pale: #F0D9A0;
    --amber-glow: #FFF3DC;
    --cream: #FDF8F4;
    --cream-dark: #F5EDE6;
    --charcoal: #1E1A1C;
    --warm-gray: #4A3F42;
    --soft-gray: #8A7E82;
    --white: #FFFFFF;
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, sans-serif;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.7;
    -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 {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--plum-deep);
    margin-bottom: 24px;
    line-height: 1.15;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--warm-gray);
    max-width: 560px;
    line-height: 1.8;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(92, 46, 78, 0.25);
}

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

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

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
    font-size: 0.9rem;
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(92, 46, 78, 0.08);
    transition: var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(61, 28, 48, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--plum-deep);
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.logo:hover {
    color: var(--plum);
}

.logo-mark {
    color: var(--amber);
}

.logo-text {
    font-style: italic;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.main-nav a {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
    position: relative;
    transition: var(--transition);
}

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

.main-nav a:hover {
    color: var(--plum-deep);
}

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

.nav-cta {
    color: var(--amber) !important;
    border: 1.5px solid var(--amber);
    padding: 8px 20px;
    border-radius: 4px;
    transition: var(--transition);
}

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

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

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--plum-deep);
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(92, 46, 78, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-bottom: 80px;
}

.hero-content {
    padding-right: 20px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background: var(--amber);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--plum-deep);
    margin-bottom: 28px;
}

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

.hero-sub {
    font-size: 1.1rem;
    color: var(--warm-gray);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--soft-gray);
    padding-top: 24px;
    border-top: 1px solid var(--plum-pale);
}

/* Hero image stack */
.hero-visual {
    position: relative;
}

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

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(61, 28, 48, 0.15);
}

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

.hero-img--primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hero-img--accent {
    width: 260px;
    height: 340px;
    bottom: 0;
    left: 0;
    z-index: 3;
    border: 4px solid var(--cream);
}

.hero-img--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hero-accent-block {
    position: absolute;
    bottom: 100px;
    right: -20px;
    z-index: 4;
    background: var(--plum);
    color: var(--white);
    padding: 20px 28px;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    border-radius: 4px;
    box-shadow: 0 12px 32px rgba(61, 28, 48, 0.25);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--soft-gray);
    animation: float 2.5s ease-in-out infinite;
}

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

/* ---------- ABOUT ---------- */
.about {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--plum-pale), transparent);
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 28, 48, 0.12);
}

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

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 240px;
    border-radius: 8px;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 16px 40px rgba(61, 28, 48, 0.15);
}

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

.about-content p {
    color: var(--warm-gray);
    margin-bottom: 20px;
    font-size: 1.02rem;
    line-height: 1.85;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--plum-pale);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--amber);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--soft-gray);
    font-weight: 500;
}

/* ---------- MENU ---------- */
.menu {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--plum-pale), transparent);
}

.menu-header {
    text-align: center;
    margin-bottom: 72px;
}

.menu-header .section-lead {
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.menu-category {
    background: var(--white);
    border-radius: 8px;
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--plum);
    transform: scaleX(0);
    transition: var(--transition);
}

.menu-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(61, 28, 48, 0.1);
    border-color: var(--plum-pale);
}

.menu-category:hover::before {
    transform: scaleX(1);
}

.menu-category--highlight {
    background: var(--plum-deep);
    color: var(--white);
}

.menu-category--highlight::before {
    background: var(--amber);
}

.menu-category--highlight .category-title,
.menu-category--highlight .item-name {
    color: var(--white);
}

.menu-category--highlight .item-desc {
    color: var(--plum-pale);
}

.menu-category--highlight:hover {
    box-shadow: 0 16px 48px rgba(61, 28, 48, 0.3);
}

.category-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--amber);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 3px;
}

.category-icon {
    color: var(--amber);
    margin-bottom: 20px;
    opacity: 0.85;
}

.category-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--plum-deep);
    margin-bottom: 24px;
}

.menu-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-items li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(92, 46, 78, 0.08);
}

.menu-category--highlight .menu-items li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

.item-name {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--plum-deep);
}

.item-desc {
    font-size: 0.85rem;
    color: var(--soft-gray);
    line-height: 1.5;
}

.menu-note {
    text-align: center;
    margin-top: 48px;
    font-size: 0.88rem;
    color: var(--soft-gray);
    font-style: italic;
}

/* ---------- GALLERY ---------- */
.gallery {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--plum-pale), transparent);
}

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

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

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(61, 28, 48, 0.5) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--white);
    transform: translateY(8px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
    opacity: 1;
}

.gallery-item--wide {
    grid-column: span 7;
}

.gallery-item--tall {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5) {
    grid-column: span 3;
}

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

.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--plum-pale), transparent);
}

.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;
    margin-bottom: 36px;
}

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

.detail-icon {
    color: var(--amber);
    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-deep);
    margin-bottom: 4px;
}

.visit-detail span,
.visit-detail a {
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

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

.visit-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(61, 28, 48, 0.12);
    min-height: 420px;
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 120px 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(200, 146, 60, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.contact-text .section-eyebrow {
    color: var(--amber-light);
}

.contact-text .section-title {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-text p {
    color: var(--plum-pale);
    font-size: 1.05rem;
    line-height: 1.8;
}

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

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

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

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--plum-pale);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 4px;
    padding: 12px 16px;
    transition: var(--transition);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(212, 184, 196, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.08);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(200, 146, 60, 0.15);
    border: 1px solid rgba(200, 146, 60, 0.3);
    border-radius: 4px;
    color: var(--amber-pale);
    font-size: 0.9rem;
}

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

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--charcoal);
    color: var(--plum-pale);
    padding: 64px 0 0;
}

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

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--soft-gray);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--soft-gray);
    transition: var(--transition);
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: var(--soft-gray);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--soft-gray);
}

.footer-bottom a {
    color: var(--soft-gray);
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--amber);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.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-grid {
        gap: 40px;
    }

    .hero-img-stack {
        height: 480px;
    }

    .hero-img--primary {
        width: 300px;
        height: 400px;
    }

    .hero-img--accent {
        width: 200px;
        height: 260px;
    }

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

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

    .gallery-item--wide {
        grid-column: span 12;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5) {
        grid-column: span 6;
    }

    .gallery-item--tall {
        grid-column: span 6;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        padding: 100px 40px 40px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: -10px 0 40px rgba(61, 28, 48, 0.15);
        z-index: 999;
    }

    .main-nav.open {
        right: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 1rem;
    }

    .nav-cta {
        margin-top: 16px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        padding-bottom: 60px;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-img-stack {
        height: 360px;
    }

    .hero-img--primary {
        width: 220px;
        height: 300px;
        right: 0;
    }

    .hero-img--accent {
        width: 150px;
        height: 200px;
        bottom: 0;
        left: 0;
    }

    .hero-accent-block {
        bottom: 60px;
        right: -10px;
        padding: 14px 18px;
        font-size: 0.85rem;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-img-float {
        width: 180px;
        height: 130px;
        bottom: -20px;
        right: -10px;
    }

    .about-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

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

    .menu-category--highlight {
        order: -1;
    }

    .gallery-grid {
        grid-template-rows: auto;
    }

    .gallery-item,
    .gallery-item--wide,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item--tall {
        grid-column: span 12;
        grid-row: span 1;
        height: 240px;
    }

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

    .visit-map {
        min-height: 300px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 64px;
    }

    .hero-img-stack {
        height: 280px;
    }

    .hero-img--primary {
        width: 170px;
        height: 240px;
    }

    .hero-img--accent {
        width: 120px;
        height: 160px;
    }

    .hero-accent-block {
        display: none;
    }

    section {
        padding: 80px 0 !important;
    }
}

/* Mobile overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 26, 28, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
