/* ============================================
   CURRY & SUSHI — Restaurant Website Styles
   Theme: Dark elegance with warm orange accents
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Colours */
    --clr-bg-dark: #0a0a0a;
    --clr-bg-section: #111111;
    --clr-bg-card: #1a1a1a;
    --clr-bg-card-hover: #222222;
    --clr-orange: #E8922A;
    --clr-orange-light: #f0a84d;
    --clr-orange-dark: #c47820;
    --clr-green: #4a8c3f;
    --clr-green-light: #5ea550;
    --clr-text: #f5f0eb;
    --clr-text-muted: #a09890;
    --clr-text-dim: #6b6560;
    --clr-white: #ffffff;
    --clr-overlay: rgba(10, 10, 10, 0.7);
    --clr-overlay-heavy: rgba(10, 10, 10, 0.85);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    --container-padding: 0 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-xslow: 0.8s ease;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    /* Navbar height */
    --navbar-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg-dark);
    color: var(--clr-text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--clr-orange);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--clr-orange-light);
}

::selection {
    background: var(--clr-orange);
    color: var(--clr-white);
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ---------- Section Shared ---------- */
.section-eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-orange);
    margin-bottom: 12px;
}

.section-eyebrow.center { text-align: center; }
.section-eyebrow.light { color: var(--clr-orange-light); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--clr-white);
    margin-bottom: 24px;
}

.section-title.center { text-align: center; }
.section-title.light { color: var(--clr-white); }
.section-title .highlight { color: var(--clr-orange); }

.section-description {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin-bottom: 48px;
}

.section-description.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.ampersand {
    color: var(--clr-orange);
    font-style: italic;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-dark));
    color: var(--clr-white);
    border-color: var(--clr-orange);
    box-shadow: 0 4px 20px rgba(232, 146, 42, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--clr-orange-light), var(--clr-orange));
    color: var(--clr-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 146, 42, 0.4);
}

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

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

.btn-large {
    padding: 18px 44px;
    font-size: 1.05rem;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--navbar-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--clr-white);
    z-index: 10;
}

.nav-logo img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 50px;
    transition: all var(--transition-fast);
    text-decoration: none;
    letter-spacing: 0.3px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-menu-btn {
    background: var(--clr-orange) !important;
    color: var(--clr-white) !important;
    font-weight: 600;
    padding: 8px 22px;
}

.nav-menu-btn:hover {
    background: var(--clr-orange-light) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 8px;
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background: var(--clr-white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* ============================================
   SIDEBAR (Mobile)
   ============================================ */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--clr-bg-dark);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1200;
    transform: translateX(110%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.sidebar.active {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.sidebar-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    color: var(--clr-text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--clr-white);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 16px 0;
    flex: 1;
}

.sidebar-link {
    display: block;
    padding: 16px 28px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--clr-text);
    text-decoration: none;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, background 0.2s ease, padding 0.2s ease, border 0.2s ease;
}

.sidebar.active .sidebar-link {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation for links */
.sidebar-link:nth-child(1) { transition-delay: 0.1s; }
.sidebar-link:nth-child(2) { transition-delay: 0.15s; }
.sidebar-link:nth-child(3) { transition-delay: 0.2s; }
.sidebar-link:nth-child(4) { transition-delay: 0.25s; }
.sidebar-link:nth-child(5) { transition-delay: 0.3s; }
.sidebar-link:nth-child(6) { transition-delay: 0.35s; }

.sidebar-link:hover {
    color: var(--clr-white);
    background: rgba(255, 255, 255, 0.04);
    border-left-color: var(--clr-orange);
    padding-left: 32px;
}

.sidebar-link.highlight {
    margin: 8px 20px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--clr-orange), var(--clr-orange-dark));
    color: var(--clr-white);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    border-left: none;
}

.sidebar-link.highlight:hover {
    background: linear-gradient(135deg, var(--clr-orange-light), var(--clr-orange));
    padding-left: 24px;
    border-left: none;
}

.sidebar-footer {
    padding: 20px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--clr-orange);
    font-weight: 500;
    margin-bottom: 8px;
    text-decoration: none;
}

.sidebar-address {
    font-size: 0.85rem;
    color: var(--clr-text-dim);
    line-height: 1.5;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
    animation: heroZoom 12s ease-in-out infinite alternate;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.4) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 700px;
}

