/* ==========================================================================
   1. RESET & PREMIUM BASE STYLES
   ========================================================================== */
:root {
    --ink: #111827;
    --paper: #FAFAFA;
    --muted: #6B7280;
    --ember: #C1440E;
    --ember-light: #FF7A45;
    --ember-glow: linear-gradient(135deg, #FF7A45 0%, #C1440E 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FAFAFA; /* Premium paper white */
    color: #111827; /* Charcoal dark text */
    overflow-x: hidden;
    min-height: 100vh;
}

/* ==========================================================================
   2. MINIMALIST HEADER
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 26px 50px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    z-index: 100;
    background: #FAFAFA;
}

.logo {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-mark {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    text-decoration: none;
    color: #111827;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    opacity: 0.6;
}

.account-trigger {
    justify-self: end;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #111827;
    background: #FFF;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease, transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    flex-shrink: 0;
}

.account-trigger:hover,
.account-trigger.active-trigger {
    background: var(--ember);
    color: #FFF;
    transform: scale(1.05);
}

.account-icon {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   3. HERO STAGE CONTAINER
   ========================================================================== */
.hero-stage {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 120px 20px 60px 20px;
}

.hero-title {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    margin-bottom: 8px;
    text-transform: uppercase;
    text-align: center;
}

.filter-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    z-index: 10;
}

.filter-btn {
    background: none;
    border: 1px solid transparent;
    color: #6B7280;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.filter-btn:hover {
    color: var(--ink);
}

.filter-btn.active-filter {
    border-color: var(--ember);
    color: var(--ember);
    background-color: #FFF;
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1100px;
    height: 430px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px; 
    margin-bottom: 30px;
}

