/* ========================================
   Chung Chinese Restaurant — Stylesheet
   Forest Green + Off-White + Gold Accent
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-dark: #1B4332;
    --color-dark-700: #2D6A4F;
    --color-dark-600: #40916C;
    --color-light: #FEFAE0;
    --color-light-100: #FFFFFF;
    --color-accent: #D4A843;
    --color-accent-light: #E8C96A;
    --color-text: #1A1A1A;
    --color-text-muted: #555555;
    --color-text-light: #F5F5F0;
    --color-border: rgba(27, 67, 50, 0.12);
    --color-shadow: rgba(27, 67, 50, 0.1);
    --color-shadow-lg: rgba(27, 67, 50, 0.18);
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --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.5s 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(--color-text);
    background-color: var(--color-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-dark);
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(212, 168, 67, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag.light {
    color: var(--color-accent-light);
    background: rgba(232, 201, 106, 0.15);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 20px;
}

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

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-dark);
    color: var(--color-text-light);
    box-shadow: 0 4px 16px var(--color-shadow-lg);
}

.btn-primary:hover {
    background: var(--color-dark-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--color-shadow-lg);
}

.btn-secondary {
    background: var(--color-light-100);
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-secondary:hover {
    background: var(--color-dark);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-dark);
}

.btn-outline:hover {
    background: var(--color-dark);
    color: var(--color-text-light);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--color-light);
    color: var(--color-dark);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn-light:hover {
    background: var(--color-light-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

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

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 250, 224, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 20px var(--color-shadow);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-dark);
}

.nav-logo:hover {
    color: var(--color-dark-700);
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--color-dark);
    background: rgba(27, 67, 50, 0.06);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-light-100);
    background: var(--color-dark);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    margin-left: 8px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--color-dark-700);
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-toggle:hover {
    background: rgba(27, 67, 50, 0.06);
}

.hamburger {
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--color-dark);
    transition: var(--transition);
}

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

.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-light);
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}

/* Geometric decorations */
.geo-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.6;
}

.geo-circle-1 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.geo-circle-2 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 67, 50, 0.08) 0%, transparent 70%);
    bottom: 10%;
    left: -50px;
}

.geo-square-1 {
    width: 120px;
    height: 120px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-lg);
    transform: rotate(45deg);
    top: 25%;
    left: 8%;
}

.geo-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(27, 67, 50, 0.06);
    top: 15%;
    right: 15%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark-700);
    background: rgba(27, 67, 50, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    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-title {
    font-size: clamp(2.4rem, 5.5vw, 3.8rem);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-dark);
}

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

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 64px var(--color-shadow-lg);
}

.hero-image-wrapper img {
    width: 100%;
    max-width: 520px;
    height: auto;
    aspect-ratio: 6/7;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.4;
}

/* Floating Stat Cards */
.hero-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.stat-card {
    position: absolute;
    background: var(--color-light-100);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px var(--color-shadow-lg);
    pointer-events: auto;
    animation: float 4s ease-in-out infinite;
}

.stat-card-1 {
    top: 8%;
    left: -40px;
    animation-delay: 0s;
}

.stat-card-2 {
    top: 38%;
    left: -60px;
    animation-delay: 1s;
}

.stat-card-3 {
    bottom: 30%;
    left: -30px;
    animation-delay: 2s;
}

.stat-card-4 {
    bottom: 8%;
    right: -30px;
    animation-delay: 0.5s;
}

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

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
}

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

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

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

.menu-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}

.menu-cat-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    background: transparent;
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid var(--color-border);
    transition: var(--transition);
}

.menu-cat-btn:hover {
    color: var(--color-dark);
    border-color: var(--color-dark-600);
}

.menu-cat-btn.active {
    color: var(--color-light-100);
    background: var(--color-dark);
    border-color: var(--color-dark);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 56px;
}

.menu-card {
    background: var(--color-light-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--color-shadow);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--color-shadow-lg);
}

