/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum-deep: #4A0E4E;
    --plum: #7B2CBF;
    --plum-light: #9D4EDD;
    --plum-pale: #E8D5F5;
    --plum-bg: #F5EEFA;
    --amber: #F59E0B;
    --amber-light: #FCD34D;
    --amber-dark: #D97706;
    --amber-pale: #FEF3C7;
    --white: #FFFFFF;
    --off-white: #FFFBF5;
    --dark: #1A0A20;
    --dark-soft: #2D1B36;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(74, 14, 78, 0.08);
    --shadow-md: 0 8px 30px rgba(74, 14, 78, 0.12);
    --shadow-lg: 0 20px 60px rgba(74, 14, 78, 0.15);
    --shadow-glow: 0 0 40px rgba(123, 44, 191, 0.3);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    background: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

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

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

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

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 251, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s;
}

.navbar.scrolled .logo {
    color: var(--plum-deep);
}

.logo-icon {
    font-size: 1.8rem;
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--dark-soft);
}

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

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

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

.nav-cta {
    background: var(--amber);
    color: var(--dark) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

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

.nav-cta:hover {
    background: var(--amber-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.navbar.scrolled .mobile-toggle span {
    background: var(--dark);
}

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

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

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

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 50%, #5B21B6 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: rgba(245, 158, 11, 0.08);
    top: -200px;
    right: -100px;
    border: 2px solid rgba(245, 158, 11, 0.15);
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: rgba(157, 78, 221, 0.15);
    bottom: -50px;
    left: 10%;
}

.geo-triangle--1 {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(245, 158, 11, 0.1);
    top: 20%;
    left: 5%;
    transform: rotate(-15deg);
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 15%;
    background-image: radial-gradient(circle, rgba(245, 158, 11, 0.4) 2px, transparent 2px);
    background-size: 16px 16px;
    opacity: 0.6;
}

.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: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--amber-light);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--amber);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-headline em {
    color: var(--amber);
    font-style: italic;
}

.headline-accent {
    display: block;
    font-size: 0.55em;
    color: var(--plum-pale);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    margin-top: 8px;
    letter-spacing: 0.02em;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
    background: var(--amber);
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary:hover {
    background: var(--amber-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--plum);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

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

/* Hero Visual */
.hero-visual {
    position: relative;
    min-height: 500px;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s;
}

.hero-card:hover {
    transform: translateY(-8px);
}

.hero-card--main {
    position: relative;
    z-index: 2;
}

.card-img {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 14, 78, 0.4), transparent);
}

.card-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--amber);
    color: var(--dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 1.5rem;
    color: var(--plum-deep);
    margin-bottom: 8px;
}

.card-body p {
    color: var(--gray);
    font-size: 0.95rem;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-card--1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.floating-card--2 {
    bottom: 25%;
    left: -30px;
    animation-delay: 1.3s;
}

.floating-card--3 {
    bottom: 5%;
    right: 10%;
    animation-delay: 2.6s;
}

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

.fc-icon {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.fc-stat {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--plum);
}

.fc-label {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========== STRIP ========== */
.strip {
    background: var(--amber);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.strip-wave-top, .strip-wave-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--amber);
}

.strip-wave-top {
    top: -10px;
    clip-path: ellipse(55% 100% at 50% 0%);
}

.strip-wave-bottom {
    bottom: -10px;
    clip-path: ellipse(55% 100% at 50% 100%);
}

.strip-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark);
}

.strip-divider {
    color: var(--plum);
    font-size: 0.7rem;
    opacity: 0.5;
}

/* ========== SECTION COMMON ========== */
.section-tag {
    display: inline-block;
    background: var(--plum-pale);
    color: var(--plum);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--plum-deep);
    margin-bottom: 16px;
}

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

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

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

/* ========== MENU ========== */
.menu-section {
    padding: 100px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.section-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.sbs-circle {
    position: absolute;
    border-radius: 50%;
}

.sbs-circle--1 {
    width: 400px;
    height: 400px;
    background: var(--plum-bg);
    top: -100px;
    left: -100px;
    opacity: 0.5;
}

.sbs-circle--2 {
    width: 250px;
    height: 250px;
    background: var(--amber-pale);
    bottom: -50px;
    right: -50px;
    opacity: 0.6;
}

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

.menu-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mc-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.mc-popular {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--plum);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.mc-body {
    padding: 24px;
}

.mc-category {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--amber-dark);
    margin-bottom: 8px;
}