.card-wrapper {
    position: absolute;
    width: 300px;
    height: 400px;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s ease;
    transform-style: preserve-3d;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    background: #FFF;
    overflow: hidden;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.card-wrapper.active-tilt {
    transition: transform 0.1s ease-out;
}

.card-media-box {
    width: 100%;
    height: 100%;
    position: relative;
    pointer-events: none;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-media-box img, .card-media-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease, transform 0.1s ease-out;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-media-box video {
    opacity: 0;
}

.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    color: white;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    transform: translateZ(30px);
}

.card-wrapper.left {
    transform: translateX(-340px) translateZ(-160px) rotateY(28deg);
}

.card-wrapper.center {
    transform: translateX(0) translateZ(0) rotateY(0deg);
    opacity: 1;
    z-index: 2;
}

.card-wrapper.center .card-media-box img { opacity: 1; }
.card-wrapper.center .card-media-box video { opacity: 0; }
.card-wrapper.center .card-media-box.video-ready video { opacity: 1; }
.card-wrapper.center .card-media-box.video-ready img { opacity: 0; }

.card-wrapper.right {
    transform: translateX(340px) translateZ(-160px) rotateY(-28deg);
}

.card-wrapper.hidden {
    transform: translateX(0) translateZ(-400px);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
}

.pagination-dots {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    z-index: 10;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #D1D5DB;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.dot.active-dot {
    background-color: var(--ember);
    transform: scale(1.3);
}

.action-container {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.btn {
    background: none;
    border: 1px solid #111827;
    color: #111827;
    padding: 12px 32px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover {
    background: var(--ember);
    border-color: var(--ember);
    color: #FFF;
}

.btn:active {
    transform: scale(0.96);
}

.btn-secondary {
    background-color: var(--ink);
    color: #FFF;
}

.btn-secondary:hover {
    background-color: var(--ember);
    border-color: var(--ember);
    color: #FFF;
}

/* ==========================================================================
   4. MANIFESTO SECTION
   ========================================================================== */
.manifesto-section {
    background-color: #FAFAFA; 
    width: 100%;
    min-height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 10%;
}

.manifesto-container {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1.4fr; 
    gap: 80px;
    align-items: flex-start;
}

.column-left {
    padding-top: 20px; 
}

.philosophy-text {
    font-size: 14px;
    line-height: 1.8;
    color: #6B7280; 
    letter-spacing: 1px;
    max-width: 280px;
}

.manifesto-headline {
    font-family: "Georgia", serif;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #111827; 
    text-transform: none; 
    letter-spacing: -1px;
}

.manifesto-headline span {
    font-weight: 700;
    letter-spacing: 1px;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(20px); 
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity; 
}

.scroll-reveal.delay-1 {
    transition-delay: 0.2s; 
}

.scroll-reveal.delay-2 {
    transition-delay: 0.4s; 
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0); 
}

/* ==========================================================================
   5. ABOUT & CULINARY PHILOSOPHY
   ========================================================================== */
.about-section {
    background-color: #FAFAFA;
    width: 100%;
    padding: 120px 10%;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
}

.about-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

.section-tag {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
}

.about-headline {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #111827;
    max-width: 750px;
}

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

.about-narrative {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.narrative-lead {
    font-family: "Georgia", serif;
    font-size: 1.35rem;
    line-height: 1.6;
    color: #111827;
}

.narrative-lead em {
    font-style: italic;
    font-weight: 600;
}

.narrative-body {
    font-size: 14px;
    line-height: 1.85;
    color: #6B7280;
    letter-spacing: 0.3px;
}

.about-chef-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.chef-image-box {
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.chef-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.about-chef-card:hover .chef-image-box img {
    transform: scale(1.03);
}

.chef-meta {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chef-role {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
}

.chef-name {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
}

.chef-quote {
    font-size: 13px;
    font-style: italic;
    color: #6B7280;
    margin-top: 6px;
    line-height: 1.5;
}

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

.about-card {
    background: #FFFFFF;
    padding: 40px 32px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.about-number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111827;
    opacity: 0.3;
}

.about-card-title {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
}

.about-card-text {
    font-size: 13px;
    line-height: 1.75;
    color: #6B7280;
}

/* ==========================================================================
   6. FLOATING INGREDIENTS CANVAS
   ========================================================================== */
.ingredients-canvas {
    background-color: #FAFAFA;
    width: 100%;
    min-height: 140vh;
    position: relative;
    overflow: hidden;
    padding: 100px 5%;
}

.ingredients-container {
    width: 100%;
    max-width: 1300px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.floating-element {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 5;
    will-change: transform; 
}

.ingredient-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.04); 
}

.ingredient-meta {
    font-size: 11px;
    letter-spacing: 2px;
    color: #9CA3AF; 
    font-weight: 600;
}

.rooibos-block {
    left: 5%;
    top: 10%;
    width: 28%;
}

.salt-block {
    left: 40%;
    top: 40%;
    width: 24%;
    z-index: 6; 
}

.fynbos-block {
    right: 5%;
    top: 20%;
    width: 26%;
}

/* ==========================================================================
   6b. SOCIAL PROOF / PRESS SECTION
   ========================================================================== */
.social-proof-section {
    background-color: #FAFAFA;
    width: 100%;
    padding: 120px 10%;
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    display: flex;
    justify-content: center;
}

.social-proof-container {
    width: 100%;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
}

.quote-slider {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    min-height: 140px;
    justify-content: center;
}

.proof-quote {
    font-family: "Georgia", serif;
    font-size: 1.75rem;
    line-height: 1.5;
    font-weight: 400;
    color: #111827;
    max-width: 680px;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.quote-source {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
}

.accolade-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 10px;
    padding-top: 40px;
    border-top: 1px solid #E5E7EB;
    width: 100%;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.badge-title {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: #111827;
    font-weight: 600;
}

.badge-sub {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9CA3AF;
    font-weight: 600;
}

/* ==========================================================================
   7. ACCOUNT PANEL
   ========================================================================== */
.account-panel {
    position: fixed;
    top: 84px;
    right: 50px;
    width: 340px;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(17, 24, 39, 0.18);
    padding: 28px;
    z-index: 200;
    opacity: 0;
    transform: translateY(-14px) scale(0.97);
    transform-origin: top right;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1), transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.account-panel.active-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.account-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.panel-eyebrow {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
    margin-bottom: 4px;
}

.panel-title {
    font-family: "Georgia", serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 8px;
}

.panel-subtitle {
    font-size: 12px;
    line-height: 1.6;
    color: #6B7280;
    max-width: 240px;
}

.auth-close-btn {
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: #9CA3AF;
    cursor: pointer;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.auth-close-btn:hover {
    color: #111827;
}

.panel-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.panel-btn {
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
    box-sizing: border-box;
}

.panel-quick-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-top: 1px solid #F0F0F0;
    padding-top: 16px;
}

.panel-quick-link {
    font-size: 13px;
    color: #374151;
    text-decoration: none;
    padding: 10px 6px;
    border-radius: 8px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.panel-quick-link:hover {
    background-color: #F9FAFB;
    color: #111827;
}

.panel-perks {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #F0F0F0;
}

.perks-title {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
    margin-bottom: 12px;
}

.perks-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.perks-list li {
    position: relative;
    padding-left: 16px;
    font-size: 12px;
    line-height: 1.5;
    color: #374151;
}

.perks-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #111827;
}

.perks-note {
    font-size: 11.5px;
    line-height: 1.6;
    color: #9CA3AF;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #F0F0F0;
}

/* ==========================================================================
   8. SITE FOOTER & MAP GPS STYLES
   ========================================================================== */
.site-footer {
    background-color: #FAFAFA;
    border-top: 1px solid #E5E7EB;
    padding: 100px 10% 40px 10%;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111827;
}

.footer-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9CA3AF;
    font-weight: 600;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.col-title {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #111827;
}

.col-text {
    font-size: 13px;
    line-height: 1.7;
    color: #6B7280;
}

.col-text strong {
    color: #111827;
}

.col-text a {
    color: #111827;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.3s ease;
}

.col-text a:hover {
    opacity: 0.6;
}

/* GPS Map Frame Container */
.map-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #E5E7EB;
    margin-top: 4px;
    margin-bottom: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-wrapper:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.map-frame {
    display: block;
    width: 100%;
    filter: grayscale(20%) contrast(95%);
    transition: filter 0.3s ease;
}

.map-wrapper:hover .map-frame {
    filter: grayscale(0%) contrast(100%);
}

.footer-link-inline {
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-link-inline:hover {
    opacity: 0.6;
    transform: translateX(4px);
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav-list a {
    font-size: 13px;
    color: #6B7280;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-nav-list a:hover {
    color: #111827;
    transform: translateX(4px);
}

/* Footer Bottom Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid #F0F0F0;
    font-size: 12px;
    color: #9CA3AF;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-socials a {
    color: #6B7280;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-socials a:hover {
    color: #111827;
}

.back-to-top {
    color: #111827 !important;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.back-to-top:hover {
    transform: translateY(-2px);
}


/* ==========================================================================
   8b. NAV CURRENT-PAGE INDICATOR
   ========================================================================== */
.main-nav a.nav-current {
    font-weight: 700;
    color: var(--ember);
    border-bottom: 1px solid var(--ember);
    padding-bottom: 2px;
}

/* ==========================================================================
   8c. MENU PAGE (GRID CARD LAYOUT)
   ========================================================================== */
.menu-page {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 150px 20px 100px;
}

.menu-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 44px;
}

.menu-page-title {
    font-family: "Playfair Display", "Georgia", serif;
    font-weight: 400;
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.menu-filter-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 56px;
}

.menu-category {
    margin-bottom: 64px;
}

.menu-category.category-hidden {
    display: none;
}

.menu-category-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
    border-bottom: 1px solid #E5E7EB;
    padding-bottom: 12px;
    margin: 0 0 28px;
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.menu-item {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.35s ease;
}

.menu-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.10);
}

.menu-item.item-hidden {
    display: none;
}

.menu-item-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    flex-shrink: 0;
    background: #EFEFEA;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.07);
}

.menu-item-content {
    flex: 1;
    min-width: 0;
    padding: 22px 24px 26px;
}

.menu-item-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
}

.menu-item-title {
    font-family: "Playfair Display", "Georgia", serif;
    font-weight: 600;
    font-size: 1.25rem;
    color: #111827;
    margin: 0;
}

.menu-item-price {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 1.1rem;
    color: var(--ember);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-item-desc {
    font-size: 13.5px;
    line-height: 1.75;
    color: #6B7280;
    margin: 10px 0 12px;
}

.menu-item-tag {
    font-size: 9.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9CA3AF;
    font-weight: 700;
}

.menu-cta {
    text-align: center;
    margin-top: 24px;
}

/* ==========================================================================
   8d. LOGIN / REGISTER PAGE
   ========================================================================== */
.auth-page {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 150px 20px 100px;
}

.auth-page-wrap {
    width: 100%;
    max-width: 440px;
}

.auth-page-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    padding: 44px;
}

.auth-page-header {
    text-align: center;
    margin-bottom: 28px;
}

.auth-page-header .section-tag {
    display: block;
    margin-bottom: 10px;
}

.auth-page-title {
    font-family: "Playfair Display", "Georgia", serif;
    font-weight: 400;
    font-size: 1.6rem;
    margin: 0 0 10px;
}

.auth-page-subtitle {
    font-size: 13px;
    line-height: 1.6;
    color: #6B7280;
    max-width: 300px;
    margin: 0 auto;
}

.auth-tabs {
    display: flex;
    gap: 6px;
    background: #F3F4F6;
    padding: 4px;
    border-radius: 30px;
    margin-bottom: 26px;
}

.auth-tab {
    flex: 1;
    border: none;
    background: none;
    padding: 10px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6B7280;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
}

.auth-tab.active-tab {
    background: var(--ember);
    color: #FFFFFF;
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 16px;
}

.auth-form.active-form {
    display: flex;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
}

.input-group input,
.input-group select,
.input-group textarea {
    padding: 13px 15px;
    border: 1px solid #E5E7EB;
    border-radius: 10px;
    font-size: 13.5px;
    font-family: inherit;
    color: #111827;
    outline: none;
    background: #FFFFFF;
    transition: border-color 0.25s ease;
    width: 100%;
}

.input-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='1.8'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 16px;
    padding-right: 40px;
}

.input-group textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #111827;
}

