/* ==============================================
   SHIZEN-YA RAMEN — style.css
   Organic Japanese aesthetic, Okinawa inspired
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ——————————————————————————————————————
   TOKENS
—————————————————————————————————————— */
:root {
    --ink:        #1a1208;
    --bark:       #3b2a1a;
    --moss:       #3d5a3e;
    --moss-light: #5a7a5c;
    --clay:       #c4714a;
    --wheat:      #d4a84b;
    --cream:      #faf6ee;
    --parchment:  #f2ead8;
    --paper:      #e8dcc8;
    --fog:        #f7f3ed;
    --mist:       rgba(250,246,238,0.92);

    --font-serif: 'Playfair Display', 'Noto Serif JP', Georgia, serif;
    --font-sans:  'Noto Sans JP', system-ui, sans-serif;

    --header-h: 72px;
    --radius:   12px;
    --radius-sm: 6px;
    --shadow-sm: 0 2px 8px rgba(26,18,8,0.08);
    --shadow:    0 6px 24px rgba(26,18,8,0.12);
    --shadow-lg: 0 16px 48px rgba(26,18,8,0.18);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ——————————————————————————————————————
   RESET
—————————————————————————————————————— */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ——————————————————————————————————————
   LANG SPLASH
—————————————————————————————————————— */
#lang-splash {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
    pointer-events: none; opacity: 0; transition: opacity 0.25s ease;
}
#lang-splash.active { opacity: 1; pointer-events: all; }
.splash-inner { text-align: center; }
.splash-logo img { height: 72px; margin: 0 auto 1.5rem; }
.splash-spinner {
    display: flex; gap: 8px; justify-content: center;
}
.splash-spinner span {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--moss);
    animation: bounce 0.9s ease infinite;
}
.splash-spinner span:nth-child(2) { animation-delay: 0.15s; }
.splash-spinner span:nth-child(3) { animation-delay: 0.3s; }
@keyframes bounce {
    0%, 60%, 100% { transform: scale(1); opacity: 0.5; }
    30% { transform: scale(1.4); opacity: 1; }
}

/* ——————————————————————————————————————
   HEADER
—————————————————————————————————————— */
header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: calc(var(--header-h) + 1rem);
    display: flex; align-items: flex-start; justify-content: center;
    padding: 1rem 1.5rem 0;
    transition: all 0.4s var(--ease-out);
}
header.scrolled {
    padding: 0;
    height: var(--header-h);
}

.nav-container {
    position: relative;
    width: 100%; max-width: 1160px;
    height: 52px;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 1.25rem 0 1rem;
    background: rgba(250, 246, 238, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 999px;
    border: 1px solid rgba(212, 168, 75, 0.25);
    box-shadow: 0 4px 20px rgba(26,18,8,0.10);
    transition: all 0.4s var(--ease-out);
}
header.scrolled .nav-container {
    max-width: 100%;
    height: 100%;
    background: rgba(250, 246, 238, 0.96);
    box-shadow: 0 6px 28px rgba(26,18,8,0.14);
    border-radius: 0;
    border-color: rgba(212, 168, 75, 0.4);
    border-top: none; border-left: none; border-right: none;
    padding: 0 2rem;
}

.logo {
    display: flex; align-items: center; gap: 0.75rem;
}
.logo img {
    height: 42px; width: auto;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}
.logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--bark);
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.logo-sub {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--moss);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: block;
}

/* NAV LINKS */
.nav-links {
    display: flex; align-items: center; gap: 2rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--bark);
    letter-spacing: 0.04em;
    padding: 10px;
    position: relative;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 1.5px; background: var(--moss);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.25s var(--ease-out);
}
.nav-links a:hover { color: var(--moss); }
.nav-links a:hover::after { transform: scaleX(1); }

/* HAMBURGER */
.menu-toggle {
    display: none;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    align-items: center; justify-content: center;
    color: var(--bark);
    font-size: 1.2rem;
    transition: background 0.2s;
}
.menu-toggle:hover { background: var(--paper); }