.mc-body h3 {
    font-size: 1.25rem;
    color: var(--plum-deep);
    margin-bottom: 10px;
}

.mc-body p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--amber-pale);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    padding: 16px 24px;
    font-size: 0.95rem;
    color: var(--amber-dark);
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== ABOUT ========== */
.about-section {
    padding: 100px 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(123, 44, 191, 0.3) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-img-accent {
    position: absolute;
    inset: 20px;
    border: 3px solid rgba(245, 158, 11, 0.4);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.about-floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--amber);
    color: var(--dark);
    padding: 20px 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.afb-number {
    font-size: 1.8rem;
}

.afb-text {
    font-size: 0.9rem;
}

.about-content .section-tag {
    background: rgba(245, 158, 11, 0.2);
    color: var(--amber-light);
}

.about-content .section-title {
    color: var(--white);
    margin-bottom: 24px;
}

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

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

.af-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.af-icon {
    width: 36px;
    height: 36px;
    background: rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber);
    flex-shrink: 0;
}

/* ========== CTA ========== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--plum) 0%, var(--plum-deep) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-geo {
    position: absolute;
    border-radius: 50%;
}

.cta-geo--1 {
    width: 300px;
    height: 300px;
    background: rgba(245, 158, 11, 0.08);
    top: -80px;
    left: -80px;
}

.cta-geo--2 {
    width: 200px;
    height: 200px;
    background: rgba(157, 78, 221, 0.15);
    bottom: -50px;
    right: 10%;
}

.cta-geo--3 {
    width: 100px;
    height: 100px;
    border: 2px solid rgba(245, 158, 11, 0.2);
    top: 20%;
    right: 5%;
    border-radius: var(--radius-md);
    transform: rotate(45deg);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

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

/* ========== LOCATION ========== */
.location-section {
    padding: 100px 0;
    background: var(--off-white);
}

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

.location-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.li-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.li-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.li-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.li-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--plum-deep);
    margin-bottom: 4px;
}

.li-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.li-card a {
    color: var(--plum);
    font-weight: 600;
    transition: color 0.3s;
}

.li-card a:hover {
    color: var(--amber-dark);
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

/* ========== CONTACT ========== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--plum-bg) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.contact-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cbs-circle {
    position: absolute;
    border-radius: 50%;
}

.cbs-circle--1 {
    width: 300px;
    height: 300px;
    background: rgba(123, 44, 191, 0.06);
    top: -50px;
    right: -50px;
}

.cbs-circle--2 {
    width: 200px;
    height: 200px;
    background: rgba(245, 158, 11, 0.08);
    bottom: -30px;
    left: -30px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

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

.contact-info > p {
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}

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

.contact-detail {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--dark-soft);
    font-weight: 600;
    transition: color 0.3s;
}

.contact-detail:hover {
    color: var(--plum);
}

.contact-detail svg {
    color: var(--plum);
    flex-shrink: 0;
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--plum), var(--amber));
    border-radius: 3px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-soft);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s;
    background: var(--off-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plum);
    box-shadow: 0 0 0 4px rgba(123, 44, 191, 0.1);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #B0B0B0;
}

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

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

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

.fs-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--plum), var(--plum-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--white);
}

.form-success h3 {
    font-size: 1.5rem;
    color: var(--plum-deep);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--gray);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-top .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-hours h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-hours p {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 40px auto 0;
        min-height: 400px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--plum-deep);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }

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

    .nav-links a {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 1.1rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-visual {
        min-height: 350px;
    }

    .floating-card {
        padding: 14px 18px;
    }

    .fc-stat {
        font-size: 1.1rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 48px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .about-floating-badge {
        right: 10px;
        bottom: -10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .contact-form-wrapper {
        padding: 28px;
    }

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

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

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .strip-content {
        flex-direction: column;
        gap: 16px;
    }

    .strip-divider {
        display: none;
    }

    .floating-card--1 {
        right: 0;
    }

    .floating-card--2 {
        left: 0;
    }
}