.form-utilities {
    display: flex;
    justify-content: flex-end;
    margin-top: -8px;
}

.forgot-link {
    font-size: 11px;
    color: #6B7280;
    text-decoration: none;
}

.forgot-link:hover {
    color: #111827;
}

.auth-submit {
    width: 100%;
    padding: 14px;
    border-radius: 30px;
    margin-top: 4px;
}

.form-message {
    display: none;
    font-size: 12.5px;
    line-height: 1.5;
    padding: 10px 14px;
    border-radius: 10px;
    margin: -4px 0 0;
}

.form-message.visible {
    display: block;
}

.form-message.success {
    background-color: #ECFDF5;
    color: #047857;
    border: 1px solid #A7F3D0;
}

.form-message.error {
    background-color: #FEF2F2;
    color: #B91C1C;
    border: 1px solid #FECACA;
}

.auth-page-card .panel-perks {
    margin-top: 28px;
    padding-top: 24px;
}

/* ==========================================================================
   8e. RESERVE PAGE
   ========================================================================== */
.reserve-page {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 150px 20px 100px;
}

.reserve-wrap {
    width: 100%;
    max-width: 1000px;
}

.reserve-header {
    text-align: center;
    margin-bottom: 50px;
}

.reserve-page-title {
    font-family: "Playfair Display", "Georgia", serif;
    font-weight: 400;
    font-size: 2.4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 12px;
}

