/* ============================================
   Kosta & Vic's Family Restaurant
   Confident Corporate · Terracotta + Sand
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --terracotta-50: #FFF8F0;
    --terracotta-100: #FDEBD4;
    --terracotta-200: #F9D4A8;
    --terracotta-300: #F4B972;
    --terracotta-400: #EC9A42;
    --terracotta-500: #D4782A;
    --terracotta-600: #B45309;
    --terracotta-700: #8B3D0A;
    --terracotta-800: #6E300E;
    --terracotta-900: #4A1F0A;

    --sand-50: #FDFBF7;
    --sand-100: #FAF5EC;
    --sand-200: #F3EAD4;
    --sand-300: #E8D9BA;
    --sand-400: #D4BE8E;
    --sand-500: #B89F6A;
    --sand-600: #967D4E;
    --sand-700: #735F3C;
    --sand-800: #5A4A30;
    --sand-900: #3D3222;

    --neutral-50: #FAFAF8;
    --neutral-100: #F4F4F2;
    --neutral-200: #E8E8E5;
    --neutral-300: #D4D4CF;
    --neutral-400: #A8A8A0;
    --neutral-500: #73736B;
    --neutral-600: #52524D;
    --neutral-700: #3A3A36;
    --neutral-800: #252522;
    --neutral-900: #141412;

    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px rgba(20, 20, 18, 0.08), 0 1px 2px rgba(20, 20, 18, 0.06);
    --shadow-md: 0 4px 12px rgba(20, 20, 18, 0.1), 0 2px 4px rgba(20, 20, 18, 0.06);
    --shadow-lg: 0 12px 40px rgba(20, 20, 18, 0.12), 0 4px 12px rgba(20, 20, 18, 0.08);
    --shadow-xl: 0 24px 60px rgba(20, 20, 18, 0.15), 0 8px 20px rgba(20, 20, 18, 0.1);

    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--sand-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

/* --- Utility --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

/* --- Typography --- */
.section-eyebrow {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta-600);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral-900);
    margin-bottom: var(--space-lg);
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.8rem 1.75rem;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--terracotta-600);
    color: #fff;
    border: 2px solid var(--terracotta-600);
}

.btn-primary:hover {
    background-color: var(--terracotta-700);
    border-color: var(--terracotta-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--neutral-900);
    border: 2px solid var(--neutral-300);
}

.btn-secondary:hover {
    border-color: var(--terracotta-500);
    color: var(--terracotta-700);
    transform: translateY(-2px);
}

.btn-nav {
    background-color: var(--terracotta-600);
    color: #fff;
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
}

.btn-nav:hover {
    background-color: var(--terracotta-700);
}

.btn-white {
    background-color: #fff;
    color: var(--terracotta-700);
    border: 2px solid #fff;
}

.btn-white:hover {
    background-color: var(--sand-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

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

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

.logo {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.logo span {
    color: var(--terracotta-600);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-links a {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--neutral-700);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--terracotta-600);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--terracotta-500);
    transition: width var(--transition-base);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    transition: all var(--transition-base);
    transform-origin: center;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--neutral-900);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.pexels.com/photos/10422361/pexels-photo-10422361.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1600&h=900');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,20,18,0.92) 0%, rgba(20,20,18,0.7) 50%, rgba(20,20,18,0.5) 100%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.hero-eyebrow {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta-400);
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--terracotta-500);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

.hero-headline em {
    font-style: normal;
    color: var(--terracotta-400);
}

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

.hero-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    flex-wrap: wrap;
}

.hero-actions .btn-secondary {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
}

.hero-actions .btn-secondary:hover {
    border-color: var(--terracotta-400);
    color: var(--terracotta-300);
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.hero-details .detail-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.hero-details .detail-item svg {
    color: var(--terracotta-400);
    flex-shrink: 0;
}

.hero-details .detail-item a {
    transition: color var(--transition-fast);
}

.hero-details .detail-item a:hover {
    color: var(--terracotta-400);
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.hero-img-main {
    width: 340px;
    height: 440px;
    top: 0;
    right: 0;
    z-index: 2;
}

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

.hero-badge {
    position: absolute;
    bottom: 0;
    right: 40px;
    z-index: 4;
    background-color: var(--terracotta-600);
    color: #fff;
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    box-shadow: var(--shadow-lg);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255,255,255,0.4);
    font-size: 0.75rem;
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* --- Intro Strip --- */
.intro-strip {
    background-color: var(--terracotta-600);
    padding: var(--space-3xl) 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.intro-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.intro-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.25);
    line-height: 1;
}

.intro-item p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    font-weight: 500;
}

