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

:root {
    --plum: #5B2C6F;
    --plum-deep: #3D1F4D;
    --plum-light: #7D3C99;
    --plum-soft: #9B59B6;
    --amber: #F39C12;
    --amber-deep: #E67E22;
    --amber-light: #F5B041;
    --amber-pale: #FDEBD0;
    --cream: #FFFAF5;
    --cream-dark: #FDF0E5;
    --dark: #1A0A2E;
    --dark-soft: #2D1B4E;
    --text: #1A0A2E;
    --text-muted: #6B5B7B;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(91, 44, 111, 0.08);
    --shadow-md: 0 8px 30px rgba(91, 44, 111, 0.12);
    --shadow-lg: 0 20px 60px rgba(91, 44, 111, 0.15);
    --shadow-card: 0 4px 20px rgba(91, 44, 111, 0.10);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

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

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

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

/* ─── BACKGROUND PATTERN ─── */
.bg-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.025;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--plum) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--amber) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* ─── MARQUEE ─── */
.marquee-track {
    background: var(--plum);
    overflow: hidden;
    padding: 10px 0;
    position: relative;
    z-index: 10;
}

.marquee-text {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-light);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ─── NAVIGATION ─── */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 250, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(91, 44, 111, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    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: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--plum);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--plum);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-light);
    transform: rotate(-5deg);
    transition: var(--transition);
}

.nav-logo:hover .logo-icon {
    transform: rotate(5deg) scale(1.05);
}

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

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

.nav-link:hover {
    color: var(--plum);
    background: rgba(91, 44, 111, 0.06);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--plum);
    color: var(--white);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-left: 8px;
}

.nav-cta:hover {
    background: var(--plum-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: calc(100vh - 72px - 120px);
    display: flex;
    flex-direction: column;
    padding: 60px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 50%, #F5E6D3 100%);
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--white);
    border: 1px solid rgba(91, 44, 111, 0.12);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--plum);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

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

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

.hero-headline {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.0;
}

.hero-headline .line {
    display: block;
}

.amber-dot {
    color: var(--amber);
}

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

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(91, 44, 111, 0.3);
}

.btn-primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 44, 111, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--plum);
    border: 2px solid rgba(91, 44, 111, 0.2);
}

.btn-secondary:hover {
    border-color: var(--plum);
    background: rgba(91, 44, 111, 0.04);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--plum);
    border-color: var(--white);
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

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

/* ─── HERO VISUAL ─── */
.hero-visual {
    position: relative;
    height: 600px;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-accent {
    position: absolute;
    inset: -20px;
    border: 3px solid var(--amber);
    border-radius: calc(var(--radius-xl) + 8px);
    z-index: -1;
    transform: rotate(3deg);
    opacity: 0.5;
}

/* ─── FLOATING CARDS ─── */
.floating-cards {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-card);
    pointer-events: auto;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(91, 44, 111, 0.06);
}

.float-card:nth-child(1) {
    top: 8%;
    left: -40px;
    animation-delay: 0s;
}

.float-card:nth-child(2) {
    bottom: 28%;
    left: -60px;
    animation-delay: 2s;
}

.float-card:nth-child(3) {
    bottom: 6%;
    right: -30px;
    animation-delay: 4s;
}

.fc-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card:nth-child(1) .fc-icon {
    background: var(--amber-pale);
    color: var(--amber-deep);
}

.float-card:nth-child(2) .fc-icon {
    background: rgba(91, 44, 111, 0.1);
    color: var(--plum);
}

.float-card:nth-child(3) .fc-icon {
    background: #FADBD8;
    color: #E74C3C;
}

.fc-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.fc-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
}

.fc-value {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}

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

/* ─── HERO WAVE ─── */
.hero-wave {
    position: relative;
    z-index: 2;
    margin-top: -1px;
    color: var(--cream);
}

.hero-wave svg {
    width: 100%;
    height: 120px;
    display: block;
}

/* ─── HIGHLIGHTS ─── */
.highlights {
    padding: 80px 0;
    background: var(--cream);
    position: relative;
    z-index: 3;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.highlight-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 4px 4px 0 0;
}

.h-amber {
    background: var(--amber-pale);
}

.h-amber::before {
    background: var(--amber);
}

.h-plum {
    background: rgba(91, 44, 111, 0.07);
}

.h-plum::before {
    background: var(--plum);
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.h-num {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.15;
}

.h-amber .h-num {
    color: var(--amber-deep);
}

.h-plum .h-num {
    color: var(--plum);
}

.highlight-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.highlight-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── SECTION HEADERS ─── */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--amber-deep);
    margin-bottom: 12px;
    padding: 6px 14px;
    background: var(--amber-pale);
    border-radius: 100px;
}

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