.reserve-subtitle {
    font-size: 14px;
    line-height: 1.7;
    color: #6B7280;
    max-width: 480px;
    margin: 0 auto;
}

.reserve-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: start;
}

.reserve-form-card {
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.reserve-info-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
}

.reserve-info-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.reserve-info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reserve-info-body {
    padding: 30px;
}

.reserve-info-row {
    display: flex;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #F0F0F0;
}

.reserve-info-row:last-child {
    border-bottom: none;
}

.reserve-info-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #111827;
    margin-top: 2px;
}

.reserve-info-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9CA3AF;
    font-weight: 700;
    margin: 0 0 4px;
}

.reserve-info-text {
    font-size: 13px;
    line-height: 1.65;
    color: #374151;
    margin: 0;
}

.reserve-confirm-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FAFAFA;
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-top: 4px;
}

.reserve-confirm-note p {
    font-size: 12px;
    line-height: 1.6;
    color: #6B7280;
    margin: 0;
}

/* ==========================================================================
   8eb. MY RESERVATIONS PAGE
   ========================================================================== */
.my-reservations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reservation-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 24px 22px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.reservation-status-badge {
    align-self: flex-start;
    font-size: 9.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.reservation-status-badge.status-pending {
    background: #FFF7ED;
    color: #C1440E;
}

.reservation-status-badge.status-confirmed {
    background: #ECFDF5;
    color: #047857;
}

.reservation-status-badge.status-cancelled {
    background: #FEF2F2;
    color: #B91C1C;
}

.reservation-card-date {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 1.15rem;
    color: var(--ink);
    margin: 0;
}

.reservation-card-time {
    font-size: 13px;
    font-weight: 600;
    color: var(--ember);
    margin: 0;
}

.reservation-card-meta {
    font-size: 12.5px;
    color: #6B7280;
    margin: 4px 0 0;
}

.reservation-card-notes {
    font-size: 12.5px;
    font-style: italic;
    color: #9CA3AF;
    margin: 8px 0 0;
    line-height: 1.5;
}

/* ==========================================================================
   8ec. ADMIN RESERVATIONS TABLE
   ========================================================================== */
.admin-table-wrap {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-table th {
    text-align: left;
    padding: 16px 18px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #9CA3AF;
    font-weight: 700;
    border-bottom: 1px solid #F0F0F0;
    white-space: nowrap;
}

.admin-table td {
    padding: 16px 18px;
    border-bottom: 1px solid #F5F5F5;
    color: #374151;
    vertical-align: top;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-notes-cell {
    max-width: 220px;
    font-size: 12.5px;
    color: #6B7280;
}

.admin-status-form {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.admin-btn {
    border: none;
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

.admin-btn:hover {
    opacity: 0.85;
}

.admin-btn-confirm {
    background: #ECFDF5;
    color: #047857;
}

.admin-btn-cancel {
    background: #FEF2F2;
    color: #B91C1C;
}

.admin-btn-reset {
    background: #F3F4F6;
    color: #374151;
}

/* ==========================================================================
   8ed. ADMIN DASHBOARD
   ========================================================================== */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.admin-stat-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.admin-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.admin-stat-card-static {
    cursor: default;
}

.admin-stat-number {
    font-family: "Playfair Display", "Georgia", serif;
    font-size: 2.4rem;
    color: var(--ink);
    line-height: 1;
}

.admin-stat-label {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
    margin-top: 4px;
}

.admin-stat-flag {
    align-self: flex-start;
    margin-top: 10px;
    font-size: 10.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    background: #FFF7ED;
    color: var(--ember);
}

.admin-stat-flag-neutral {
    background: #F3F4F6;
    color: #6B7280;
}

.admin-dashboard-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
}

.admin-section-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
    margin: 0 0 16px;
}

/* ==========================================================================
   8ee. ADMIN MENU MANAGEMENT
   ========================================================================== */
.admin-note {
    background: #FFF7ED;
    border: 1px solid #FED7AA;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 28px;
}

.admin-note p {
    font-size: 12.5px;
    line-height: 1.6;
    color: #9A3412;
    margin: 0;
}

.admin-menu-form-card {
    max-width: none;
    margin-bottom: 40px;
}

.admin-form-title {
    font-family: "Playfair Display", "Georgia", serif;
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--ink);
    margin: 0 0 20px;
}

.admin-menu-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.admin-menu-form textarea {
    min-height: 70px;
}

.admin-checkbox-group {
    justify-content: center;
    gap: 10px;
}

.admin-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #374151;
    cursor: pointer;
}

.admin-checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--ember);
    cursor: pointer;
}

