/* ============================================
   CHIMAC RESTAURANT — STYLESHEET
   Deep Navy + Warm Gold | Vibrant Modern
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --navy: #0f172a;
    --navy-light: #1e293b;
    --navy-mid: #334155;
    --gold: #d4a017;
    --gold-light: #f0c040;
    --gold-pale: #fef3c7;
    --accent: #e8590c;
    --accent-light: #ff783e;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f1f5f9;
    --gray-100: #e2e8f0;
    --gray-200: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.12);
    --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.16);
    --shadow-gold: 0 4px 20px rgba(212, 160, 23, 0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* --- 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(--navy);
    background: var(--off-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

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

/* --- Geometric Background Shapes --- */
.geometric-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    opacity: 0.04;
}

.geo-circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--gold);
    top: -200px;
    right: -150px;
}

.geo-circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--accent);
    bottom: 20%;
    left: -100px;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 150px 260px 150px;
    border-color: transparent transparent var(--gold) transparent;
    top: 40%;
    right: 5%;
    opacity: 0.03;
    transform: rotate(15deg);
}

.geo-square {
    width: 200px;
    height: 200px;
    background: var(--navy);
    bottom: 10%;
    right: 10%;
    transform: rotate(45deg);
    opacity: 0.03;
}

.geo-ring {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 40px solid var(--accent);
    top: 60%;
    left: 3%;
    opacity: 0.02;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header.scrolled .logo-text {
    color: var(--white);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
    transform: rotate(0deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    letter-spacing: 0.05em;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.2s ease;
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--gold) !important;
    color: var(--navy) !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
    transition: background 0.2s ease, transform 0.2s ease !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

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

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(15, 23, 42, 0.75) 50%,
        rgba(15, 23, 42, 0.6) 100%
    );
}

.hero-geo {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.hero-geo-shape {
    position: absolute;
}

.geo-h1 {
    width: 500px;
    height: 500px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.08;
    top: -100px;
    right: -100px;
}

.geo-h2 {
    width: 300px;
    height: 300px;
    border: 3px solid var(--gold);
    opacity: 0.1;
    bottom: 10%;
    right: 5%;
    transform: rotate(45deg);
}

.geo-h3 {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 140px 80px;
    border-color: transparent transparent var(--accent) transparent;
    opacity: 0.15;
    top: 20%;
    right: 15%;
    transform: rotate(-10deg);
}

.hero .container {
    position: relative;
    z-index: 4;
    padding-top: 80px;
}

.hero-content {
    max-width: 720px;
}

.hero-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-title-accent {
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
    max-width: 560px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

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

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    letter-spacing: 0.05em;
    animation: bounce 2s ease infinite;
}

/* --- Section Shared --- */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
    max-width: 560px;
}

.text-gold {
    color: var(--gold);
}

/* --- Menu Section --- */
.menu {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--off-white);
}

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

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

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.menu-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 40px 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-6px);
}

.menu-card--gold {
    background: var(--navy);
    box-shadow: var(--shadow-lg);
}

.menu-card--gold:hover {
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.3);
}

.menu-card--navy {
    background: var(--gold);
    box-shadow: var(--shadow-md);
}

.menu-card--navy:hover {
    box-shadow: 0 20px 60px rgba(212, 160, 23, 0.3);
}

.menu-card--accent {
    background: var(--accent);
    box-shadow: var(--shadow-md);
}

.menu-card--accent:hover {
    box-shadow: 0 20px 60px rgba(232, 89, 12, 0.3);
}

.menu-card-geo {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: 0.1;
    top: -40px;
    right: -40px;
}

.menu-card--gold .menu-card-geo { background: var(--gold); }
.menu-card--navy .menu-card-geo { background: var(--navy); }
.menu-card--accent .menu-card-geo { background: var(--white); }

.menu-card-content {
    position: relative;
    z-index: 1;
}

.menu-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.menu-card--gold .menu-card-icon {
    background: rgba(212, 160, 23, 0.15);
    color: var(--gold);
}

.menu-card--navy .menu-card-icon {
    background: rgba(15, 23, 42, 0.15);
    color: var(--navy);
}

.menu-card--accent .menu-card-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
}

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

.menu-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.menu-card--gold .menu-card-title { color: var(--white); }
.menu-card--navy .menu-card-title { color: var(--navy); }
.menu-card--accent .menu-card-title { color: var(--white); }

.menu-card-desc {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.menu-card--gold .menu-card-desc { color: rgba(255,255,255,0.65); }
.menu-card--navy .menu-card-desc { color: rgba(15, 23, 42, 0.7); }
.menu-card--accent .menu-card-desc { color: rgba(255,255,255,0.85); }

.menu-card-link {
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.menu-card--gold .menu-card-link { color: var(--gold); }
.menu-card--navy .menu-card-link { color: var(--navy); }
.menu-card--accent .menu-card-link { color: var(--white); }

.menu-card-link:hover { opacity: 0.7; }

.menu-cta {
    text-align: center;
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 48px;
}

.menu-cta p {
    color: rgba(255,255,255,0.7);
    font-size: 17px;
    margin-bottom: 24px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.menu-cta .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
}

.menu-cta .btn-primary:hover {
    background: var(--accent-light);
    border-color: var(--accent-light);
}

/* --- About Section --- */
.about {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--white);
}

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

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

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 80%;
    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;
    top: 50%;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

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

.about-img-accent {
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 45%;
    height: 35%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 16px;
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
}

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

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

/* --- Experience Section --- */
.experience {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

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

.experience-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.9) 0%,
        rgba(15, 23, 42, 0.8) 100%
    );
}

.experience-geo {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.exp-geo-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gold);
    opacity: 0.06;
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

.exp-geo-2 {
    width: 150px;
    height: 150px;
    background: var(--accent);
    bottom: -30px;
    right: 10%;
    border-radius: var(--radius-lg);
    transform: rotate(30deg);
}

.experience .container {
    position: relative;
    z-index: 3;
    text-align: center;
}

.experience-content {
    max-width: 700px;
    margin: 0 auto;
}

.experience-content .section-title {
    margin-bottom: 24px;
}

.experience-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.experience-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.exp-pill {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: background 0.2s ease;
}

.exp-pill:hover {
    background: rgba(255,255,255,0.2);
}

/* --- Visit Section --- */
.visit {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--off-white);
}

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

.visit-info .section-title {
    margin-bottom: 20px;
}

.visit-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 40px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.visit-detail-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

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

.visit-detail strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.visit-detail p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--gold);
    transition: color 0.2s ease;
}

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

/* Contact Form */
.visit-form-wrap {
    position: relative;
}

.visit-form-card {
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}

.visit-form-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.05;
    top: -60px;
    right: -60px;
}

.visit-form-card h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
}

.visit-form-card > p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    position: relative;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.form-success svg {
    color: var(--gold);
    margin: 0 auto 16px;
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--white);
    margin-bottom: 8px;
}

.form-success p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

/* --- Footer --- */
.footer {
    background: var(--navy);
    padding: 64px 0 0;
}

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

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a,
.footer-contact li {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
}

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

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .about-images {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.35s ease;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links a {
        font-size: 18px;
        color: rgba(255,255,255,0.8);
    }
    
    .hero-title {
        font-size: clamp(36px, 8vw, 56px);
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-num {
        font-size: 22px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-images {
        height: 350px;
        order: -1;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .visit-form-card {
        padding: 32px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .menu-cta {
        padding: 32px 24px;
    }
    
    .experience-pills {
        flex-direction: column;
        align-items: center;
    }
}
