/* ============================================
   Yellow Basket Burgers — Custom Styles
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --plum-950: #1A0A20;
    --plum-900: #2D1038;
    --plum-800: #4A1558;
    --plum-700: #6B1D7A;
    --plum-600: #7B2D8E;
    --plum-500: #9B3DAF;
    --plum-400: #B860C4;
    --plum-100: #F3E5F7;
    --plum-50: #FBF5FD;
    
    --amber-600: #D4891A;
    --amber-500: #F5A623;
    --amber-400: #FFB840;
    --amber-100: #FFF3D6;
    
    --gray-950: #0F0F14;
    --gray-900: #1A1A24;
    --gray-800: #2A2A38;
    --gray-700: #3D3D50;
    --gray-600: #5A5A72;
    --gray-500: #7A7A92;
    --gray-400: #9A9AB0;
    --gray-300: #B8B8CC;
    --gray-200: #D4D4E2;
    --gray-100: #EEF0F6;
    --gray-50: #F7F8FB;
    --white: #FFFFFF;
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--gray-900);
    background: var(--white);
    line-height: 1.6;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

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

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--plum-600);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    z-index: 200;
    font-size: 0.875rem;
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-100);
    transition: box-shadow 0.3s var(--ease-out);
}

.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(123, 45, 142, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 1.0625rem;
    color: var(--gray-900);
    letter-spacing: -0.01em;
}

.logo-text {
    font-weight: 500;
}

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

.main-nav a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-600);
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

.main-nav a:not(.btn):hover {
    color: var(--plum-600);
}

.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--plum-600);
    transition: width 0.3s var(--ease-out);
}

.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.nav-toggle:hover {
    background: var(--gray-50);
}

.hamburger {
    position: relative;
    width: 18px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--gray-700);
    border-radius: 1px;
    transition: all 0.3s var(--ease-out);
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 6px;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 6px;
    transform: rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--plum-600);
    color: var(--white);
    box-shadow: 0 2px 12px rgba(123, 45, 142, 0.2);
}

.btn-primary:hover {
    background: var(--plum-700);
    box-shadow: 0 4px 20px rgba(123, 45, 142, 0.3);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--plum-50);
    color: var(--plum-600);
    border: 1px solid var(--plum-100);
}

.btn-secondary:hover {
    background: var(--plum-100);
    border-color: var(--plum-400);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 0.9375rem;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--plum-950);
    overflow: hidden;
    padding: 120px 0 80px;
}

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

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            rgba(26, 10, 32, 0.95) 0%, 
            rgba(45, 16, 56, 0.85) 40%,
            rgba(74, 21, 88, 0.7) 70%,
            rgba(123, 45, 142, 0.5) 100%);
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(245, 166, 35, 0.12);
    border: 1px solid rgba(245, 166, 35, 0.25);
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--amber-400);
    letter-spacing: 0.04em;
    margin-bottom: 28px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 500;
    line-height: 1.12;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

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

.hero-subtitle {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-300);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s var(--ease-out);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(245, 166, 35, 0.3);
    transform: translateX(-4px);
}

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 166, 35, 0.12);
    border-radius: 12px;
    flex-shrink: 0;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--amber-500);
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-600);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--gray-900);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-title .accent {
    color: var(--plum-600);
    font-style: italic;
}

.section-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 520px;
    font-weight: 300;
}

.section-header {
    margin-bottom: 64px;
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    padding: 120px 0;
    background: var(--white);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.menu-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s var(--ease-out);
}

.menu-card:hover {
    border-color: var(--plum-100);
    box-shadow: 0 8px 40px rgba(123, 45, 142, 0.08);
    transform: translateY(-4px);
}

.menu-card-img {
    overflow: hidden;
    aspect-ratio: 3/2;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

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

.menu-card-body {
    padding: 28px;
}

.menu-card-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.menu-card-category {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--plum-600);
    background: var(--plum-50);
    padding: 4px 10px;
    border-radius: 100px;
}

.menu-card-tag {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--amber-600);
    background: var(--amber-100);
    padding: 4px 10px;
    border-radius: 100px;
}

.menu-card-title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--gray-900);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.menu-card-desc {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--gray-500);
    margin-bottom: 20px;
    font-weight: 300;
}

.menu-card-cta {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--plum-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.menu-card-cta:hover {
    gap: 10px;
}

.menu-card-cta svg {
    transition: transform 0.2s ease;
}

.menu-card-cta:hover svg {
    transform: translateX(2px);
}

.menu-footer {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--gray-100);
}

.menu-footer p {
    font-size: 0.9375rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    font-weight: 300;
}

.menu-footer .btn {
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    padding: 120px 0;
    background: var(--gray-50);
}

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

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 7/9;
}

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 6px solid var(--gray-50);
    aspect-ratio: 4/3;
}

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

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

.about-text {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--gray-600);
    margin-bottom: 20px;
    font-weight: 300;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--gray-700);
}

.value-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-50);
    border-radius: 10px;
    flex-shrink: 0;
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
    padding: 100px 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.info-card {
    padding: 40px 32px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    transition: all 0.3s var(--ease-out);
}

.info-card:hover {
    border-color: var(--plum-100);
    box-shadow: 0 8px 40px rgba(123, 45, 142, 0.06);
}

.info-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-50);
    border-radius: 14px;
    margin-bottom: 24px;
}

.info-card-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
}

.hours-day {
    color: var(--gray-600);
    font-weight: 400;
}

.hours-time {
    color: var(--gray-900);
    font-weight: 500;
}

.address {
    font-style: normal;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.phone-link {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--plum-600);
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 12px;
}

.phone-link:hover {
    color: var(--plum-500);
}

.info-note {
    font-size: 0.8125rem;
    color: var(--gray-400);
    font-weight: 300;
    margin-top: 12px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 120px 0;
    background: var(--plum-950);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(123, 45, 142, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-content .section-tag {
    color: var(--amber-400);
}

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

.cta-content .section-title .accent {
    color: var(--amber-500);
}

.cta-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--gray-400);
    margin-bottom: 40px;
    font-weight: 300;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--gray-950);
    padding: 64px 0 32px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-brand .logo {
    justify-content: center;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--gray-500);
    font-weight: 300;
}

.footer-contact {
    font-size: 0.9375rem;
    color: var(--gray-400);
    line-height: 1.8;
    font-weight: 300;
}

.footer-phone {
    color: var(--amber-500);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-phone:hover {
    color: var(--amber-400);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    font-size: 0.8125rem;
    color: var(--gray-600);
    font-weight: 300;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

@media (prefers-reduced-motion: no-preference) {
    .reveal[data-reveal] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   MOBILE NAV OVERLAY
   ============================================ */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 32px 24px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        z-index: 99;
    }
    
    .main-nav.open {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }
    
    .main-nav li {
        width: 100%;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .main-nav a {
        display: block;
        padding: 16px 0;
        font-size: 1.0625rem;
        color: var(--gray-700);
    }
    
    .main-nav a:not(.btn)::after {
        display: none;
    }
    
    .main-nav .btn {
        margin-top: 16px;
        justify-content: flex-start;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        margin-top: 48px;
    }
    
    .stat-card {
        flex: 1;
        min-width: 160px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    
    .about-img-secondary {
        right: 0;
        bottom: -24px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: clamp(1.875rem, 7vw, 2.75rem);
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .stat-card {
        min-width: 100%;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .about-img-main {
        aspect-ratio: 4/3;
    }
    
    .about-img-secondary {
        width: 60%;
        right: -16px;
        bottom: -20px;
    }
    
    .menu-section,
    .about-section {
        padding: 80px 0;
    }
    
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 96px 0 48px;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
    }
}