.menu-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.menu-card-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-dark);
    background: var(--color-accent);
    padding: 4px 12px;
    border-radius: 50px;
}

.menu-card-content {
    padding: 24px;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.menu-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.3;
}

.menu-card-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    white-space: nowrap;
    padding-top: 4px;
}

.menu-card-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.menu-cta {
    text-align: center;
    padding: 40px;
    background: rgba(27, 67, 50, 0.04);
    border-radius: var(--radius-xl);
}

.menu-cta p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* --- About Section --- */
.about-section {
    padding: 100px 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.about-img-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
    border: 4px solid var(--color-dark);
}

.about-img-secondary img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-pattern {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, var(--color-accent) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    z-index: -1;
}

.about-content .section-tag {
    background: rgba(212, 168, 67, 0.15);
}

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

.about-text {
    font-size: 1.05rem;
    color: rgba(254, 250, 224, 0.75);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 168, 67, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 14px;
    color: rgba(254, 250, 224, 0.6);
    line-height: 1.6;
}

/* --- Catering Section --- */
.catering-section {
    padding: 100px 0;
    background: var(--color-light);
    position: relative;
    overflow: hidden;
}

.geo-circle-3 {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    bottom: -200px;
    right: -150px;
}

.catering-content {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.catering-text {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 48px;
}

.catering-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.catering-service {
    background: var(--color-light-100);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px var(--color-shadow);
    transition: var(--transition);
}

.catering-service:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px var(--color-shadow-lg);
}

.service-icon {
    width: 72px;
    height: 72px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.catering-service h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.catering-service p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 0;
    background: var(--color-light-100);
}

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

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

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

.contact-icon {
    width: 52px;
    height: 52px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-dark);
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--color-accent);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--color-shadow);
}

/* Contact Form */
.contact-form-wrapper {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
}

.contact-form-card {
    background: var(--color-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 8px 40px var(--color-shadow);
}

.form-title {
    font-size: 1.6rem;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}

.form-input {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-light-100);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: #aaa;
}

.form-input:focus {
    border-color: var(--color-dark-600);
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.08);
}

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

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

.form-success.show {
    display: block;
}

.success-icon {
    width: 72px;
    height: 72px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--color-dark);
}

.form-success p {
    font-size: 14px;
    color: var(--color-text-muted);
}

/* --- Footer --- */
.footer {
    background: var(--color-dark);
    padding: 64px 0 0;
    color: var(--color-text-light);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-light);
    margin-bottom: 16px;
}

.footer-logo:hover {
    color: var(--color-accent);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(254, 250, 224, 0.6);
    line-height: 1.7;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: 16px;
}

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

.footer-links a,
.footer-hours li span {
    font-size: 14px;
    color: rgba(254, 250, 224, 0.65);
    transition: var(--transition);
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(254, 250, 224, 0.65);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(254, 250, 224, 0.85);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(254, 250, 224, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(254, 250, 224, 0.45);
}

.footer-bottom a {
    color: rgba(254, 250, 224, 0.45);
    transition: var(--transition);
}

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

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--color-dark);
    color: var(--color-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px var(--color-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-dark-700);
    transform: translateY(-4px);
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        gap: 40px;
    }
    
    .stat-card-1,
    .stat-card-2,
    .stat-card-3 {
        left: 0;
    }
    
    .stat-card-4 {
        right: 0;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .catering-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--color-light);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 12px 32px var(--color-shadow);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }
    
    .nav-cta {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        justify-content: center;
        order: -1;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
    }
    
    .hero-cards {
        display: none;
    }
    
    .geo-shape {
        display: none;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .about-img-secondary {
        right: -10px;
        bottom: -20px;
    }
    
    .about-pattern {
        display: none;
    }
    
    .catering-services {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .contact-form-wrapper {
        max-width: 100%;
    }
    
    .contact-form-card {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 22px;
        font-size: 14px;
    }
    
    .menu-categories {
        gap: 8px;
    }
    
    .menu-cat-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}
