/* ========================================
   FOUR SEASONS RESTAURANT — STYLES
   Vibrant Modern | Forest Green + Off-White
   ======================================== */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: #faf8f3;
    color: #1a3a24;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

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

/* ---------- Geometric Background Shapes ---------- */
.geo-shape {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.06;
}

.geo-circle-1 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #1a5c2a;
    top: -150px;
    right: -150px;
}

.geo-circle-2 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #1a5c2a;
    bottom: 20%;
    left: -80px;
}

.geo-square-1 {
    width: 200px;
    height: 200px;
    background: #1a5c2a;
    top: 40%;
    right: 5%;
    transform: rotate(35deg);
    border-radius: 20px;
}

.geo-triangle-1 {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 200px solid #1a5c2a;
    top: 60%;
    left: 8%;
    opacity: 0.04;
}

.geo-circle-3 {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #1a5c2a;
    bottom: 10%;
    right: 15%;
    opacity: 0.04;
}

/* ---------- Navigation ---------- */
.nav-header {
    background: rgba(250, 248, 243, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 92, 42, 0.08);
    transition: box-shadow 0.3s ease;
}

.nav-header.scrolled {
    box-shadow: 0 4px 30px rgba(26, 92, 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;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #1a5c2a;
    transition: transform 0.2s ease;
}

.nav-logo:hover {
    transform: scale(1.03);
}

.nav-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1a5c2a;
    color: #f0ead6;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 900;
}

.nav-logo-text {
    letter-spacing: -0.02em;
}

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

.nav-link {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.935rem;
    color: #1a5c2a;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background: rgba(26, 92, 42, 0.08);
}

.nav-link--cta {
    background: #1a5c2a;
    color: #f0ead6 !important;
    font-weight: 600;
}

.nav-link--cta:hover {
    background: #145020;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    color: #1a5c2a;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: rgba(26, 92, 42, 0.08);
}

/* Mobile nav overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    top: 72px;
    background: rgba(250, 248, 243, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

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

.nav-overlay-link {
    padding: 14px 32px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a5c2a;
    border-radius: 12px;
    transition: background 0.2s ease;
    width: 260px;
    text-align: center;
}

.nav-overlay-link:hover {
    background: rgba(26, 92, 42, 0.08);
}

.nav-overlay-link--cta {
    background: #1a5c2a;
    color: #f0ead6 !important;
    margin-top: 8px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #1a5c2a;
    color: #f0ead6;
    box-shadow: 0 4px 15px rgba(26, 92, 42, 0.25);
}

.btn--primary:hover {
    background: #145020;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 92, 42, 0.3);
}

.btn--outline {
    background: transparent;
    color: #1a5c2a;
    border: 2px solid rgba(26, 92, 42, 0.3);
}

.btn--outline:hover {
    border-color: #1a5c2a;
    background: rgba(26, 92, 42, 0.05);
    transform: translateY(-2px);
}

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

/* ---------- Sections ---------- */
.section {
    padding: 100px 0;
    position: relative;
}

.section--alt {
    background: #f0ead6;
}

.section--dark {
    background: #0e3d18;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(26, 92, 42, 0.08);
    color: #1a5c2a;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-tag--light {
    background: rgba(240, 234, 214, 0.12);
    color: #a5d6a7;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0a2e12;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section--dark .section-title {
    color: #f0ead6;
}

.section-header--light .section-tag {
    background: rgba(240, 234, 214, 0.12);
    color: #a5d6a7;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #2d6a42;
    line-height: 1.7;
}

.section--dark .section-subtitle {
    color: #a5d6a7;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #f0ead6 0%, #e8e0c8 40%, #d4c9a8 100%);
}

.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
}

.hero-shape--circle {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #1a5c2a;
    top: -100px;
    right: -80px;
    opacity: 0.07;
}

.hero-shape--rect {
    width: 280px;
    height: 280px;
    background: #1a5c2a;
    bottom: -60px;
    left: -60px;
    border-radius: 40px;
    transform: rotate(25deg);
    opacity: 0.05;
}

.hero-shape--triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 170px solid #1a5c2a;
    top: 25%;
    left: 8%;
    opacity: 0.06;
}

.hero-shape--dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #1a5c2a;
    top: 30%;
    right: 15%;
    opacity: 0.15;
}

.hero-shape--ring {
    width: 160px;
    height: 160px;
    border: 8px solid #1a5c2a;
    border-radius: 50%;
    bottom: 25%;
    right: 10%;
    opacity: 0.08;
}

.hero-content {
    text-align: center;
    max-width: 760px;
    padding: 0 24px;
    padding-top: 72px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(26, 92, 42, 0.08);
    border: 1px solid rgba(26, 92, 42, 0.15);
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #1a5c2a;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.hero-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    color: #0a2e12;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-headline-accent {
    color: #1a5c2a;
    position: relative;
}

.hero-headline-accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(26, 92, 42, 0.15);
    border-radius: 3px;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #2d6a42;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.hero-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #0a2e12;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: #4a7c5f;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-stat-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(26, 92, 42, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: #1a5c2a;
    opacity: 0.5;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

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

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

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

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

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.about-image-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background: #1a5c2a;
    border-radius: 20px;
    bottom: -30px;
    right: -30px;
    z-index: -1;
    opacity: 0.12;
}

