/* Design Tokens */
:root {
    --dark-base: #1a1a1a;
    --dark-lighter: #2c2c2c;
    --accent-amber: #c05000;
    --accent-warm: #f5a623;
    --cream: #f5f0e8;
    --off-white: #ffffff;
    --text-muted: #888;
    --text-light: #f5f0e8;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.3);
    --shadow-deep: 0 20px 50px rgba(0,0,0,0.5);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --header-height: 85px;
}

/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .display-serif {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: var(--transition-smooth); }

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

.centred { text-align: center; }
.accent { color: var(--accent-amber); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.btn-amber {
    background: var(--accent-amber);
    color: white;
    border: 1px solid var(--accent-amber);
}

.btn-amber:hover {
    background: var(--accent-warm);
    border-color: var(--accent-warm);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(192, 80, 0, 0.4);
}

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

.btn-outline:hover {
    background: var(--cream);
    color: var(--dark-base);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* Sections */
section {
    padding: 120px 0;
}

.section-dark {
    background: var(--dark-base);
    background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 80%);
}

.section-cream {
    background: var(--cream);
    color: var(--dark-base);
}

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

.section-header h2 {
    font-size: clamp(34px, 4.5vw, 54px);
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 2px;
    background: var(--accent-amber);
    margin: 20px auto 0;
}

.section-sub {
    font-size: 18px;
    opacity: 0.8;
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: transparent;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

#main-header.scrolled {
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(10px);
    height: 75px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

#main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 26px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.logo i {
    font-size: 20px;
    color: var(--accent-amber);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 1;
    color: var(--accent-warm);
}

.nav-ctas {
    display: flex;
    gap: 15px;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 680px;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.08); }
    to   { transform: scale(1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.08) 0%,
        rgba(0, 0, 0, 0.38) 45%,
        rgba(0, 0, 0, 0.82) 100%
    );
    z-index: 2;
}

.hero-scroll-cue {
    position: absolute;
    bottom: 38px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.45);
    font-size: 18px;
    animation: scrollBounce 2.6s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0);   opacity: 0.45; }
    50%       { transform: translateX(-50%) translateY(9px); opacity: 0.85; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.hero .label {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--accent-warm);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 85px);
    margin-bottom: 25px;
    color: white;
}

