/* ---------- What's New Nav Link ---------- */
.nav-whatsnew {
    background: linear-gradient(135deg, #EF7622, #ff6b35) !important;
    color: white !important;
    padding: 0.35rem 0.9rem !important;
    border-radius: 20px;
    font-weight: 800 !important;
    font-size: 0.78rem !important;
    letter-spacing: 0.04em;
    animation: pulseGlow 2s ease-in-out infinite;
}
.nav-whatsnew i { margin-right: 0.2rem; }
@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 118, 34, 0.4); }
    50% { box-shadow: 0 0 12px 4px rgba(239, 118, 34, 0.25); }
}
.navbar.scrolled .nav-whatsnew {
    background: linear-gradient(135deg, #EF7622, #ff6b35) !important;
    color: white !important;
}

/* ---------- What's New Overlay & Modal ---------- */
.whatsnew-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex; align-items: flex-end; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
}
.whatsnew-overlay.open { opacity: 1; pointer-events: all; }

.whatsnew-modal {
    background: #faf9f7;
    width: 100%; max-width: 620px; max-height: 85vh;
    border-radius: 20px 20px 0 0;
    display: flex; flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    overflow: hidden;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.2);
}
.whatsnew-overlay.open .whatsnew-modal { transform: translateY(0); }

.whatsnew-modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e8e4df;
    flex-shrink: 0;
}
.whatsnew-modal-header h2 {
    font-family: 'Nunito', sans-serif; font-size: 1.3rem; font-weight: 900;
    color: #00563F; display: flex; align-items: center; gap: 0.5rem; margin: 0;
}
.whatsnew-modal-header h2 i { color: #EF7622; }

.whatsnew-close {
    background: none; border: none; font-size: 1.4rem; color: #8a8580;
    cursor: pointer; width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s ease;
}
.whatsnew-close:hover { background: rgba(0, 0, 0, 0.06); color: #2e2b28; }

.whatsnew-modal-body {
    overflow-y: auto; padding: 1.25rem 1.5rem 2rem;
    display: flex; flex-direction: column; gap: 1.25rem;
}

.whatsnew-card {
    display: flex; gap: 1rem;
    background: white; border: 1px solid #e8e4df; border-radius: 24px;
    overflow: hidden; transition: all 0.3s ease;
}
.whatsnew-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    border-color: rgba(239, 118, 34, 0.3);
    transform: translateY(-2px);
}

.whatsnew-img {
    width: 140px; min-height: 140px; flex-shrink: 0; overflow: hidden;
}
.whatsnew-img img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top; display: block;
}

.whatsnew-content {
    padding: 1rem 1rem 1rem 0;
    display: flex; flex-direction: column; justify-content: center; gap: 0.35rem;
}
.whatsnew-date {
    font-size: 0.72rem; font-weight: 700; color: #EF7622;
    text-transform: uppercase; letter-spacing: 1px;
}
.whatsnew-content h3 {
    font-family: 'Nunito', sans-serif; font-size: 1rem; font-weight: 800;
    color: #00563F; line-height: 1.3; margin: 0;
}
.whatsnew-content p {
    font-size: 0.88rem; color: #8a8580; line-height: 1.55; margin: 0;
}

@media (max-width: 480px) {
    .whatsnew-card { flex-direction: column; }
    .whatsnew-img { width: 100%; min-height: 180px; max-height: 220px; }
    .whatsnew-content { padding: 0.75rem 1rem 1rem; }
    .whatsnew-modal { max-height: 90vh; border-radius: 24px 24px 0 0; }
}

/* ---------- What's New Expanded View ---------- */
.whatsnew-expand-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
    padding: 1.5rem;
}
.whatsnew-expand-overlay.open { opacity: 1; }

.whatsnew-expand {
    background: white;
    border-radius: 18px;
    max-width: 480px; width: 100%;
    max-height: 85vh;
    overflow: hidden; overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    position: relative;
}
.whatsnew-expand-overlay.open .whatsnew-expand {
    transform: scale(1) translateY(0);
}