.admin-form-actions {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.admin-menu-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.admin-mini-tag {
    display: inline-block;
    margin-left: 8px;
    font-size: 9px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ember);
    background: #FFF7ED;
    padding: 2px 8px;
    border-radius: 8px;
}

/* ==========================================================================
   8ef. ADMIN SEARCH / FILTER BAR
   ========================================================================== */
.admin-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 22px;
}

.admin-filter-search {
    flex: 1;
    min-width: 220px;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
    font-size: 13px;
    color: var(--ink);
    outline: none;
    background: #FFFFFF;
    transition: border-color 0.25s ease;
}

.admin-filter-search:focus {
    border-color: var(--ember);
}

.admin-filter-select {
    padding: 12px 36px 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 30px;
    font-size: 13px;
    color: var(--ink);
    background-color: #FFFFFF;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='1.8'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 14px;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.admin-filter-submit {
    padding: 12px 26px;
    white-space: nowrap;
}

/* ==========================================================================
   8f. SWEETALERT2 THEME (RESERVATION CONFIRMATION POPUP)
   ========================================================================== */
.ember-swal-popup {
    border-radius: 22px !important;
    padding: 44px 40px 36px !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18) !important;
}

.ember-swal-title {
    font-family: "Playfair Display", "Georgia", serif !important;
    font-weight: 400 !important;
    font-size: 1.7rem !important;
    color: var(--ink) !important;
    margin-top: 8px !important;
}

