/* ========================================
   NORWICH BUFFET — Classic & Elegant
   Color Palette: Emerald Green + Cream
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --emerald-50: #ecfdf5;
    --emerald-100: #d1fae5;
    --emerald-200: #a7f3d0;
    --emerald-300: #6ee7b7;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --emerald-700: #047857;
    --emerald-800: #065f46;
    --emerald-900: #064e3b;
    --emerald-950: #022c22;

    --cream-50: #fefdf8;
    --cream-100: #fef9ee;
    --cream-200: #fdf3dc;
    --cream-300: #fce8b8;
    --cream-400: #f5d58a;
    --cream-500: #d4a017;
    --cream-600: #b8860b;
    --cream-700: #92400e;

    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-200: #e7e5e4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-500: #78716c;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --stone-950: #0c0a09;

    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Segoe UI', system-ui, sans-serif;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.05);

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--stone-800);
    background-color: var(--cream-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: var(--emerald-700);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--emerald-500);
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.25;
    color: var(--stone-900);
}

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

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--emerald-800);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    z-index: 1000;
    font-size: 14px;
}

.skip-link:focus {
    top: 16px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--emerald-700);
    color: #fff;
    border-color: var(--emerald-700);
}

.btn-primary:hover {
    background: var(--emerald-600);
    border-color: var(--emerald-600);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    color: #fff;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 15px;
}

/* --- Section Labels --- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 12px;
    position: relative;
    padding-left: 36px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background: var(--emerald-500);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--stone-900);
}

.title-accent {
    color: var(--emerald-700);
    font-style: italic;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--stone-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.text-center {
    text-align: center;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(254, 253, 248, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(4, 120, 87, 0.08);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--stone-900);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--emerald-700);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.logo-accent {
    color: var(--emerald-700);
    font-style: italic;
}

/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.main-nav a {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--stone-700);
    padding: 8px 14px;
    border-radius: 4px;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.main-nav a:hover {
    color: var(--emerald-700);
    background: var(--emerald-50);
}

/* Nav Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--stone-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-950);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(2, 44, 34, 0.88) 0%,
        rgba(4, 120, 87, 0.72) 50%,
        rgba(6, 78, 59, 0.85) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 820px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(254, 249, 238, 0.12);
    border: 1px solid rgba(254, 249, 238, 0.2);
    color: var(--cream-300);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 32px;
    backdrop-filter: blur(4px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-accent {
    color: var(--cream-300);
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(254, 253, 248, 0.8);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(254, 253, 248, 0.7);
    font-size: 14px;
    font-weight: 400;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--cream-400);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(254, 253, 248, 0.5);
    animation: scrollBounce 2s ease infinite;
}

.hero-scroll svg {
    width: 28px;
    height: 28px;
}

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

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

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

.about-images {
    position: relative;
}

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

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -24px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream-50);
}

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

.about-accent-box {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--emerald-700);
    color: #fff;
    padding: 20px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-accent-box .accent-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-accent-box .accent-text {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-top: 4px;
}

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

.about-text {
    color: var(--stone-600);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.85;
}

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

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

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--emerald-50);
    border: 1px solid var(--emerald-100);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.feature-item h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--stone-800);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--stone-500);
    line-height: 1.6;
}

/* --- Experience Section --- */
.experience {
    padding: 100px 0;
    background: var(--emerald-900);
}

.experience .section-label {
    color: var(--cream-300);
}

.experience .section-label::before {
    background: var(--cream-400);
}

.experience .section-title {
    color: #fff;
}

.experience .title-accent {
    color: var(--cream-300);
}

.experience .section-subtitle {
    color: rgba(254, 253, 248, 0.7);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 56px;
}

.experience-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
}

.experience-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.15);
}

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

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.experience-card:hover .card-image img {
    transform: scale(1.06);
}

.card-content {
    padding: 28px;
}

.card-icon {
    width: 52px;
    height: 52px;
    background: var(--emerald-700);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #fff;
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card-content h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 10px;
}

.card-content p {
    font-size: 0.95rem;
    color: rgba(254, 253, 248, 0.65);
    line-height: 1.75;
}

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

.menu-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: start;
}

.menu-description {
    font-size: 1.05rem;
    color: var(--stone-600);
    line-height: 1.85;
    margin-bottom: 36px;
}

.menu-categories {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.menu-category h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--emerald-800);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-category h4::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--emerald-500);
    border-radius: 50%;
    flex-shrink: 0;
}

