/* ========================================
   Shinjuku Ramen NYC - Global Styles
   ======================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@400;700&display=swap');

/* --- CSS Variables --- */
:root {
    --primary: #1a1a1a;
    --primary-light: #2d2d2d;
    --accent: #c41e3a;
    --accent-hover: #a01830;
    --gold: #d4a843;
    --gold-light: #e8c876;
    --cream: #faf5f0;
    --cream-dark: #f0e8de;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-body: #444444;
    --text-light: #777777;
    --text-white: #ffffff;
    --border: #e5e5e5;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', 'Helvetica Neue', sans-serif;
    --font-jp: 'Noto Serif JP', serif;
    --container: 1200px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --radius: 8px;
    --radius-lg: 16px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hide Chinese text by default (English site) */
.lang-zh { display: none; }
.lang-en { display: inline; }
body.zh .lang-zh { display: inline; }
body.zh .lang-en { display: none; }
body.zh .lang-zh-block { display: block; }
body.zh .lang-en-block { display: none; }
.lang-zh-block { display: none; }
.lang-en-block { display: block; }

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Skip to Main Content --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    z-index: 10000;
    border-radius: 0 0 var(--radius) var(--radius);
    font-weight: 600;
    transition: top 0.3s;
}

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

/* --- Container --- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
    line-height: 1.4;
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--primary);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.35);
}

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

.btn-outline:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--primary);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* --- Section Styles --- */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--primary);
    color: var(--text-white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 1rem auto 0;
}