.hero-logo {
    width: 140px;
    height: 140px;
    margin: 0 auto 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(232, 146, 42, 0.3);
    box-shadow: 0 10px 60px rgba(232, 146, 42, 0.2);
    animation: logoFloat 6s ease-in-out infinite;
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--clr-white);
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2.5vw, 1.15rem);
    color: var(--clr-text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 12px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--clr-orange);
    font-style: italic;
    margin-bottom: 36px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, rgba(232, 146, 42, 0.6), transparent);
    border-radius: 1px;
}

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

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    padding: var(--section-padding);
    background: var(--clr-bg-dark);
}

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

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

.about-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    right: 16px;
    bottom: 16px;
    border: 2px solid var(--clr-orange);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    pointer-events: none;
}

.about-content {
    padding: 20px 0;
}

.about-text {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text strong {
    color: var(--clr-orange);
    font-weight: 600;
}

.about-features {
    display: flex;
    gap: 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--clr-text);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 146, 42, 0.1);
    border-radius: 50%;
    color: var(--clr-orange);
    flex-shrink: 0;
}

/* ============================================
   PARALLAX BANNER
   ============================================ */
.parallax-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: var(--clr-overlay-heavy);
}

.parallax-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 24px;
}

.parallax-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--clr-white);
    line-height: 1.3;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
    padding: var(--section-padding);
    background: var(--clr-bg-section);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 16px;
}

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

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-item-overlay span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-white);
}

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

/* ============================================
   MENU CTA SECTION
   ============================================ */
.menu-cta {
    position: relative;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.menu-cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.92), rgba(30, 15, 5, 0.9));
}

.menu-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.menu-cta-text {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 36px;
    line-height: 1.8;
}

/* ============================================
   HOURS SECTION
   ============================================ */
.hours {
    padding: var(--section-padding);
    background: var(--clr-bg-dark);
}

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

.hours-note {
    color: var(--clr-text-muted);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.hours-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--clr-orange);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-slots {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.hours-slot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.slot-label {
    font-weight: 600;
    color: var(--clr-text);
    font-size: 0.95rem;
}

.slot-time {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

.hours-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
}

.hours-status {
    margin-top: 20px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

.hours-status.open {
    background: rgba(74, 140, 63, 0.15);
    color: var(--clr-green-light);
    border: 1px solid rgba(74, 140, 63, 0.3);
}

.hours-status.closed {
    background: rgba(232, 146, 42, 0.1);
    color: var(--clr-orange);
    border: 1px solid rgba(232, 146, 42, 0.2);
}

.hours-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--clr-orange);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.hours-phone:hover {
    color: var(--clr-orange-light);
}

.hours-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hours-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ============================================
   LOCATION SECTION
   ============================================ */
.location {
    padding: var(--section-padding);
    background: var(--clr-bg-section);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.location-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: var(--radius-lg);
}

.location-card {
    background: var(--clr-bg-card);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.location-detail:last-of-type {
    margin-bottom: 32px;
}

.location-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 146, 42, 0.1);
    border-radius: 50%;
    color: var(--clr-orange);
    flex-shrink: 0;
}

.location-detail h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 4px;
}

.location-detail p {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.location-detail p a {
    color: var(--clr-orange);
    text-decoration: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 0;
    background: var(--clr-bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--clr-white);
    margin-top: 16px;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--clr-text-dim);
    line-height: 1.6;
}

.footer-logo {
    border-radius: 50%;
    object-fit: cover;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 20px;
}

.footer-links-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--clr-text-dim);
    padding: 5px 0;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--clr-orange);
}

.footer-links-col p {
    font-size: 0.9rem;
    color: var(--clr-text-dim);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.82rem;
    color: var(--clr-text-dim);
}

.footer-credit a {
    color: var(--clr-orange);
    text-decoration: none;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   RESPONSIVE — Tablet
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 90px 0;
    }

    .about-grid {
        gap: 48px;
    }

    .hours-grid {
        gap: 48px;
    }

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

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        height: 400px;
    }

    .about-image-accent {
        display: none;
    }

    .hours-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hours-image-wrapper {
        order: -1;
    }

    .hours-image {
        height: 320px;
    }

    .location-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery-item-large {
        grid-column: span 1;
    }
}

/* ============================================
   RESPONSIVE — Mobile
   ============================================ */
@media (max-width: 600px) {
    :root {
        --section-padding: 72px 0;
        --navbar-height: 68px;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 10vw, 3rem);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-ctas .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .about-image {
        height: 300px;
    }

    .about-features {
        flex-direction: column;
        gap: 16px;
    }

    .parallax-banner {
        height: 280px;
        background-attachment: scroll;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .hours-card {
        padding: 24px;
    }

    .location-card {
        padding: 24px;
    }

    .location-map iframe {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

    .btn-large {
        padding: 16px 36px;
        font-size: 1rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-slide {
        transform: none !important;
        animation: none !important;
    }

    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
    }
}
