/* ============================================
   THI VIETNAMESE - Main Stylesheet
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --color-primary: #C41E2A;
    --color-primary-dark: #9E1822;
    --color-primary-light: #E8333F;
    --color-accent: #D4A84B;
    --color-accent-light: #E8C97A;
    --color-cream: #FAF5F0;
    --color-cream-dark: #F0E8DD;
    --color-dark: #1A1A1A;
    --color-dark-soft: #2D2D2D;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-white: #FFFFFF;
    --color-overlay: rgba(26, 26, 26, 0.7);
    --color-overlay-light: rgba(26, 26, 26, 0.4);

    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 60px rgba(0, 0, 0, 0.2);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-slower: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    --nav-height: 80px;
    --section-padding: 100px 0;
    --container-max: 1200px;
    --container-narrow: 900px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

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

.container--narrow {
    max-width: var(--container-narrow);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 12px;
}

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

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

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

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--color-primary);
    color: var(--color-white);
}

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

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

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

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

.btn--outline-dark:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--accent {
    background: var(--color-accent);
    color: var(--color-dark);
}

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
}

.nav--transparent {
    background: transparent;
}

.nav--scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    height: 70px;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
}

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

.nav__logo img {
    height: 45px;
    width: auto;
    border-radius: var(--radius-sm);
}

.nav--scrolled .nav__logo img {
    height: 40px;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1px;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 4px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-base);
}

.nav__link:hover {
    color: var(--color-white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

.nav__menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

.nav__cta {
    padding: 10px 24px;
    font-size: 0.8rem;
}

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

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

.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: var(--color-dark);
    z-index: 1000;
    transform: translateX(100%);
    transition: transform var(--transition-slower);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

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

.sidebar__header {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar__header img {
    height: 40px;
    border-radius: var(--radius-sm);
}

.sidebar__header span {
    font-family: var(--font-heading);
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 700;
}

.sidebar__nav {
    padding: 20px 0;
    flex: 1;
}

.sidebar__link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.sidebar__link:hover,
.sidebar__link.active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--color-primary);
}

.sidebar__link svg {
    width: 20px;
    height: 20px;
    opacity: 0.7;
    flex-shrink: 0;
}

.sidebar__link:hover svg {
    opacity: 1;
}

.sidebar__footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sidebar__socials {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.sidebar__social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.sidebar__social-link:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: scale(1.1);
}

.sidebar__social-link svg {
    width: 18px;
    height: 18px;
}

.sidebar__contact {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.8;
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.15); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.4) 0%,
        rgba(26, 26, 26, 0.2) 40%,
        rgba(26, 26, 26, 0.5) 70%,
        rgba(26, 26, 26, 0.85) 100%
    );
    z-index: -1;
}

.hero__content {
    text-align: center;
    color: var(--color-white);
    padding: 0 20px;
    max-width: 800px;
    animation: fadeUp 1s ease 0.3s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(196, 30, 42, 0.2);
    border: 1px solid rgba(196, 30, 42, 0.4);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.hero__badge svg {
    width: 14px;
    height: 14px;
    fill: var(--color-accent);
}

.hero__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2.5vw, 24px);
    margin-bottom: 8px;
}

.hero__brand-logo {
    height: clamp(80px, 13vw, 130px);
    width: auto;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.hero__brand-name {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1;
    letter-spacing: -1px;
}

.hero__tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    font-weight: 400;
}

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

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: fadeUp 1s ease 1s both;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- About Section ---------- */
.about {
    padding: var(--section-padding);
    background: var(--color-cream);
}

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

.about__image-wrapper {
    position: relative;
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/5;
}

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

.about__image:hover img {
    transform: scale(1.03);
}

.about__accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 140px;
    height: 140px;
    background: var(--color-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.about__accent-text {
    text-align: center;
    color: var(--color-white);
}

.about__accent-text .number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about__accent-text .label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
}

.about__text {
    max-width: 520px;
}

.about__description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--color-text-light);
    margin-bottom: 28px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

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

.about__feature-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(196, 30, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.about__feature-icon svg {
    width: 16px;
    height: 16px;
}

/* ---------- Gallery Section ---------- */
.gallery {
    padding: var(--section-padding);
    background: var(--color-dark);
    overflow: hidden;
}

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

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

.gallery .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.gallery__slider {
    position: relative;
    margin-top: 50px;
}

.gallery__track {
    display: flex;
    transition: transform var(--transition-slower);
    will-change: transform;
}

.gallery__slide {
    min-width: 100%;
    padding: 0 10px;
}

.gallery__slide-inner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    box-shadow: var(--shadow-xl);
}

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