.whatsnew-expand-close {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: rgba(0,0,0,0.5); border: none; color: white;
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; cursor: pointer; z-index: 2;
    transition: all 0.2s ease;
}
.whatsnew-expand-close:hover { background: rgba(0,0,0,0.7); }

.whatsnew-expand-img {
    width: 100%; aspect-ratio: 1 / 1; overflow: hidden;
}
.whatsnew-expand-img img {
    width: 100%; height: 100%; object-fit: cover;
    object-position: center top; display: block;
}

.whatsnew-expand-body {
    padding: 1.25rem 1.5rem 1.75rem;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.whatsnew-expand-body .whatsnew-date {
    font-size: 0.72rem; font-weight: 700; color: #EF7622;
    text-transform: uppercase; letter-spacing: 1px;
}
.whatsnew-expand-body h3 {
    font-family: 'Nunito', sans-serif; font-size: 1.25rem; font-weight: 900;
    color: #00563F; line-height: 1.3; margin: 0;
}
.whatsnew-expand-body p {
    font-size: 0.95rem; color: #5a5652; line-height: 1.65; margin: 0;
}

/* ---------- Branch Coming Soon ---------- */
.branch-card.coming-soon {
    border: 2px dashed #EF7622;
    background: linear-gradient(135deg, #fff8f0, #fff);
}
.branch-card.coming-soon .branch-card-title {
    color: #EF7622;
}
.branch-soon-pill {
    display: inline-block;
    background: linear-gradient(135deg, #EF7622, #ff6b35);
    color: white;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 0.25rem;
}
.branch-coming-soon-badge {
    background: linear-gradient(135deg, #EF7622, #ff6b35);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

/* ========================================================
   DESIGN TOKENS
   ======================================================== */
:root {
    /* Brand Primary */
    --sushi-orange: #EF7622;
    --nori-green: #00563F;
    
    /* Brand Secondary */
    --cream: #F2F0DD;
    --light-green: #D2DDBB;
    --light-yellow: #F5F0A1;
    --beige: #F4D19F;
    --coral: #FFA488;
    
    /* Bright Accents */
    --lime-green: #95D600;
    --bright-yellow: #FFD923;
    
    /* UI Colors */
    --bg-main: var(--cream);
    --bg-surface: #FFFFFF;
    --bg-card: #FFFFFF;
    --text-main: #1a2e1a;
    --text-muted: #5a6a5a;
    --text-light: #FFFFFF;
    
    --border-color: rgba(0, 86, 63, 0.08);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.12);
    
    /* Typography */
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
}

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

/* ========================================================
   TYPOGRAPHY
   ======================================================== */
h1, h2, h3, .logo {
    font-family: var(--font-heading);
    font-weight: 800;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--nori-green);
}

.highlight {
    color: var(--sushi-orange);
    font-weight: 700;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--sushi-orange);
    margin-bottom: 0.8rem;
    font-family: var(--font-body);
    font-weight: 700;
    background: rgba(239, 118, 34, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 30px;
}
.section-tag.center {
    display: block;
    text-align: center;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.8rem;
}
.section-header {
    margin-bottom: 3rem;
}
.section-header h2 { text-align: center; }
.subtext { text-align: center; color: var(--text-muted); font-size: 1.1rem; }

/* ========================================================
   NAVBAR
   ======================================================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 5%;
    box-shadow: 0 2px 20px rgba(0, 86, 63, 0.06);
}

.logo {
    font-size: 1.6rem;
    color: var(--nori-green);
    letter-spacing: 1px;
    font-weight: 900;
}

.navbar .logo {
    display: block;
    position: relative;
    width: clamp(132px, 14vw, 176px);
    height: clamp(42px, 4vw, 52px);
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;
}

.navbar .logo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.25s ease;
}

.navbar .logo-default {
    opacity: 1;
}

.navbar .logo-scrolled {
    opacity: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 1.15rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--nori-green);
}
.navbar.scrolled .logo {
    color: var(--nori-green);
}

.navbar.scrolled .logo-default {
    opacity: 0;
}

.navbar.scrolled .logo-scrolled {
    opacity: 1;
}

.navbar.scrolled .small-btn {
    border-color: var(--sushi-orange);
    color: var(--sushi-orange);
}
.navbar.scrolled .small-btn:hover {
    background: var(--sushi-orange);
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: var(--sushi-orange);
    border-radius: 3px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--sushi-orange);
}
.nav-links a:hover::after {
    width: 100%;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    padding: 0.5rem;
    z-index: 101;
}

.navbar.scrolled .menu-toggle {
    color: var(--nori-green);
}

/* ========================================================
   BUTTONS
   ======================================================== */
.cta-btn {
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
}

.small-btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    background: transparent;
}
.small-btn:hover {
    background: var(--sushi-orange);
    border-color: var(--sushi-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 118, 34, 0.35);
}

.primary-btn {
    background: var(--sushi-orange);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(239, 118, 34, 0.3);
}
.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(239, 118, 34, 0.45);
    background: #e06a1a;
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}
.secondary-btn:hover {
    background: white;
    color: var(--nori-green);
    transform: translateY(-2px);
}

/* ========================================================
   HERO SECTION
   ======================================================== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: slowZoom 20s ease-out infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 86, 63, 0.75) 0%,
        rgba(0, 86, 63, 0.5) 40%,
        rgba(0, 86, 63, 0.7) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-center-logo {
    width: clamp(200px, 40vw, 350px);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: elementFadeIn 1s forwards 0.2s;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: elementFadeIn 1s forwards 0.3s;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 400;
    opacity: 0;
    transform: translateY(30px);
    animation: elementFadeIn 1s forwards 0.5s;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    justify-content: center;
    width: min(100%, 34rem);
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: elementFadeIn 1s forwards 0.7s;
}

.hero-cta {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 1.1rem 2rem;
    border-radius: 999px;
    background: var(--sushi-orange);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 34px rgba(239, 118, 34, 0.28);
    text-align: center;
    min-height: 4.2rem;
}

.hero-cta:hover {
    transform: translateY(-3px);
    background: #e06a1a;
    box-shadow: 0 18px 40px rgba(239, 118, 34, 0.38);
}

.hero-cta-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.hero-cta-caption {
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.82);
    text-transform: none;
}

/* ========================================================
   ABOUT / OUR CRAFT SECTION
   ======================================================== */
.about-section {
    padding: 8rem 0;
    background-color: var(--bg-main);
}

.about-grid {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}


.about-text {
    text-align: center;
}

.about-text h2 {
    color: var(--nori-green);
    text-align: center;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: center;
}


/* ========================================================
   EVENTS SECTION — TABBED LAYOUT
   ======================================================== */
.events-section {
    padding: 6rem 0;
    background: var(--bg-surface);
}

.events-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Tab Navigation */
.event-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.event-tab {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.75rem 1.4rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.event-tab:hover {
    border-color: var(--sushi-orange);
    color: var(--sushi-orange);
    transform: translateY(-2px);
}

.event-tab.active {
    background: var(--nori-green);
    border-color: var(--nori-green);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 86, 63, 0.25);
}

.event-tab i {
    font-size: 0.9rem;
}

/* Tab Panels */
.event-panels {
    position: relative;
}

.event-panel {
    display: none;
    animation: panelFadeIn 0.4s ease;
}

.event-panel.active {
    display: block;
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.event-panel-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.event-panel-intro h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--nori-green);
    margin-bottom: 0.75rem;
}