.hero .subheading {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.rating-info {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.rating-info .stars {
    color: gold;
    margin-right: 10px;
}

/* About Strip */
.about-strip {
    padding: 80px 0;
    border-top: 2px solid rgba(192, 80, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.stat-num {
    font-size: 56px;
    color: var(--accent-warm);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.stat-col {
    position: relative;
    padding: 10px 0;
}

.stat-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.09);
}

.about-text {
    font-size: 20px;
    color: var(--cream);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Highlights Grid */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.food-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.card-img {
    height: 250px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.food-card:hover .card-img img {
    transform: scale(1.1);
}

.placeholder-dark {
    background: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.placeholder-dark span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--accent-amber);
}

.item-name-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 11px;
    text-align: center;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--dark-base);
}

.card-body p {
    font-size: 14px;
    color: #666;
}

/* Menu Section */
.menu-tabs-container {
    margin-bottom: 40px;
    overflow-x: auto;
    scrollbar-width: none;
}

.menu-tabs {
    display: flex;
    gap: 15px;
    white-space: nowrap;
    padding-bottom: 10px;
}

.tab-btn {
    padding: 10px 20px;
    background: var(--dark-lighter);
    border: none;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.tab-btn.active {
    background: var(--accent-amber);
    color: white;
    opacity: 1;
}

.tab-btn:hover:not(.active) {
    opacity: 1;
    background: rgba(255, 255, 255, 0.09);
}

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

.menu-item {
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 20px;
    transition: var(--transition-smooth);
}

.menu-item:hover .menu-item-header h4 {
    color: var(--accent-warm);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.menu-item-header h4 {
    font-size: 20px;
    color: var(--cream);
}

.menu-item-header .price {
    font-family: 'Outfit', sans-serif;
    color: var(--accent-warm);
    font-weight: 600;
}

.menu-item .desc {
    font-size: 13px;
    color: var(--text-muted);
}

.menu-cta {
    margin-top: 60px;
}

/* Deals Section */
.student-deal-feat {
    display: flex;
    background: var(--dark-base);
    color: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 50px;
    box-shadow: var(--shadow-deep);
}

.deal-img {
    flex: 1;
}

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

.deal-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-base) 0%, #252525 100%);
}

.badge {
    display: inline-block;
    background: var(--accent-amber);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 20px;
    width: fit-content;
}

.deal-content h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.deal-content .price {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    color: var(--accent-warm);
    font-weight: 700;
    margin-bottom: 20px;
}

.deal-content .desc {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 30px;
}

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

.deal-mini {
    background: var(--dark-base);
    padding: 30px;
    border-radius: 8px;
    color: white;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.deal-mini:hover {
    transform: translateY(-5px);
    border-color: var(--accent-amber);
    box-shadow: 0 10px 30px rgba(192, 80, 0, 0.2);
}

.deal-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    align-items: baseline;
}

.deal-top h4 {
    font-size: 18px;
}

.deal-top .price {
    color: var(--accent-warm);
    font-weight: 600;
}

.deal-mini p {
    font-size: 13px;
    opacity: 0.6;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--cream);
    color: var(--dark-base);
    padding: 40px;
    border-radius: 8px;
    border-left: 3px solid transparent;
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-6px);
    border-left-color: var(--accent-amber);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.review-stars {
    color: gold;
    font-size: 12px;
    margin-bottom: 15px;
}

.reviewer-name {
    font-size: 20px;
    margin-bottom: 2px;
}

.reviewer-meta {
    font-size: 12px;
    color: #888;
    margin-bottom: 15px;
    display: block;
}

.review-text {
    font-size: 14px;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.review-scores {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

/* Baked Feature */
.split-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.split-img {
    flex: 1;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}

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

.split-content {
    flex: 1;
}

.split-content .label {
    display: block;
    color: var(--accent-warm);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.split-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.split-content p {
    margin-bottom: 30px;
    font-size: 18px;
    opacity: 0.8;
}

/* Find Us */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 48px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 18px;
}

.info-item i {
    color: var(--accent-amber);
    margin-top: 5px;
}

.opening-hours {
    margin-top: 40px;
    padding: 30px;
    background: var(--dark-lighter);
    border-radius: 8px;
}

.opening-hours h3 {
    font-size: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.opening-hours ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.contact-ctas {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    box-shadow: var(--shadow-deep);
}

/* Footer */
footer {
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin: 15px 0 30px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--accent-warm);
}

.copyright {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0.55;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    opacity: 1;
    border-color: var(--accent-amber);
    color: var(--accent-warm);
    transform: translateY(-3px);
}

/* Animations */
.hero-reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.animate-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.revealed {
    animation: revealIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes revealIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s, transform 1s;
}

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

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

.animate-fade {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.animate-fade.active {
    opacity: 1;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
}

.mobile-toggle span {
    width: 30px;
    height: 2px;
    background: var(--cream);
    transition: var(--transition-smooth);
    transform-origin: center;
}

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

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

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

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--dark-base);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    padding: 40px;
}

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

.mobile-nav-links {
    text-align: center;
    margin-bottom: 50px;
}

.mobile-nav-links li {
    margin-bottom: 30px;
}

.mobile-nav-links a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
}

.mobile-nav-ctas {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
}

/* Responsive */
@media (max-width: 1024px) {
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .deals-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .split-layout { flex-direction: column; gap: 40px; }
    .grid-2 { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav-links, .nav-ctas { display: none; }
    .mobile-toggle { display: flex; }
    
    .stats-grid { grid-template-columns: 1fr; gap: 20px; }
    .highlights-grid { grid-template-columns: 1fr; }
    .deals-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    
    .menu-grid { grid-template-columns: 1fr; }
    
    .hero { min-height: 580px; }
    .hero h1 { font-size: 48px; }
    .section-header h2 { font-size: 36px; }
    
    .deal-content { padding: 30px; }
    .deal-content h3 { font-size: 28px; }
    
    .student-deal-feat { flex-direction: column; }
    
    .split-img { height: 350px; }
    .split-content h2 { font-size: 36px; }
}