.menu-category p {
    font-size: 0.95rem;
    color: var(--stone-500);
    line-height: 1.7;
    padding-left: 18px;
}

.menu-note {
    margin-top: 28px;
    font-size: 0.85rem;
    color: var(--stone-400);
    font-style: italic;
    padding-left: 18px;
}

.menu-image-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-img-tall {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.menu-img-tall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-img-short {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.menu-img-short img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Gallery Section --- */
.gallery {
    padding: 100px 0;
    background: var(--cream-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    margin-top: 56px;
}

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

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

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

.gallery-item:not(.gallery-item-wide) {
    grid-column: span 5;
}

.gallery-item:nth-child(2) {
    grid-column: span 5;
    grid-row: 1;
}

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

.gallery-item:nth-child(4) {
    grid-column: span 5;
    grid-row: 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 7;
    grid-row: 2;
}

.gallery-item:first-child {
    grid-column: span 7;
    grid-row: 1;
}

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

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

.gallery-item:nth-child(4) {
    grid-column: span 5;
    grid-row: 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 7;
    grid-row: 2;
}

.gallery-item:first-child {
    grid-column: span 7;
    grid-row: 1 / span 2;
}

.gallery-item:nth-child(2) {
    grid-column: span 5;
    grid-row: 1;
}

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

.gallery-item:nth-child(4) {
    grid-column: span 5;
    grid-row: 1;
}

.gallery-item:nth-child(5) {
    grid-column: span 7;
    grid-row: 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 44, 34, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

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

.gallery-overlay span {
    color: #fff;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
}

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

.visit .section-label {
    color: var(--cream-300);
}

.visit .section-label::before {
    background: var(--cream-400);
}

.visit .section-title {
    color: #fff;
}

.visit .title-accent {
    color: var(--cream-300);
}

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

.visit-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-300);
}

.detail-icon svg {
    width: 22px;
    height: 22px;
}

.visit-detail h4 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 4px;
}

.visit-detail p {
    color: rgba(254, 253, 248, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.visit-detail a {
    color: rgba(254, 253, 248, 0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.hours-row span:first-child {
    color: rgba(254, 253, 248, 0.5);
}

.hours-row span:last-child {
    color: rgba(254, 253, 248, 0.85);
    font-weight: 700;
}

.visit-cta {
    margin-top: 36px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid rgba(255,255,255,0.1);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* --- Footer --- */
.site-footer {
    background: var(--stone-950);
    color: rgba(254, 253, 248, 0.6);
    padding: 64px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo-light {
    color: #fff;
    margin-bottom: 16px;
    display: inline-flex;
}

.logo-light .logo-icon {
    color: var(--emerald-400);
}

.logo-light .logo-text {
    color: #fff;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(254, 253, 248, 0.55);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--emerald-400);
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(254, 253, 248, 0.55);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.85rem;
    color: rgba(254, 253, 248, 0.35);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

/* Mobile-only reveal (no animation needed, just show) */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }

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

    .experience-grid .experience-card:last-child {
        grid-column: span 2;
    }

    .menu-layout {
        gap: 48px;
    }
}

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

    .main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(254, 253, 248, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(4, 120, 87, 0.1);
        padding: 16px 24px 24px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition-base);
        pointer-events: none;
        box-shadow: var(--shadow-lg);
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

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

    .main-nav a {
        padding: 12px 16px;
        font-size: 16px;
    }

    .main-nav .btn {
        align-items: center;
        justify-content: center;
        margin-top: 8px;
    }

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

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

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

    .about-images {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-img-secondary {
        right: -12px;
        bottom: -20px;
    }

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

    .experience-grid .experience-card:last-child {
        grid-column: span 1;
    }

    .menu-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .menu-visual {
        order: -1;
    }

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

    .gallery-item-wide,
    .gallery-item:not(.gallery-item-wide) {
        grid-column: span 1;
        grid-row: auto;
    }

    .gallery-item:first-child {
        grid-column: span 1;
        grid-row: auto;
    }

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

    .map-container iframe {
        height: 300px;
    }

    .footer-top {
        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-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .about {
        padding: 64px 0;
    }

    .experience {
        padding: 64px 0;
    }

    .menu-section {
        padding: 64px 0;
    }

    .gallery {
        padding: 64px 0;
    }

    .visit {
        padding: 64px 0;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}
