/* ===== CSS Variables ===== */
:root {
    --plum-deep: #2D1B33;
    --plum-primary: #4A2555;
    --plum-medium: #6B3A75;
    --plum-light: #8F5A9B;
    --plum-pale: #F3E8F7;
    --plum-bg: #FBF7FD;
    
    --amber-deep: #8B5E3C;
    --amber-primary: #C4843A;
    --amber-light: #E8A85C;
    --amber-pale: #FFF3E0;
    --amber-glow: #FFD080;
    
    --neutral-900: #1A1A2E;
    --neutral-800: #2D2D44;
    --neutral-700: #404060;
    --neutral-600: #5A5A7A;
    --neutral-500: #7A7A9A;
    --neutral-400: #9A9AB0;
    --neutral-300: #C0C0D0;
    --neutral-200: #E0E0EA;
    --neutral-100: #F0F0F5;
    --neutral-50: #F8F8FC;
    --white: #FFFFFF;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(45, 27, 51, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 27, 51, 0.10);
    --shadow-lg: 0 8px 32px rgba(45, 27, 51, 0.12);
    --shadow-xl: 0 16px 48px rgba(45, 27, 51, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

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

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

/* ===== Loader ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--plum-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-content h2 {
    font-family: var(--font-heading);
    color: var(--amber-light);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.loader-bar {
    width: 120px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--amber-primary);
    border-radius: 3px;
    animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    padding: 0.7rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--plum-deep);
}

.logo--light {
    color: var(--white) !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--neutral-700);
}

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

.navbar.scrolled .nav-links a:hover {
    color: var(--plum-primary);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
    background: var(--plum-deep);
}

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

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

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--amber-deep);
    border-color: var(--amber-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 132, 58, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

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

.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
}

.btn-sm {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-full {
    width: 100%;
}

/* ===== Section Shared ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-primary);
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.9rem;
    background: var(--amber-pale);
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--plum-deep);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.text-accent {
    color: var(--amber-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-600);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Hero ===== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum-primary) 50%, #3D1F4D 100%);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(196, 132, 58, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--amber-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 1.5rem;
}

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 6/7;
}

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

.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 4s ease-in-out infinite;
}

.stat-card--1 {
    bottom: 15%;
    left: -15%;
    animation-delay: 0s;
}

.stat-card--2 {
    top: 10%;
    right: -10%;
    animation-delay: 1.3s;
}

.stat-card--3 {
    bottom: 2%;
    right: -5%;
    animation-delay: 2.6s;
}

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

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--plum-pale);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-primary);
    flex-shrink: 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--plum-deep);
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--neutral-600);
    line-height: 1.3;
    font-weight: 500;
}

/* ===== About ===== */
.about {
    padding: 7rem 0;
    background: var(--white);
}

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

.about-images {
    position: relative;
}

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

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

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

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

.about-accent-box {
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    background: var(--plum-primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-accent-box .accent-number {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--amber-light);
}

.about-accent-box .accent-text {
    font-size: 0.8rem;
    opacity: 0.8;
}

.about-content .section-tag {
    margin-bottom: 0.75rem;
}

.about-content .section-title {
    margin-bottom: 1.5rem;
}

.about-text {
    font-size: 1.02rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-700);
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: var(--amber-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-primary);
    flex-shrink: 0;
}

/* ===== Menu ===== */
.menu {
    padding: 7rem 0;
    background: var(--plum-bg);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0 2.5rem;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--neutral-600);
    background: var(--white);
    border: 2px solid var(--neutral-200);
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.menu-tab:hover {
    border-color: var(--plum-light);
    color: var(--plum-primary);
}

.menu-tab.active {
    background: var(--plum-primary);
    border-color: var(--plum-primary);
    color: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.menu-item {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-item-image {
    height: 200px;
    overflow: hidden;
}

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

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

.menu-item-content {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.menu-item-header h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--plum-deep);
}

.menu-item-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--amber-deep);
    background: var(--amber-pale);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--neutral-600);
    line-height: 1.6;
    flex: 1;
}

/* ===== Gallery ===== */
.gallery {
    padding: 7rem 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
    margin-top: 3rem;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 27, 51, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

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

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

.gallery-item--large {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}

.gallery-item--tall {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
}

/* ===== Visit ===== */
.visit {
    padding: 7rem 0;
    background: var(--plum-bg);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.visit-info .section-tag {
    margin-bottom: 0.75rem;
}

.visit-info .section-title {
    margin-bottom: 2rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit-detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.visit-detail h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--plum-deep);
    margin-bottom: 0.25rem;
}

.visit-detail p {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--amber-primary);
    font-weight: 500;
}

.visit-detail a:hover {
    color: var(--amber-deep);
    text-decoration: underline;
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 450px;
}

/* ===== Contact ===== */
.contact {
    padding: 7rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-content .section-tag {
    margin-bottom: 0.75rem;
}

.contact-content .section-title {
    margin-bottom: 1rem;
}

.contact-text {
    font-size: 1.02rem;
    color: var(--neutral-600);
    line-height: 1.75;
    margin-bottom: 2rem;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--neutral-700);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--neutral-800);
    background: var(--neutral-50);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--plum-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(143, 90, 155, 0.1);
}

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

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--plum-bg);
    border-radius: var(--radius-lg);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--amber-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--amber-primary);
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--plum-deep);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--neutral-600);
    font-size: 0.95rem;
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-card {
    background: var(--neutral-50);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--neutral-200);
}

.sidebar-card--accent {
    background: var(--plum-primary);
    border-color: var(--plum-primary);
    color: var(--white);
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--plum-deep);
    margin-bottom: 0.5rem;
}

.sidebar-card--accent h3 {
    color: var(--white);
}

.sidebar-card p {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.sidebar-card--accent p {
    color: rgba(255,255,255,0.75);
}

.sidebar-card .btn-sm {
    background: var(--amber-primary);
    color: var(--white);
}

.sidebar-card .btn-sm:hover {
    background: var(--amber-deep);
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--plum-primary);
    font-weight: 500;
    padding: 0.5rem 0;
}

.contact-link:hover {
    color: var(--amber-primary);
}

/* ===== Footer ===== */
.footer {
    background: var(--plum-deep);
    color: var(--white);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 300px;
}

.footer-nav h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber-light);
    margin-bottom: 1rem;
}

.footer-nav a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    padding: 0.3rem 0;
}

.footer-nav a:hover {
    color: var(--white);
    padding-left: 0.3rem;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

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

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

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .stat-card--1 { left: 0; }
    .stat-card--2 { right: 0; }
    .stat-card--3 { right: 5%; }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-images {
        max-width: 500px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }
    
    .gallery-item--large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
    
    .gallery-item--tall {
        grid-column: 1 / 2;
        grid-row: 2 / 4;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links a {
        color: var(--neutral-700) !important;
        font-size: 1.05rem;
    }
    
    .nav-toggle {
        z-index: 1001;
    }
    
    .hero {
        padding: 7rem 0 4rem;
        min-height: auto;
    }
    
    .hero-headline {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .stat-card {
        position: relative;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        top: auto !important;
        margin-top: 1rem;
        animation: none;
    }
    
    .hero-visual {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .hero-image-card {
        grid-column: 1 / -1;
        aspect-ratio: 4/3;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 1rem;
        border: 3px solid var(--white);
    }
    
    .about-accent-box {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-bottom: 1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--large,
    .gallery-item--tall {
        grid-column: auto;
        grid-row: auto;
    }
    
    .gallery-item {
        height: 250px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-headline {
        font-size: 1.7rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .menu-categories {
        gap: 0.4rem;
    }
    
    .menu-tab {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