.event-panel-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Package Grid */
.pkg-grid {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.pkg-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.pkg-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* Package Card */
.pkg-card {
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pkg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sushi-orange), var(--bright-yellow));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.pkg-card:hover::before {
    opacity: 1;
}

.pkg-card-green {
    background: var(--nori-green);
    color: white;
    box-shadow: 0 6px 24px rgba(0, 86, 63, 0.18);
}

.pkg-card-orange {
    background: var(--sushi-orange);
    color: white;
    box-shadow: 0 6px 24px rgba(239, 118, 34, 0.2);
}

.pkg-label {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.7;
    margin-bottom: 0.4rem;
}

.pkg-name {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.pkg-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.2rem;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.pkg-pax {
    font-size: 0.88rem;
    opacity: 0.75;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pkg-details {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.6;
}

.pkg-details li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.pkg-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 700;
    opacity: 0.7;
}

.pkg-footnote {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
}

/* How to Order */
.event-how {
    margin-top: 4rem;
    text-align: center;
}

.event-how h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--nori-green);
    margin-bottom: 2rem;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.how-step {
    text-align: center;
    padding: 1.5rem;
}

.how-step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--sushi-orange);
    color: white;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 6px 18px rgba(239, 118, 34, 0.3);
}

.how-step strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--nori-green);
    margin-bottom: 0.5rem;
}