/* LANG SELECTOR */
.lang-selector { position: relative; }
.lang-btn {
    display: flex; align-items: center; gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border: 1.5px solid var(--paper);
    border-radius: 999px;
    background: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bark);
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.lang-btn:hover { background: var(--parchment); border-color: var(--moss-light); }
.lang-btn.open { background: var(--parchment); border-color: var(--moss); }
.lang-btn .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.25s var(--ease-out);
}
.lang-btn.open .fa-chevron-down { transform: rotate(180deg); }

.lang-dropdown {
    position: absolute; top: calc(100% + 8px); right: 0;
    background: #fff;
    border: 1px solid var(--paper);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.4rem;
    min-width: 140px;
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.lang-dropdown.open {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-option {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem; font-weight: 500;
    color: var(--ink);
    transition: background 0.15s;
}
.lang-option:hover, .lang-option.active { background: var(--fog); color: var(--moss); }

/* ——————————————————————————————————————
   HERO
—————————————————————————————————————— */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}
.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background-image: url('../assets/hero.webp');
    background-size: cover; background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(26,18,8,0.75) 0%,
        rgba(59,42,26,0.55) 50%,
        rgba(61,90,62,0.35) 100%
    );
}
.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    padding: 6rem 2rem 4rem;
    width: 100%;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(212,168,75,0.2);
    border: 1px solid rgba(212,168,75,0.5);
    backdrop-filter: blur(6px);
    color: var(--wheat);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-sub {
    max-width: 520px;
    color: rgba(255,255,255,0.82);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-bottom: 3rem;
}

/* HERO BADGES */
.hero-badges {
    display: flex; flex-wrap: wrap; gap: 1rem;
}
.badge {
    display: flex; align-items: center; gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 0.45rem 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.83rem; font-weight: 500;
}
.badge i { color: var(--wheat); }

/* ——————————————————————————————————————
   BUTTONS
—————————————————————————————————————— */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.04em;
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
}
.btn-primary {
    background: var(--moss);
    color: #fff;
    box-shadow: 0 4px 16px rgba(61,90,62,0.35);
}
.btn-primary:hover {
    background: var(--moss-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61,90,62,0.45);
}
.btn-outline {
    border: 2px solid rgba(255,255,255,0.7);
    color: #fff;
    backdrop-filter: blur(4px);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
}
.btn-clay {
    background: var(--clay);
    color: #fff;
    box-shadow: 0 4px 16px rgba(196,113,74,0.3);
}
.btn-clay:hover {
    background: #b5623f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,113,74,0.4);
}
.btn-white {
    background: #fff;
    color: var(--bark);
    box-shadow: var(--shadow-sm);
}
.btn-white:hover {
    background: var(--parchment);
    transform: translateY(-2px);
}
.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.82rem;
}
.btn-full { width: 100%; justify-content: center; }

/* ——————————————————————————————————————
   SECTIONS
—————————————————————————————————————— */
.section { padding: 6rem 0; }
.section-alt { background: var(--parchment); }
.section-dark {
    background: var(--bark);
    color: var(--cream);
}

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

.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--moss);
    margin-bottom: 0.75rem;
}
.section-dark .section-label { color: var(--wheat); }
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.section-sub {
    color: #6b5c48;
    max-width: 560px;
    margin: 0 auto;
    font-size: 1rem;
}
.section-dark .section-sub { color: rgba(250,246,238,0.65); }

/* ——————————————————————————————————————
   STORY STRIP (Our Philosophy)
—————————————————————————————————————— */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.story-img {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.story-img img {
    width: 100%; height: 460px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}
.story-img:hover img { transform: scale(1.04); }
.story-badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    background: var(--wheat);
    color: var(--bark);
    font-size: 0.8rem; font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    letter-spacing: 0.06em;
}

.story-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--bark);
}
.story-content p {
    color: #5c4a34;
    font-size: 0.97rem;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}
.story-stats {
    display: flex; gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--fog);
    border-radius: var(--radius);
    border: 1px solid var(--paper);
}
.stat-item { text-align: center; }
.stat-num {
    font-family: var(--font-serif);
    font-size: 2rem; font-weight: 700;
    color: var(--bark);
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    color: #7a6550;
    margin-top: 0.3rem;
    display: block;
}