.ember-swal-html {
    margin-top: 6px !important;
}

.ember-swal-html p {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 22px;
}

.ember-swal-details {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: #FAFAFA;
    border: 1px solid #F0F0F0;
    border-radius: 14px;
    padding: 6px 18px;
    text-align: left;
}

.ember-swal-details-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.ember-swal-details-row:last-child {
    border-bottom: none;
}

.ember-swal-details-label {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
    color: #9CA3AF;
}

.ember-swal-details-value {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink);
    text-align: right;
}

.ember-swal-confirm {
    background: var(--ink) !important;
    color: #FFFFFF !important;
    border: none !important;
    padding: 13px 40px !important;
    border-radius: 30px !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-top: 26px !important;
    box-shadow: none !important;
    transition: background-color 0.3s ease !important;
}

.ember-swal-confirm:hover {
    background: var(--ember) !important;
}

.ember-swal-confirm:focus {
    box-shadow: 0 0 0 3px rgba(193, 68, 14, 0.25) !important;
}

/* Recolor SweetAlert2's built-in success icon (ring + check) to the ember palette */
.ember-swal-popup .swal2-icon.swal2-success {
    border-color: transparent !important;
}

.ember-swal-popup .swal2-icon.swal2-success .swal2-success-ring {
    border-color: rgba(193, 68, 14, 0.25) !important;
}

.ember-swal-popup .swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: var(--ember) !important;
}

.ember-swal-popup .swal2-icon.swal2-success .swal2-success-fix {
    background-color: transparent !important;
}

.ember-swal-popup .swal2-timer-progress-bar {
    background: var(--ember-glow) !important;
}