.how-step p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.how-step a {
    color: var(--sushi-orange);
    font-weight: 700;
}

/* Booking CTA */
.event-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.event-cta .primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1rem;
    padding: 1rem 2.5rem;
}

.event-cta .events-note {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========================================================
   FAQ SECTION
   ======================================================== */
.faq-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--sushi-orange);
}

.faq-item[open] {
    box-shadow: var(--shadow-soft);
    border-color: var(--sushi-orange);
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--nori-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sushi-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

.faq-item a {
    color: var(--sushi-orange);
    font-weight: 600;
}


/* ========================================================
   MENU SECTION
   ======================================================== */
.menu-section {
    padding: 6rem 0;
    background-color: var(--light-green);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(239, 118, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 86, 63, 0.05) 0%, transparent 50%);
}

.menu-book-container {
    max-width: 900px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.menu-book-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Nav Buttons */
.book-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border: 1px solid var(--border-color);
    color: var(--nori-green);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.book-nav-btn.prev-btn {
    position: absolute;
    left: 0;
}

.book-nav-btn.next-btn {
    position: absolute;
    right: 0;
}

.book-nav-btn:hover {
    background-color: var(--sushi-orange);
    border-color: var(--sushi-orange);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(239, 118, 34, 0.3);
}

.book-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
    background-color: rgba(255, 255, 255, 0.5) !important;
    color: var(--text-muted) !important;
    border-color: var(--border-color) !important;
    box-shadow: none !important;
    transform: none !important;
}

/* The Book Outer Shape */
.menu-book {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 7 / 13;
    perspective: 1800px;
    border-radius: 12px;
    box-shadow: 
        0 15px 40px rgba(0, 86, 63, 0.12),
        0 5px 15px rgba(0, 0, 0, 0.06),
        -4px 0 12px rgba(0, 0, 0, 0.03),
        4px 0 12px rgba(0, 0, 0, 0.03);
    background: #ecebe3;
    overflow: visible;
}

/* Spine Shadow Overlay to simulate physical binding */
.menu-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 20px;
    background: linear-gradient(to right, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.06) 40%, rgba(0,0,0,0) 100%);
    z-index: 50;
    pointer-events: none;
    border-radius: 12px 0 0 12px;
}

/* Subtle double page layer look underneath the active page */
.menu-book::after {
    content: '';
    position: absolute;
    top: 2px;
    right: -4px;
    bottom: 2px;
    width: 4px;
    background: #e4e2d8;
    border-radius: 0 4px 4px 0;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
    z-index: -1;
}

/* Page styles */
.book-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.8s ease, visibility 0s 0.8s;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.book-page.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 10;
    transform: rotateY(0deg);
}

/* When flipped, page swings left 3D and fades out */
.book-page.flipped {
    transform: rotateY(-180deg);
    opacity: 0;
    visibility: visible; /* visible during flip swing */
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1), opacity 0.3s ease 0.5s, visibility 0s 0.8s;
}

.page-front {
    width: 100%;
    height: 100%;
    position: relative;
    background: white;
}

.page-front img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

/* Book Controls / Pagination */
.book-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
}