.about-lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #1a5c2a;
    font-weight: 500;
    margin-bottom: 16px;
}

.about-content p {
    color: #2d6a42;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(26, 92, 42, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(26, 92, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(26, 92, 42, 0.08);
}

.about-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a5c2a;
    border-radius: 10px;
    color: #f0ead6;
}

.about-feature-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0a2e12;
    line-height: 1.4;
    padding-top: 8px;
}

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

.menu-tab {
    padding: 10px 24px;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #2d6a42;
    background: transparent;
    border: 2px solid rgba(26, 92, 42, 0.12);
    transition: all 0.2s ease;
}

.menu-tab:hover {
    border-color: rgba(26, 92, 42, 0.3);
    background: rgba(26, 92, 42, 0.04);
}

.menu-tab.active {
    background: #1a5c2a;
    color: #f0ead6;
    border-color: #1a5c2a;
}

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

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

.menu-category.active {
    display: flex;
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(26, 92, 42, 0.08);
    transition: transform 0.2s ease;
}

.menu-item:first-child {
    border-top: 1px solid rgba(26, 92, 42, 0.08);
}

.menu-item:hover {
    transform: translateX(4px);
}

.menu-item-mark {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 92, 42, 0.07);
    border-radius: 12px;
    color: #1a5c2a;
    font-size: 1.1rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
}

.menu-item-info {
    flex: 1;
}

.menu-item-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0a2e12;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.menu-item-desc {
    font-size: 0.95rem;
    color: #4a7c5f;
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.875rem;
    color: #4a7c5f;
    font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item--large {
    grid-row: span 2;
}

.gallery-item--large img {
    height: 100%;
}

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

.gallery-item--wide img {
    height: 100%;
}

/* ---------- Visit ---------- */
.visit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.visit-card {
    padding: 32px 24px;
    background: #f0ead6;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(26, 92, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(26, 92, 42, 0.1);
}

.visit-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a5c2a;
    border-radius: 14px;
    color: #f0ead6;
    margin: 0 auto 16px;
}

.visit-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0a2e12;
    margin-bottom: 8px;
}

.visit-card-text {
    font-size: 0.95rem;
    color: #2d6a42;
    line-height: 1.6;
}

.visit-card-link {
    color: #1a5c2a;
    font-weight: 600;
    transition: color 0.2s ease;
}

.visit-card-link:hover {
    color: #0a2e12;
    text-decoration: underline;
}

.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(26, 92, 42, 0.1);
}

/* ---------- Contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info-text {
    font-size: 1.05rem;
    color: #2d6a42;
    line-height: 1.75;
    margin-bottom: 32px;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d6a42;
    font-size: 0.95rem;
}

.contact-detail svg {
    color: #1a5c2a;
    flex-shrink: 0;
}

.contact-link {
    color: #1a5c2a;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #0a2e12;
    text-decoration: underline;
}

.contact-form-wrap {
    background: #f0ead6;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(26, 92, 42, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #0a2e12;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(26, 92, 42, 0.12);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #0a2e12;
    background: #faf8f3;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #1a5c2a;
    box-shadow: 0 0 0 4px rgba(26, 92, 42, 0.08);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #8fa898;
}

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

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 92, 42, 0.08);
    border-radius: 50%;
    color: #1a5c2a;
    margin: 0 auto 16px;
}

/* ---------- Footer ---------- */
.footer {
    background: #0a2e12;
    color: #a5d6a7;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(165, 214, 167, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: #f0ead6;
    margin-bottom: 16px;
}

.footer-logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1a5c2a;
    color: #f0ead6;
    border-radius: 10px;
    font-size: 1.15rem;
    font-weight: 900;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #66bb6a;
    max-width: 280px;
}

.footer-nav-title,
.footer-contact h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #66bb6a;
    margin-bottom: 16px;
}

.footer-link {
    display: block;
    color: #a5d6a7;
    font-size: 0.95rem;
    padding: 6px 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
    color: #f0ead6;
    transform: translateX(4px);
}

.footer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #66bb6a;
    margin-bottom: 4px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    font-size: 0.85rem;
    color: #4a7c5f;
}

.footer-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
}

.footer-shape--circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #1a5c2a;
    top: -100px;
    right: -50px;
    opacity: 0.15;
}

.footer-shape--square {
    width: 150px;
    height: 150px;
    background: #1a5c2a;
    bottom: -40px;
    left: 20%;
    border-radius: 20px;
    transform: rotate(20deg);
    opacity: 0.1;
}

.footer-shape--dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #66bb6a;
    top: 30%;
    left: 5%;
    opacity: 0.2;
}

/* ---------- Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.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) {
    .about-grid {
        gap: 40px;
    }
    
    .visit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--large {
        grid-row: span 1;
    }
    
    .gallery-item--wide {
        grid-column: span 1;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .section {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-inner {
        padding: 0 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-categories {
        gap: 6px;
    }
    
    .menu-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}