/* ==========================================================================
   9. MOBILE BOTTOM NAVIGATION (APP-STYLE, HIDDEN ON DESKTOP)
   ========================================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 150;
    background: rgba(250, 250, 250, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(17, 24, 39, 0.08);
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom, 0px)) 6px;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.04);
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 6px 2px;
    text-decoration: none;
    color: #9CA3AF;
    border-radius: 14px;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.mobile-nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-nav-item span {
    font-size: 9.5px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 600;
}

.mobile-nav-item:active {
    transform: scale(0.94);
}

.mobile-nav-item.active-mobile-nav {
    color: var(--ember);
    background-color: rgba(193, 68, 14, 0.08);
}

/* ==========================================================================
   10. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
    .about-section {
        padding: 100px 8%;
    }
    .about-container {
        gap: 60px;
    }
    .about-headline {
        font-size: 2.4rem;
    }
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .chef-image-box {
        height: 340px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .menu-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .my-reservations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    /* Bottom app-style nav takes over primary navigation on mobile */
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 72px; /* keep content clear of the fixed bottom nav */
    }

    /* -------------------- HEADER -------------------- */
    header {
        padding: 16px 20px;
        grid-template-columns: 1fr auto;
    }
    .logo {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    .main-nav {
        display: none; /* replaced by the bottom nav on mobile */
    }
    .account-trigger {
        width: 36px;
        height: 36px;
    }
    .account-icon {
        width: 16px;
        height: 16px;
    }
    .account-panel {
        top: 66px;
        right: 16px;
        left: 16px;
        width: auto;
        padding: 22px;
        max-height: calc(100vh - 160px);
    }

    /* -------------------- HERO / CAROUSEL -------------------- */
    .hero-stage {
        min-height: auto;
        padding: 96px 16px 40px 16px;
    }
    .hero-title {
        font-size: 1.9rem;
        letter-spacing: 2px;
        margin-bottom: 4px;
    }
    .filter-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
        margin-bottom: 28px;
    }
    .filter-btn {
        padding: 7px 14px;
        font-size: 10.5px;
        letter-spacing: 1px;
    }
    .carousel-container {
        height: 320px;
        margin-bottom: 20px;
        padding: 0 20px; /* breathing room so side cards don't touch the screen edge */
    }
    .card-wrapper {
        width: 210px;
        height: 290px;
        border-radius: 14px;
        box-shadow: 0 18px 36px rgba(0,0,0,0.06);
    }
    .card-wrapper.left {
        transform: translateX(-130px) translateZ(-160px) rotateY(24deg);
    }
    .card-wrapper.right {
        transform: translateX(130px) translateZ(-160px) rotateY(-24deg);
    }
    .card-label {
        padding: 18px 14px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }
    .pagination-dots {
        margin-bottom: 22px;
    }
    .action-container {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .btn {
        padding: 10px 20px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    /* -------------------- MANIFESTO -------------------- */
    .manifesto-section {
        min-height: auto;
        padding: 70px 8%;
    }
    .manifesto-container {
        grid-template-columns: 1fr; 
        gap: 32px;
    }
    .manifesto-headline {
        font-size: 2.2rem;
    }
    .philosophy-text {
        max-width: none;
    }

    /* -------------------- INGREDIENTS -------------------- */
    .ingredients-canvas {
        min-height: auto;
        padding: 70px 8%;
    }
    .ingredients-container {
        display: flex;
        flex-direction: column;
        gap: 56px;
    }
    .floating-element {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 70% !important; /* leaves whitespace either side instead of edge-to-edge */
        max-width: 320px;
        margin: 0 auto;
        transform: none !important; 
    }

    /* -------------------- ABOUT -------------------- */
    .about-section {
        padding: 70px 6%;
    }
    .about-container {
        gap: 44px;
    }
    .about-header {
        gap: 10px;
    }
    .about-headline {
        font-size: 1.9rem;
        line-height: 1.3;
    }
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .narrative-lead {
        font-size: 1.1rem;
    }
    .narrative-body {
        font-size: 13.5px;
        line-height: 1.8;
    }
    .chef-image-box {
        height: 260px;
    }
    .chef-meta {
        padding: 22px;
    }
    .chef-name {
        font-size: 1.3rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 0;
    }
    .about-card {
        padding: 26px 22px;
    }

    /* -------------------- MENU PAGE -------------------- */
    .menu-page {
        padding: 110px 16px 70px;
    }
    .menu-page-title {
        font-size: 1.9rem;
    }
    .menu-hero {
        margin-bottom: 32px;
    }
    .menu-filter-nav {
        gap: 8px;
        margin-bottom: 40px;
    }
    .menu-category {
        margin-bottom: 44px;
    }
    .menu-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .menu-item-image {
        height: 180px;
    }
    .menu-item-content {
        padding: 18px 18px 20px;
    }
    .menu-item-title {
        font-size: 1.05rem;
    }
    .menu-item-price {
        font-size: 0.95rem;
    }
    .menu-item-desc {
        font-size: 12.5px;
        margin: 8px 0 10px;
    }

    /* -------------------- RESERVE PAGE -------------------- */
    .reserve-page {
        padding: 110px 16px 70px;
    }
    .reserve-page-title {
        font-size: 1.9rem;
    }
    .reserve-header {
        margin-bottom: 36px;
    }
    .reserve-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .reserve-form-card {
        padding: 28px 24px;
    }
    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .reserve-info-image {
        height: 180px;
    }
    .reserve-info-body {
        padding: 24px;
    }

    /* -------------------- LOGIN / REGISTER PAGE -------------------- */
    .auth-page {
        padding: 110px 16px 70px;
    }
    .auth-page-card {
        padding: 32px 26px;
    }
    .auth-page-title {
        font-size: 1.4rem;
    }

    /* -------------------- SOCIAL PROOF -------------------- */
    .social-proof-section {
        padding: 70px 6%;
    }
    .proof-quote {
        font-size: 1.4rem;
    }
    .accolade-badges {
        gap: 28px 34px;
        padding-top: 30px;
    }
    .badge-title {
        font-size: 0.95rem;
    }

    /* -------------------- ACCOUNT PANEL PERKS -------------------- */
    .panel-perks {
        margin-top: 20px;
        padding-top: 16px;
    }

    /* -------------------- FOOTER -------------------- */
    .site-footer {
        padding: 56px 6% 24px 6%;
    }
    .footer-logo {
        font-size: 1.7rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 18px;
        align-items: flex-start;
    }
    .footer-socials {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-stage {
        padding: 88px 14px 32px 14px;
    }
    .hero-title {
        font-size: 1.6rem;
    }
    .carousel-container {
        height: 270px;
        padding: 0 10px;
    }
    .card-wrapper {
        width: 172px;
        height: 240px;
    }
    .card-wrapper.left {
        transform: translateX(-96px) translateZ(-140px) rotateY(22deg);
    }
    .card-wrapper.right {
        transform: translateX(96px) translateZ(-140px) rotateY(-22deg);
    }
    .card-label {
        padding: 14px 12px;
        font-size: 10px;
    }
    .btn {
        padding: 9px 16px;
        font-size: 9.5px;
    }
    .manifesto-headline {
        font-size: 1.8rem;
    }
    .about-section {
        padding: 60px 5%;
    }
    .about-headline {
        font-size: 1.55rem;
    }
    .narrative-lead {
        font-size: 1rem;
    }
    .chef-image-box {
        height: 220px;
    }
    .chef-meta {
        padding: 18px;
    }
    .about-card {
        padding: 22px 18px;
    }
    .menu-page {
        padding: 96px 14px 60px;
    }
    .menu-page-title {
        font-size: 1.55rem;
    }
    .menu-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .my-reservations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .menu-item-image {
        height: 210px;
    }
    .menu-item-title {
        font-size: 1.05rem;
    }
    .menu-item-desc {
        max-width: none;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .social-proof-section {
        padding: 56px 5%;
    }
    .proof-quote {
        font-size: 1.2rem;
    }
    .accolade-badges {
        gap: 22px 28px;
    }
    .badge-title {
        font-size: 0.85rem;
    }
    .footer-logo {
        font-size: 1.5rem;
    }
    .mobile-nav-item span {
        font-size: 8.5px;
    }
    .mobile-nav-icon {
        width: 18px;
        height: 18px;
    }
}