.page-indicator {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--nori-green);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.book-progress {
    width: 100%;
    height: 6px;
    background-color: rgba(0, 86, 63, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.book-progress-bar {
    height: 100%;
    width: 12.5%;
    background-color: var(--sushi-orange);
    border-radius: 10px;
    transition: width 0.4s ease;
}

.menu-action-container {
    margin-top: 0.5rem;
}

.menu-action-container .primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu-book-wrapper {
        padding: 0 45px;
    }
    
    .book-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

/* ========================================================
   LOCATIONS
   ======================================================== */
.locations-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
}

.branch-finder {
    display: grid;
    grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.branch-list {
    display: grid;
    gap: 0.85rem;
    align-content: start;
}

.branch-card {
    width: 100%;
    min-height: 5.6rem;
    background: var(--bg-surface);
    padding: 1rem 1.1rem;
    border-radius: 8px;
    text-align: left;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: pointer;
    color: var(--nori-green);
    box-shadow: var(--shadow-soft);
    font-family: var(--font-body);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
}

.branch-card:hover,
.branch-card:focus-visible {
    border-color: var(--sushi-orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    outline: none;
}

.branch-card.active {
    background: var(--nori-green);
    border-color: var(--nori-green);
    color: white;
    box-shadow: 0 12px 28px rgba(0, 86, 63, 0.18);
}

.branch-card-title {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.2;
}

.branch-card-location {
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.35;
}

.branch-card.active .branch-card-location {
    color: rgba(255, 255, 255, 0.78);
}

.branch-details {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1.14fr);
    gap: 1.5rem;
    min-height: 520px;
    padding: 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.branch-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.branch-eyebrow {
    color: var(--sushi-orange);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.branch-info h3 {
    color: var(--text-main);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    margin-bottom: 1.75rem;
}

.branch-meta {
    display: grid;
    gap: 1.15rem;
}

.branch-meta-row {
    display: grid;
    grid-template-columns: 2.8rem minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
}

.branch-meta-row i {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 50%;
    background: rgba(239, 118, 34, 0.12);
    color: var(--sushi-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.branch-meta-row span {
    display: block;
    color: var(--text-muted);
    font-size: 0.83rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.branch-meta-row strong {
    display: block;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
}

.branch-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.branch-actions .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.85rem 1.25rem;
}

.secondary-branch-btn {
    background: transparent;
    color: var(--nori-green);
    border: 1px solid rgba(0, 86, 63, 0.24);
}

.secondary-branch-btn:hover {
    background: rgba(0, 86, 63, 0.08);
    transform: translateY(-2px);
}

.branch-map {
    min-height: 420px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--cream);
}

.branch-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

/* ========================================================
   FOOTER
   ======================================================== */
.footer {
    background: var(--nori-green);
    padding: 4rem 5% 2rem;
    border-top: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer .logo {
    color: white;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 5px;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: var(--transition);
}
.footer-social a:hover {
    color: var(--sushi-orange);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* ========================================================
   ANIMATIONS
   ======================================================== */
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

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

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes pulsate {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    50% { opacity: 0.7; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Scroll Reveal classes via JS */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active,
.scroll-reveal:target {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        order: 3;
    }
    
    .navbar .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        margin: 0;
        width: 120px;
        height: 42px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .navbar .logo img {
        object-position: center center !important;
    }
    
    .navbar .small-btn {
        order: 1;
        padding: 0.55rem 1rem;
        font-size: 0.75rem;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        padding: 1.5rem 5%;
        gap: 1.25rem;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: 0 10px 25px rgba(0, 86, 63, 0.08);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        color: var(--nori-green) !important;
        margin: 0;
        font-size: 1.1rem;
        width: 100%;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(0, 86, 63, 0.05);
    }

    .nav-links a::after {
        display: none;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }

    .navbar.menu-open {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(12px) !important;
        border-bottom: 1px solid var(--border-color) !important;
        box-shadow: 0 4px 20px rgba(0, 86, 63, 0.05) !important;
    }

    .navbar.menu-open .menu-toggle {
        color: var(--nori-green) !important;
    }

    .navbar.menu-open .logo-default {
        opacity: 0 !important;
    }

    .navbar.menu-open .logo-scrolled {
        opacity: 1 !important;
    }

    .navbar.menu-open .small-btn {
        border-color: var(--sushi-orange) !important;
        color: var(--sushi-orange) !important;
    }

    .hero-title { font-size: 3rem; }
    h2 { font-size: 2rem; }

    .pkg-grid-3 { grid-template-columns: 1fr; }
    .pkg-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .how-steps { grid-template-columns: 1fr; gap: 1.5rem; }
    .event-tab { font-size: 0.8rem; padding: 0.6rem 1rem; }

    .hero-buttons { width: min(100%, 28rem); }
    .menu-pdf-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .branch-finder,
    .branch-details {
        grid-template-columns: 1fr;
    }

    .branch-list {
        grid-template-columns: 1fr 1fr;
    }

    .branch-details {
        min-height: 0;
    }

    .branch-info {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .branch-list { grid-template-columns: 1fr; }
    .branch-details { padding: 1rem; }
    .branch-actions .cta-btn { width: 100%; }
    .branch-map,
    .branch-map iframe { min-height: 320px; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .events-section { padding: 4.5rem 0; }
    .pkg-grid-4 { grid-template-columns: 1fr; }
    .event-tabs { gap: 0.35rem; }
    .event-tab { font-size: 0.75rem; padding: 0.55rem 0.8rem; }
    .event-tab i { display: none; }
    .menu-pdf-panel {
        padding: 1.25rem;
    }
    .menu-pdf-preview {
        min-height: 210px;
    }
    .menu-pdf-copy .primary-btn {
        width: 100%;
        justify-content: center;
        padding-left: 1.2rem;
        padding-right: 1.2rem;
        text-align: center;
    }
    .hero-cta {
        padding: 1rem 1.5rem;
        min-height: 5rem;
    }
    .hero-cta-title { font-size: 1.15rem; }
    .hero-cta-caption { font-size: 0.88rem; }
}


/* ========================================================
   PRESS FEATURES
   ======================================================== */
.press-section {
    padding: 6rem 0;
    background-color: var(--bg-main);
    background-image:
        radial-gradient(circle at 10% 80%, rgba(0, 86, 63, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(239, 118, 34, 0.04) 0%, transparent 50%);
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1120px;
    margin: 0 auto;
}

.press-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    color: var(--text-main);
}

.press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 86, 63, 0.15);
    border-color: rgba(239, 118, 34, 0.3);
}

.press-card-featured {
    grid-column: span 2;
    border-left: 4px solid var(--sushi-orange);
}

.press-image {
    aspect-ratio: 16 / 10;
    background: var(--cream);
    overflow: hidden;
    position: relative;
}

.press-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 86, 63, 0.06) 100%);
    pointer-events: none;
}

.press-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.press-card:hover .press-image img {
    transform: scale(1.06);
}

.press-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0.9rem;
    padding: 1.5rem;
}

.press-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.press-meta span:first-child {
    background: rgba(239, 118, 34, 0.1);
    color: var(--sushi-orange);
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.press-meta span:last-child {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.press-content h3 {
    color: var(--nori-green);
    font-size: 1.2rem;
    line-height: 1.35;
    transition: color 0.3s ease;
}

.press-card:hover .press-content h3 {
    color: var(--sushi-orange);
}

.press-card-featured .press-content h3 {
    font-size: 1.5rem;
}

.press-content p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

.press-link {
    margin-top: auto;
    color: var(--nori-green);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.press-card:hover .press-link {
    color: var(--sushi-orange);
}

.press-link i {
    color: var(--sushi-orange);
    transition: transform 0.3s ease;
}

.press-card:hover .press-link i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .press-card-featured {
        grid-column: span 2;
    }
}
@media (max-width: 480px) {
    .press-grid {
        grid-template-columns: 1fr;
    }

    .press-card-featured {
        grid-column: span 1;
    }

    .press-meta {
        flex-direction: column;
        gap: 0.3rem;
    }

    .press-card-featured .press-content h3,
    .press-content h3 {
        font-size: 1.15rem;
    }
}


/* ========================================================
   FLOATING ACTION BUTTONS
   ======================================================== */
.fab-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1000;
}

.fab {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
}

.fab:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.grab-fab {
    background: #00B14F;
}
.ig-fab {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.tiktok-fab {
    background: #000000;
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .fab {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}
