/* ===================================
   Russ' Dinor — Brand Styles
   Bold Editorial · Forest Green + Off-White
   =================================== */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-900: #0f2918;
    --green-800: #1a3a2a;
    --green-700: #234d38;
    --green-600: #2d6148;
    --green-500: #377a58;
    --green-400: #4a9a6e;
    --cream-50: #faf8f4;
    --cream-100: #f5f0e8;
    --cream-200: #ede6d8;
    --cream-300: #e0d5c4;
    --text-dark: #1a1a18;
    --text-mid: #3d3d38;
    --text-light: #6b6b64;
    --white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.45, 0, 0.15, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream-50);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

.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(250, 248, 244, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 58, 42, 0.08);
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.97);
    box-shadow: 0 1px 20px rgba(26, 58, 42, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--green-800);
    letter-spacing: -0.02em;
}

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--green-800);
    color: var(--cream-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green-600);
    transition: width 0.3s var(--ease-out);
}

.nav-link:hover {
    color: var(--green-700);
}

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

.nav-cta {
    padding: 10px 22px;
    background: var(--green-800);
    color: var(--cream-50);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    background: var(--green-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 58, 42, 0.25);
}

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

.nav-toggle-line {
    width: 22px;
    height: 2px;
    background: var(--green-800);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

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

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--green-800);
    padding: 12px 0;
    transition: color 0.2s ease;
}

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

.mobile-menu-divider {
    width: 60px;
    height: 1px;
    background: var(--cream-300);
    margin: 16px 0;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--green-700);
    padding: 12px 24px;
    border: 1.5px solid var(--green-700);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu-phone:hover {
    background: var(--green-800);
    color: var(--cream-50);
    border-color: var(--green-800);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(45, 97, 72, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    flex: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 32px;
    height: 1.5px;
    background: var(--green-600);
    flex-shrink: 0;
}

.hero-eyebrow span {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-700);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--green-900);
    letter-spacing: -0.025em;
    margin-bottom: 28px;
}

.hero-headline-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--green-600);
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: 36px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.25s var(--ease-out);
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--green-800);
    color: var(--cream-50);
}

.btn-primary:hover {
    background: var(--green-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 58, 42, 0.3);
}

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

.btn-ghost:hover {
    background: var(--green-800);
    color: var(--cream-50);
    transform: translateY(-2px);
}

.hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-meta-item svg {
    color: var(--green-600);
}

/* Hero Image */
.hero-image-wrap {
    position: relative;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 58, 42, 0.15);
    aspect-ratio: 640/820;
}

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

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

.hero-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green-600);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.hero-badge {
    position: absolute;
    bottom: 32px;
    left: -24px;
    background: var(--green-800);
    color: var(--cream-50);
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(26, 58, 42, 0.3);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--green-600), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===================================
   Marquee
   =================================== */
.marquee {
    background: var(--green-800);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 32px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream-200);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.marquee-dot {
    color: var(--green-400);
    font-size: 0.625rem;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   Section Shared
   =================================== */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--green-600);
}

.section-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--green-900);
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

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

/* ===================================
   Menu Section
   =================================== */
.menu {
    padding: 100px 0;
    background: var(--cream-50);
}

.menu .container {
    max-width: 900px;
}

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

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

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

.menu-cat {
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-mid);
    border: 1.5px solid var(--cream-300);
    border-radius: 100px;
    transition: all 0.25s var(--ease-out);
    letter-spacing: 0.01em;
}

.menu-cat:hover {
    border-color: var(--green-600);
    color: var(--green-700);
}

.menu-cat.active {
    background: var(--green-800);
    border-color: var(--green-800);
    color: var(--cream-50);
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-category {
    display: flex;
    flex-direction: column;
}

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    padding: 24px 0;
    border-bottom: 1px solid var(--cream-200);
    transition: all 0.2s ease;
}

.menu-item:hover {
    padding-left: 8px;
}

.menu-item:first-child {
    border-top: 1px solid var(--cream-200);
}

.menu-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 700;
    color: var(--green-900);
    letter-spacing: -0.01em;
}

.menu-item-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--green-700);
    background: rgba(45, 97, 72, 0.1);
    padding: 4px 10px;
    border-radius: 100px;
}

.menu-item-desc {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-top: 4px;
    grid-column: 1 / -1;
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    padding: 16px 20px;
    background: var(--cream-100);
    border-radius: 10px;
    font-size: 0.8125rem;
    color: var(--text-light);
    text-align: center;
    justify-content: center;
}

/* ===================================
   About Section
   =================================== */
.about {
    padding: 100px 0;
    background: var(--green-800);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about .section-eyebrow {
    color: var(--green-400);
}

.about .section-eyebrow::before {
    background: var(--green-400);
}

.about .section-headline {
    color: var(--cream-50);
}

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

.about-image-group {
    position: relative;
}

.about-image-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
    aspect-ratio: 560/680;
}

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

.about-image-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
    border: 4px solid var(--green-800);
    aspect-ratio: 320/260;
}

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

.about-accent-box {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--cream-50);
    padding: 20px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.about-accent-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--green-800);
    line-height: 1;
}

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

.about-content {
    padding: 16px 0;
}

.about-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.8);
    margin-bottom: 20px;
}

.about-body:last-child {
    margin-bottom: 40px;
}

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

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

.about-value-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green-400);
}

.about-value strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 4px;
}

.about-value span {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.5;
}

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

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

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

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

.visit-card {
    background: var(--cream-50);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--cream-200);
    transition: all 0.3s var(--ease-out);
}

.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(26, 58, 42, 0.1);
    border-color: var(--green-400);
}

.visit-card-icon {
    width: 52px;
    height: 52px;
    background: var(--green-800);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-50);
    margin-bottom: 20px;
}

.visit-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.visit-card-body {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-mid);
    margin-bottom: 12px;
}

.visit-card-detail {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-700);
}

/* ===================================
   Contact Section
   =================================== */
.contact {
    padding: 100px 0;
    background: var(--cream-50);
}

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

.contact-info {
    padding: 8px 0;
}

.contact-body {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-mid);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

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

.contact-detail a {
    color: var(--green-700);
    font-weight: 600;
    transition: color 0.2s ease;
    border-bottom: 1px solid transparent;
}

.contact-detail a:hover {
    color: var(--green-500);
    border-bottom-color: var(--green-500);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(26, 58, 42, 0.1);
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--green-900);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 48px;
    align-items: start;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cream-50);
    margin-bottom: 12px;
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--green-600);
    color: var(--cream-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 8px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.5);
    max-width: 240px;
    line-height: 1.5;
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.2s ease;
}

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

.footer-contact p {
    font-size: 0.9375rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.7);
    transition: color 0.2s ease;
}

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

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: rgba(245, 240, 232, 0.35);
}

/* ===================================
   Scroll Animations
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s 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-grid {
        gap: 40px;
    }
    
    .visit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 80px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image-wrap {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image {
        aspect-ratio: 4/5;
    }
    
    .hero-badge {
        left: 0;
        bottom: 16px;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-group {
        max-width: 480px;
    }
    
    .about-image-secondary {
        right: -16px;
        bottom: -16px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        min-height: 300px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.25rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
        width: 100%;
    }
    
    .menu-categories {
        gap: 6px;
    }
    
    .menu-cat {
        padding: 8px 16px;
        font-size: 0.8125rem;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-secondary {
        right: -8px;
        bottom: -8px;
    }
}