/* ——————————————————————————————————————
   MENU CARDS
—————————————————————————————————————— */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.menu-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--paper);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    display: flex; flex-direction: column;
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.menu-card-img {
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--paper);
}
.menu-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}
.menu-card:hover .menu-card-img img { transform: scale(1.06); }
.menu-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.menu-card-body h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--bark);
    margin-bottom: 0.4rem;
}
.menu-card-body .menu-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.85rem;
    color: var(--moss);
    margin-bottom: 0.75rem;
    letter-spacing: 0.06em;
}
.menu-card-body p {
    font-size: 0.88rem;
    color: #7a6550;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}
.menu-price {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clay);
}
.menu-organic-tag {
    display: inline-flex; align-items: center; gap: 0.25rem;
    font-size: 0.68rem;
    color: var(--moss);
    background: rgba(61,90,62,0.08);
    border: 1px solid rgba(61,90,62,0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    margin-bottom: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    width: fit-content;
}

/* ——————————————————————————————————————
   REVIEWS
—————————————————————————————————————— */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}
.review-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--paper);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
    display: flex; flex-direction: column;
}
.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.review-stars { color: var(--wheat); margin-bottom: 1rem; }
.review-stars i { font-size: 0.9rem; }
.review-text {
    font-size: 0.9rem; line-height: 1.75;
    color: #5c4a34;
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.review-author {
    display: flex; align-items: center; gap: 0.75rem;
}
.reviewer-img {
    width: 40px; height: 40px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    border: 2px solid var(--paper);
    flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.9rem; color: var(--bark); }
.review-author span { font-size: 0.8rem; color: #8a7060; }

/* ——————————————————————————————————————
   LOCATION / MAP
—————————————————————————————————————— */
.area-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 420px;
}
.area-map { position: relative; }
.area-map iframe {
    width: 100%; height: 100%;
    min-height: 320px;
    border: none; display: block;
    filter: sepia(20%) saturate(80%);
}
.area-content {
    background: var(--bark);
    color: var(--cream);
    padding: 3.5rem;
    display: flex; flex-direction: column; justify-content: center;
}
.area-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wheat);
    margin-bottom: 1rem;
    display: block;
}
.area-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.area-content p { color: rgba(250,246,238,0.7); font-size: 0.93rem; margin-bottom: 2rem; line-height: 1.75; }
.area-list { list-style: none; margin-bottom: 2rem; }
.area-list li {
    display: flex; align-items: center; gap: 0.75rem;
    color: rgba(250,246,238,0.85);
    font-size: 0.9rem;
    padding: 0.4rem 0;
}
.area-list i { color: var(--wheat); flex-shrink: 0; }

/* ——————————————————————————————————————
   FOOTER
—————————————————————————————————————— */
footer {
    background: var(--ink);
    color: rgba(250,246,238,0.65);
}
.footer-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand .footer-logo-img {
    height: 72px; width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1) opacity(0.7);
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 220px; }
.footer-col h4 {
    font-family: var(--font-serif);
    color: rgba(250,246,238,0.9);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
}
.footer-col p {
    font-size: 0.85rem;
    line-height: 1.8;
    display: flex; align-items: flex-start; gap: 0.6rem;
    margin-bottom: 0.5rem;
}
.footer-col p i { color: var(--wheat); flex-shrink: 0; margin-top: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(250,246,238,0.08);
    padding: 1.25rem 2rem;
    max-width: 1200px; margin: 0 auto;
    font-size: 0.82rem;
    text-align: center;
}

/* ——————————————————————————————————————
   FAB (LINE/WHATSAPP)
—————————————————————————————————————— */
.fab-btn {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
    width: 56px; height: 56px;
    background: #06C755;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(6,199,85,0.45);
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 28px rgba(6,199,85,0.55);
}