/* --- About --- */
.about {
    padding: var(--space-4xl) 0;
    background-color: var(--sand-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-image-col {
    position: relative;
    height: 600px;
}

.about-img-main {
    width: 75%;
    height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--sand-50);
}

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

.about-text-col {
    padding: var(--space-xl) 0;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-600);
    margin-bottom: var(--space-lg);
}

.about-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--neutral-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta-600);
    line-height: 1;
}

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

/* --- Menu --- */
.menu {
    padding: var(--space-4xl) 0;
    background-color: var(--neutral-100);
}

.menu-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.menu-category {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    transition: all var(--transition-base);
}

.menu-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--terracotta-200);
}

.menu-cat-icon {
    width: 56px;
    height: 56px;
    background-color: var(--terracotta-50);
    border: 1px solid var(--terracotta-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    margin-bottom: var(--space-lg);
}

.menu-cat-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
}

.menu-cat-desc {
    font-size: 0.92rem;
    color: var(--neutral-500);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.menu-cat-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.menu-cat-items li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.95rem;
    color: var(--neutral-700);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--neutral-100);
}

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

.menu-cat-items li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--terracotta-400);
    border-radius: 50%;
    flex-shrink: 0;
}

.menu-note {
    margin-top: var(--space-2xl);
    text-align: center;
    padding: var(--space-lg);
    background-color: var(--terracotta-50);
    border: 1px dashed var(--terracotta-300);
    border-radius: var(--radius-md);
}

.menu-note p {
    font-size: 0.95rem;
    color: var(--terracotta-700);
    font-weight: 500;
}

/* --- Gallery --- */
.gallery {
    padding: var(--space-4xl) 0;
    background-color: var(--sand-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: var(--space-md);
    margin-top: var(--space-3xl);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

.gallery-item--tall {
    grid-column: span 5;
    grid-row: span 2;
    height: 100%;
    min-height: 400px;
}

.gallery-item--wide {
    grid-column: span 7;
    min-height: 200px;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) {
    min-height: 190px;
}

/* --- CTA Strip --- */
.cta-strip {
    padding: var(--space-4xl) 0;
    background-color: var(--neutral-900);
    position: relative;
    overflow: hidden;
}

.cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(180,83,9,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-2xl);
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.cta-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: var(--space-md);
    flex-shrink: 0;
}

/* --- Visit --- */
.visit {
    padding: var(--space-4xl) 0;
    background-color: var(--sand-100);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.visit-detail {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--neutral-200);
}

.visit-detail:first-child {
    padding-top: 0;
}

.visit-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background-color: var(--terracotta-50);
    border: 1px solid var(--terracotta-200);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-600);
    flex-shrink: 0;
}

.visit-detail strong {
    display: block;
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
}

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

.visit-detail a {
    color: var(--terracotta-600);
    transition: color var(--transition-fast);
}

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

.visit-map {
    margin-top: var(--space-xl);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Form */
.form-card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: var(--space-xs);
}

.form-sub {
    font-size: 0.92rem;
    color: var(--neutral-500);
    margin-bottom: var(--space-xl);
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

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

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta-500);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(180,83,9,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--neutral-400);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-xl);
    gap: var(--space-md);
}

.form-success svg {
    color: var(--terracotta-600);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
}

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

/* --- Footer --- */
.site-footer {
    background-color: var(--neutral-900);
    color: rgba(255,255,255,0.6);
    padding: var(--space-4xl) 0 var(--space-xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: var(--space-md);
}

.footer-logo span {
    color: var(--terracotta-400);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 320px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.88rem;
}

.footer-contact svg {
    color: var(--terracotta-400);
    flex-shrink: 0;
}

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

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

.footer-links h4,
.footer-hours h4 {
    font-family: var(--font-display);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: var(--space-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

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

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

.footer-hours p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-hours strong {
    color: var(--terracotta-400);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

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

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    transition: color var(--transition-fast);
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-image-stack {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-image-col {
        height: 400px;
    }

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--sand-50);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px var(--space-xl) var(--space-xl);
        gap: var(--space-lg);
        box-shadow: var(--shadow-xl);
        transition: right var(--transition-base);
        z-index: 1000;
    }

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

    .nav-links a:not(.btn) {
        font-size: 1rem;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-headline {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
    }

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

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

    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .intro-item {
        flex-direction: row;
        align-items: center;
        gap: var(--space-lg);
    }

    .intro-num {
        font-size: 1.75rem;
    }

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

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

    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
        min-height: 240px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

@media (max-width: 480px) {
    .about-stats {
        flex-direction: column;
        gap: var(--space-xl);
    }

    .about-img-main {
        height: 320px;
    }

    .about-img-float {
        width: 60%;
        height: 180px;
    }
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-scroll {
        animation: none;
    }

    .gallery-item img {
        transform: none;
    }

    .menu-category:hover {
        transform: none;
    }
}

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

    .reveal.revealed {
        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; }
}