.section-dark .section-header h2::after {
    background: var(--gold);
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-header .subtitle {
    color: rgba(255,255,255,0.7);
}

.section-jp {
    font-family: var(--font-jp);
    color: var(--gold);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.97);
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a:hover {
    opacity: 0.85;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo-jp {
    font-family: var(--font-jp);
    font-size: 0.75rem;
    color: var(--gold);
    display: block;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.nav-links a.nav-cta {
    background: var(--accent);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    margin-left: 0.5rem;
}

.nav-links a.nav-cta:hover {
    background: var(--accent-hover);
}

.lang-toggle {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: var(--radius);
    margin-left: 0.5rem;
    transition: var(--transition);
    background: transparent;
    font-family: var(--font-body);
}

.lang-toggle:hover {
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-content .hero-jp {
    font-family: var(--font-jp);
    font-size: 1.2rem;
    color: var(--gold);
    letter-spacing: 5px;
    margin-bottom: 1rem;
    display: block;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content .hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.hero-badge span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* --- Page Hero (subpages) --- */
.page-hero {
    position: relative;
    padding: 10rem 0 4rem;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(26,26,26,0.7));
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 0.75rem;
}

.page-hero .breadcrumb {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb a {
    color: var(--gold);
}

.page-hero .breadcrumb a:hover {
    color: var(--gold-light);
}

/* --- Signature Ramen Cards --- */
.ramen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.ramen-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.ramen-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.ramen-card-img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.ramen-card-body {
    padding: 1.5rem;
}

.ramen-card-body h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.ramen-card-body .flavor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.75rem;
}

.flavor-tag {
    background: var(--cream);
    color: var(--accent);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.flavor-tag.spicy {
    background: #fef2f2;
    color: #dc2626;
}

.flavor-tag.vegetarian {
    background: #f0fdf4;
    color: #16a34a;
}

.flavor-tag.seafood {
    background: #eff6ff;
    color: #2563eb;
}

.ramen-card-body .description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.ramen-card-body .best-for {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.ramen-card-body .best-for strong {
    color: var(--text-dark);
}

/* --- Why Section / Feature Points --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem 1.5rem;
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.why-item h3 {
    margin-bottom: 0.75rem;
    color: var(--white);
    font-size: 1.2rem;
}

.why-item p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
}

/* --- Location Snapshot --- */
.location-snapshot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.location-info h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.location-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.location-detail i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.location-detail a {
    color: var(--accent);
}

.location-detail a:hover {
    color: var(--accent-hover);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 350px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Gallery Grid --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 30px;
    background: transparent;
    color: var(--text-body);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(196, 30, 58, 0.05);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.gallery-overlay p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius);
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* --- Menu Page --- */
.menu-top-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.menu-section {
    margin-bottom: 3rem;
}

.menu-section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.menu-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 1.25rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    align-items: center;
}

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

.menu-item-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: var(--radius);
}

.menu-item-content h3 {
    margin-bottom: 0.4rem;
    font-size: 1.25rem;
}

.menu-item-content .flavor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.menu-item-content .description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.menu-item-content .toppings {
    font-size: 0.85rem;
    color: var(--text-light);
}

.menu-item-content .toppings strong {
    color: var(--text-body);
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 2px 12px rgba(196, 30, 58, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer-inner ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
}

.faq-answer-inner ul li {
    list-style: disc;
    margin-bottom: 0.3rem;
}

/* --- Reviews --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.review-card .stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-card .review-text {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.review-card .review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent);
    font-size: 1.1rem;
}

.review-author-info .name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.review-author-info .source {
    font-size: 0.8rem;
    color: var(--text-light);
}

.review-quote {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--cream-dark);
    font-family: Georgia, serif;
    line-height: 1;
}

/* --- Contact Form --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--white);
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-info-card {
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    min-width: 22px;
}

.contact-info-item a {
    color: var(--gold);
}

.contact-info-item a:hover {
    color: var(--gold-light);
}

.contact-info-item p {
    color: rgba(255,255,255,0.85);
}

/* --- Answer Blocks (GEO) --- */
.answer-block {
    background: var(--cream);
    border-left: 4px solid var(--accent);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.answer-block h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.answer-block p {
    color: var(--text-body);
    font-size: 0.95rem;
}

.answer-block ul {
    padding-left: 1.2rem;
    margin: 0.75rem 0;
}

.answer-block ul li {
    list-style: disc;
    margin-bottom: 0.3rem;
    color: var(--text-body);
    font-size: 0.95rem;
}

.answer-block .cta-text {
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--accent);
}

.answer-block .cta-text a {
    color: var(--accent);
    text-decoration: underline;
}

/* --- Hours Table --- */
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.hours-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    width: 50%;
}

.hours-table tr.today {
    background: rgba(196, 30, 58, 0.05);
}

.hours-table tr.today td {
    color: var(--accent);
    font-weight: 600;
}

/* --- About Craft Sections --- */
.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.craft-grid.reverse {
    direction: rtl;
}

.craft-grid.reverse > * {
    direction: ltr;
}

.craft-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.craft-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.craft-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.craft-content p {
    color: var(--text-body);
    line-height: 1.8;
}

/* --- Schema / Structured (hidden) --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- Footer --- */
footer {
    background: var(--primary);
    color: var(--text-white);
    padding: 3rem 0 1rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-family: var(--font-heading);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.footer-partner {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-partner a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.footer-partner a:hover {
    color: var(--white);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
}

/* --- Scroll Animations --- */
@keyframes fadeInFallback {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    animation: fadeInFallback 0.8s ease forwards;
    animation-delay: 0.3s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

/* --- Sticky CTA Bar (Mobile) --- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 0.75rem 1rem;
    display: none;
    gap: 0.5rem;
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.sticky-cta .btn {
    flex: 1;
    justify-content: center;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* --- Gallery Preview on Home --- */
.gallery-preview {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-preview .gallery-item {
    aspect-ratio: 4/3;
}

/* --- Nearby Landmarks --- */
.landmarks-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.landmark-tag {
    background: var(--cream);
    color: var(--text-body);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.landmark-tag i {
    color: var(--accent);
    font-size: 0.8rem;
}

/* --- Blog Placeholder --- */
.blog-placeholder {
    text-align: center;
    padding: 3rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    .craft-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .craft-grid.reverse {
        direction: ltr;
    }

    .location-snapshot {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        display: block;
        padding: 0.875rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        width: 100%;
    }

    .nav-links a.nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
    }

    .lang-toggle {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        display: none;
    }

    .mobile-overlay.active {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-badge {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .ramen-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .menu-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .menu-item-img {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }

    .sticky-cta {
        display: flex;
    }

    .back-to-top {
        bottom: 5rem;
    }

    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }

    .page-hero {
        padding: 8rem 0 3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .menu-filters {
        gap: 0.3rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
}