/* ——————————————————————————————————————
   MODAL
—————————————————————————————————————— */
.modal-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(26,18,8,0.7);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.active {
    opacity: 1; visibility: visible; pointer-events: all;
}
.modal-content {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 860px; width: 100%;
    box-shadow: var(--shadow-lg);
    display: grid; grid-template-columns: 1fr 1.2fr;
    max-height: 90vh; overflow-y: auto;
    transform: translateY(16px) scale(0.97);
    transition: transform 0.35s var(--ease-out);
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}
.modal-left {
    background: url('../assets/kenji-cooking.webp') center/cover;
    min-height: 260px;
    position: relative;
}
.modal-left::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(26,18,8,0.2) 0%, rgba(26,18,8,0.5) 100%);
}
.modal-right {
    padding: 2.5rem;
    position: relative;
}
.modal-right h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--bark);
    margin-bottom: 0.5rem;
}
#modal-service-tag {
    display: none;
    font-size: 0.8rem; font-weight: 600;
    background: var(--fog);
    border: 1px solid var(--paper);
    color: var(--moss);
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.close-modal {
    position: absolute; top: 1rem; right: 1rem;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--fog);
    color: var(--bark);
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
}
.close-modal:hover { background: var(--paper); }

.form-group { margin-bottom: 1.1rem; }
.form-group label {
    display: block;
    font-size: 0.82rem; font-weight: 600;
    color: var(--bark);
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--paper);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--ink);
    background: var(--cream);
    transition: border-color 0.2s;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--moss);
    background: #fff;
}
.form-note {
    font-size: 0.78rem;
    color: #8a7060;
    text-align: center;
    margin-top: 0.75rem;
}

/* ——————————————————————————————————————
   SCROLL ANIMATIONS
—————————————————————————————————————— */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ——————————————————————————————————————
   ORGANIC DIVIDER
—————————————————————————————————————— */
.organic-divider {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--moss), var(--wheat), var(--moss), transparent);
    margin: 0;
    opacity: 0.4;
}

/* ——————————————————————————————————————
   RESPONSIVE
—————————————————————————————————————— */
@media (max-width: 1024px) {
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .story-grid { gap: 3rem; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    :root { --header-h: 62px; }

    .nav-links {
        position: absolute;
        top: calc(100% + 0.5rem); left: 0; right: 0;
        flex-direction: column; align-items: stretch;
        background: rgba(250,246,238,0.97);
        backdrop-filter: blur(14px);
        border: 1px solid rgba(212,168,75,0.3);
        border-radius: var(--radius);
        padding: 1rem 1.25rem 1.25rem;
        gap: 0;
        transform: translateY(-8px); opacity: 0;
        pointer-events: none;
        transition: transform 0.3s var(--ease-out), opacity 0.3s;
        box-shadow: var(--shadow);
        z-index: 99;
    }
    header.scrolled .nav-links {
        border-radius: 0 0 var(--radius) var(--radius);
        border-top: none;
        margin-left: 1rem; margin-right: 1rem;
        top: 100%;
    }
    .nav-links.open {
        transform: translateY(0); opacity: 1;
        pointer-events: all;
    }
    .nav-links > a { padding: 0.7rem 0; font-size: 0.95rem; border-bottom: 1px solid var(--paper); }
    .nav-links > a:last-of-type { border-bottom: none; }
    .lang-selector { margin-top: 0.75rem; display: flex; flex-direction: column; align-items: flex-start; }
    .lang-dropdown { left: 0; right: auto; margin-top: 0.5rem; }
    .menu-toggle { display: flex; }

    .story-grid { grid-template-columns: 1fr; }
    .story-img { margin: 0 auto; width: 100%; max-width: 500px; }
    .story-img img { height: 300px; }
    .story-content { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; }
    .story-content p { margin-left: auto; margin-right: auto; }
    .story-content .btn { margin: 0 auto; }
    .story-stats { gap: 1rem; justify-content: center; flex-wrap: wrap; padding: 1.25rem; width: 100%; }
    
    .hero-tag {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
        display: inline-flex;
    }

    .menu-grid { grid-template-columns: 1fr; }
    .menu-card-body > div[style*="margin-top"] {
        display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center;
    }
    .menu-card-body .btn {
        margin-left: 0 !important;
        width: auto;
    }

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

    .area-banner { grid-template-columns: 1fr; }
    .area-map { min-height: 250px; }
    .area-content { padding: 2rem; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

    .modal-content { grid-template-columns: 1fr; }
    .modal-left { display: none; }
    .modal-right { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.6rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: auto; max-width: 100%; }
    .hero-badges { display: none; }
    .stat-num { font-size: 1.6rem; }
}