.gallery__slide-inner:hover img {
    transform: scale(1.05);
}

.gallery__slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: var(--color-white);
}

.gallery__slide-caption h4 {
    color: var(--color-white);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.gallery__slide-caption p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.gallery__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 36px;
}

.gallery__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: all var(--transition-fast);
    background: transparent;
}

.gallery__arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.gallery__arrow svg {
    width: 20px;
    height: 20px;
}

.gallery__dots {
    display: flex;
    gap: 8px;
}

.gallery__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
    padding: 0;
}

.gallery__dot.active {
    background: var(--color-accent);
    transform: scale(1.3);
}

/* ---------- Menu CTA Section ---------- */
.menu-cta {
    padding: var(--section-padding);
    background: var(--color-cream);
    position: relative;
}

.menu-cta__card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    min-height: 420px;
    display: flex;
    align-items: center;
}

.menu-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.menu-cta__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-cta__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.9) 0%,
        rgba(196, 30, 42, 0.7) 100%
    );
}

.menu-cta__content {
    position: relative;
    z-index: 1;
    padding: 60px;
    max-width: 600px;
    color: var(--color-white);
}

.menu-cta__content .section-label {
    color: var(--color-accent);
}

.menu-cta__content h2 {
    color: var(--color-white);
    margin-bottom: 16px;
}

.menu-cta__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 32px;
}

.menu-cta__items {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
}

.menu-cta__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
}

.menu-cta__item svg {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

/* ---------- Hours Section ---------- */
.hours {
    padding: var(--section-padding);
    background: var(--color-white);
}

.hours__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.hours__table {
    width: 100%;
}

.hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all var(--transition-fast);
}

.hours__row:last-child {
    border-bottom: none;
}

.hours__row:hover {
    padding-left: 8px;
}

.hours__row.today {
    background: rgba(196, 30, 42, 0.04);
    border-radius: var(--radius-md);
    padding: 16px 16px;
    margin: -4px -16px;
    border-bottom-color: transparent;
}

.hours__row.today .hours__day {
    color: var(--color-primary);
    font-weight: 700;
}

.hours__day {
    font-weight: 600;
    color: var(--color-dark);
    font-size: 0.95rem;
}

.hours__time {
    text-align: right;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.hours__time span {
    display: block;
}

.hours__info {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.hours__info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.hours__info-item:last-child {
    margin-bottom: 0;
}

.hours__info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 30, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

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

.hours__info-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.hours__info-text p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.hours__info-text a {
    color: var(--color-primary);
    font-weight: 500;
}

.hours__info-text a:hover {
    text-decoration: underline;
}

/* ---------- Location Section ---------- */
.location {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.location__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.location__detail {
    display: flex;
    gap: 16px;
}

.location__detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(196, 30, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

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

.location__detail-text h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.location__detail-text p,
.location__detail-text a {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.location__detail-text a:hover {
    color: var(--color-primary);
}

.location__socials {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.location__social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    transition: all var(--transition-fast);
}

.location__social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.location__social-link svg {
    width: 18px;
    height: 18px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 0 30px;
}

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

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__logo img {
    height: 40px;
    border-radius: var(--radius-sm);
}

.footer__logo span {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
}

.footer__brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
}

.footer__link:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    font-size: 0.8rem;
}

.footer__bottom a {
    color: var(--color-accent);
}

.footer__bottom a:hover {
    text-decoration: underline;
}

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

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px 0;
    }

    .about__grid {
        gap: 40px;
    }

    .hours__grid,
    .location__grid {
        gap: 40px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
        --nav-height: 70px;
    }

    .nav__links {
        display: none;
    }

    .nav__menu-btn {
        display: flex;
    }

    .hero__title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
    }

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

    .hero__actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }

    .about__text {
        text-align: center;
        max-width: 100%;
    }

    .about__features {
        justify-items: center;
    }

    .gallery__slide-inner {
        aspect-ratio: 4/3;
    }

    .menu-cta__content {
        padding: 40px 28px;
    }

    .menu-cta__items {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .location__map {
        aspect-ratio: 16/10;
    }

    .footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container {
        width: 92%;
    }

    .hero__badge {
        font-size: 0.65rem;
        padding: 6px 14px;
    }

    .about__accent {
        width: 100px;
        height: 100px;
        bottom: -12px;
        right: -12px;
    }

    .about__accent-text .number {
        font-size: 1.8rem;
    }

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

    .menu-cta__card {
        min-height: 360px;
    }

    .hours__info {
        padding: 28px;
    }
}

/* ---------- Utility ---------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Prevent body scroll when sidebar open */
body.sidebar-open {
    overflow: hidden;
}