.section-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

/* ─── MENU SECTION ─── */
.menu-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 3;
}

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

.menu-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(91, 44, 111, 0.06);
}

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

.mc-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.mc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.mc-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 10, 46, 0.5), transparent);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.menu-card:hover .mc-img-overlay {
    opacity: 1;
}

.mc-tag {
    background: var(--amber);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 5px 12px;
    border-radius: 100px;
}

.mc-body {
    padding: 24px;
}

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

.mc-top h3 {
    font-size: 1.3rem;
    color: var(--dark);
}

.mc-cat {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--plum);
    background: rgba(91, 44, 111, 0.08);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

.mc-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.mc-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mc-list li {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(91, 44, 111, 0.1);
}

.menu-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(91, 44, 111, 0.04);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--amber);
}

.note-icon {
    color: var(--amber-deep);
    flex-shrink: 0;
    margin-top: 2px;
}

.menu-note p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── ABOUT SECTION ─── */
.about-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-img-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 5px solid var(--white);
}

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

.aif-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: var(--plum);
    color: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
}

.about-geo-shape {
    position: absolute;
    top: -30px;
    right: -20px;
    color: var(--amber);
    animation: spin-slow 20s linear infinite;
}

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(91, 44, 111, 0.1);
}

.astat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.as-num {
    font-family: 'Syne', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--plum);
    line-height: 1;
}

.as-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.astat-divider {
    width: 2px;
    height: 40px;
    background: rgba(91, 44, 111, 0.15);
    border-radius: 2px;
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 100px 0;
    background: var(--plum);
    position: relative;
    z-index: 3;
    overflow: hidden;
}

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

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

.cta-c1 {
    width: 400px;
    height: 400px;
    background: rgba(243, 156, 18, 0.1);
    top: -100px;
    right: -100px;
}

.cta-c2 {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    bottom: -80px;
    left: -80px;
}

.cta-tri {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 80px 80px;
    border-color: transparent transparent var(--amber) transparent;
    opacity: 0.15;
    top: 40px;
    left: 60px;
}

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

.cta-tag {
    background: rgba(243, 156, 18, 0.2);
    color: var(--amber-light);
}

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

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 36px;
}

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

/* ─── LOCATION SECTION ─── */
.location-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    z-index: 3;
}

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

.loc-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 36px;
    margin-bottom: 36px;
}

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

.loc-icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    flex-shrink: 0;
}

.loc-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.loc-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.5;
}

.loc-link:hover {
    color: var(--plum);
    text-decoration: underline;
}

.loc-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* ─── LOCATION VISUAL ─── */
.location-visual {
    position: relative;
}

.lv-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.lv-card-1 {
    margin-bottom: 20px;
}

.lv-card-1 img, .lv-card-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lv-card-2 {
    height: 200px;
}

.lv-accent-block {
    position: absolute;
    bottom: 40px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--amber);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transform: rotate(12deg);
    box-shadow: var(--shadow-md);
}

/* ─── FOOTER ─── */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
    z-index: 3;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--plum), var(--amber), var(--plum));
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--plum);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--amber-light);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fc-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.fc-link:hover {
    color: var(--amber-light);
}

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

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

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

.hours-time {
    font-size: 1.1rem !important;
    font-weight: 700;
    color: var(--amber-light) !important;
}

.hours-note {
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-top: 8px;
}

/* ─── FOOTER FORM ─── */
.footer-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-form input,
.footer-form textarea {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    transition: var(--transition);
    outline: none;
}

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

.footer-form input:focus,
.footer-form textarea:focus {
    border-color: var(--amber);
    background: rgba(255, 255, 255, 0.1);
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.3);
    border-radius: var(--radius-sm);
    color: #2ECC71;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 12px;
}

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

/* ─── FOOTER BOTTOM ─── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
}

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

/* ─── SCROLL TO TOP ─── */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--plum);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 50;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

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

.scroll-top:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
}

/* ─── REVEAL ANIMATIONS ─── */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }
    
    .highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 250, 245, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(91, 44, 111, 0.08);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }
    
    .nav-cta {
        margin-left: 0;
        justify-content: center;
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        height: 400px;
        order: -1;
    }
    
    .float-card:nth-child(1) {
        left: 10px;
        top: 5%;
    }
    
    .float-card:nth-child(2) {
        left: 10px;
        bottom: 30%;
    }
    
    .float-card:nth-child(3) {
        right: 10px;
        bottom: 5%;
    }
    
    .highlight-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-img-float {
        right: 10px;
        bottom: -20px;
        width: 180px;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-img-accent {
        display: none;
    }
    
    .cta-tri {
        display: none;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .hero-visual {
        height: 320px;
    }
    
    .floating-cards {
        display: none;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
