/*
Theme Name: STAND Sauvage
Theme URI: https://nakasange-terrace.com/sauvage
Author: Buzz Creation
Author URI: https://buzz-creation.com
Description: STAND ソバージュ - 立ち食い蕎麦屋×お土産ショップのWordPressテーマ
Version: 1.0.31
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sauvage
*/

/* ===== CSS RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Noto Sans JP', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a2e;
    line-height: 1.8;
    background: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.img-sp-only { display: none !important; }
@media (max-width: 900px) {
    .img-sp-only { display: block !important; }
    .img-pc-only { display: none !important; }
}

/* ===== DESIGN TOKENS ===== */
:root {
    --primary: #c23a2e;
    --primary-soft: #fef2f0;
    --primary-bg: #fdf6f4;
    --primary-dark: #a52f25;
    --accent: #8b6914;
    --accent-soft: #f9f3e6;
    --text-dark: #1a1a1a;
    --text-mid: #555;
    --text-light: #999;
    --white: #ffffff;
    --cream: #faf8f4;
    --gray-50: #fafaf8;
    --gray-100: #f5f4f0;
    --gray-200: #e8e6e0;
    --gray-300: #d5d2ca;
    --radius: 12px;
    --radius-sm: 6px;
    --radius-full: 9999px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 28px; }

/* ===== LOADING ===== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loading-logo {
    animation: loadPulse 1.5s ease infinite;
}
.loading-logo img {
    height: 80px;
    max-height: 80px;
    max-width: 80px;
    width: auto;
    object-fit: contain;
}
.loading-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--text-light);
    margin-top: 12px;
    text-transform: uppercase;
}
@keyframes loadPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}
.site-header.scrolled {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.5s var(--ease);
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 76px;
    position: relative;
    z-index: 2;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
    height: 44px;
    max-height: 44px;
    width: auto;
    max-width: 44px;
    object-fit: contain;
    filter: brightness(0);
    transition: all 0.5s var(--ease);
}
.logo-text { line-height: 1.2; }
.logo-text .name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    display: block;
}
.logo-text .sub {
    font-size: 0.55rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    display: block;
}

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    padding: 4px 0;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: color 0.3s var(--ease);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--primary);
    transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-ig {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 18px;
    border: 1px solid var(--gray-200);
    border-radius: 100px;
    font-size: 0.75rem !important;
    transition: all 0.3s var(--ease) !important;
}
.nav-ig:hover { border-color: var(--primary) !important; color: var(--primary) !important; }
.nav-ig::after { display: none !important; }

.hamburger {
    display: none; cursor: pointer;
    z-index: 1001; padding: 8px;
    flex-direction: column; gap: 6px;
    background: none; border: none;
}
.hamburger span {
    width: 24px; height: 1.5px;
    background: var(--text-dark);
    transition: all 0.4s var(--ease); 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); }

.mobile-nav {
    display: none; position: fixed; inset: 0;
    background: rgba(255,255,255,0.97);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    opacity: 0; visibility: hidden;
    transition: all 0.5s var(--ease);
}
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.1em;
}

/* ===== HERO (Full-screen Ukiya style) ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.0); }
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.05) 30%,
        rgba(0,0,0,0.3) 60%,
        rgba(0,0,0,0.7) 100%
    );
}

.hero-center-logo {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
}
.hero-center-logo img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0;
    animation: fadeInLogo 2s ease forwards 0.8s;
}
.hero-center-logo .hero-sub-title {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    margin-top: 16px;
    opacity: 0;
    animation: fadeInLogo 2s ease forwards 1.2s;
}
@keyframes fadeInLogo {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 48px 80px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 60px;
}
.hero-text-left {
    max-width: 420px;
}
.hero-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.06em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    opacity: 0; transform: translateY(30px);
    animation: fadeIn 1s var(--ease) 0.8s forwards;
}
.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s var(--ease);
    opacity: 0; transform: translateY(20px);
    animation: fadeIn 0.8s var(--ease) 1.1s forwards;
}
.hero-link:hover {
    color: #fff;
    border-color: #fff;
}

/* Vertical text (Ukiya-style) */
.hero-text-right {
    position: absolute;
    right: 32px;
    bottom: 80px;
    z-index: 4;
    opacity: 0; transform: translateY(20px);
    animation: fadeIn 1s var(--ease) 1.1s forwards;
}
.hero-vertical {
    writing-mode: vertical-rl;
    display: inline-block;
}
.hero-vertical .big {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.12em;
    line-height: 1.4;
}
.hero-vertical .side-text {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(0.6rem, 1vw, 0.75rem);
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.12em;
    line-height: 2;
    margin-right: 12px;
}

/* Scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.8s var(--ease) 2s forwards;
}
.hero-scroll span {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    display: block;
    margin-bottom: 8px;
}
.scroll-line {
    width: 1px; height: 40px;
    background: rgba(255,255,255,0.15);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.scroll-line::after {
    content: '';
    position: absolute;
    top: -40px; left: 0;
    width: 100%; height: 40px;
    background: rgba(255,255,255,0.6);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown { 0% { top: -40px; } 100% { top: 40px; } }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* ===== SECTION HEADER ===== */
.section-label {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 20px;
}
.section-label .line { width: 40px; height: 1px; background: var(--primary); }
.section-label .en {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem; font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
}
.section-title {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.06em;
    line-height: 1.6;
    margin-bottom: 16px;
}
.section-desc {
    font-size: clamp(0.82rem, 3.5vw, 0.95rem);
    color: var(--text-mid);
    line-height: 2.2;
    max-width: 600px;
    text-align: justify;
    text-justify: inter-ideograph;
    font-feature-settings: "palt";
}

/* ===== CONCEPT ===== */
.concept-section {
    padding: 120px 0;
    background: var(--cream);
}
.concept-top { margin-bottom: 64px; }
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 6px;
}
.concept-grid .g-item {
    position: relative; overflow: hidden;
    border-radius: var(--radius-sm);
}
.concept-grid .g-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.concept-grid .g-item:hover img { transform: scale(1.06); }
.concept-grid .g-item:nth-child(1) { grid-column: 1; grid-row: 1; }
.concept-grid .g-item:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
.concept-grid .g-item:nth-child(3) { grid-column: 3; grid-row: 1; }
.concept-grid .g-item:nth-child(4) { grid-column: 1; grid-row: 2; }
.concept-grid .g-item:nth-child(5) { grid-column: 3; grid-row: 2; }
.concept-grid .g-cap {
    position: absolute;
    bottom: 12px; left: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* ===== MAP / ORIGIN ===== */
.origin-section {
    padding: 140px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.origin-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.origin-text .section-title { margin-bottom: 28px; }
.origin-text .story {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 2.2;
    margin-bottom: 16px;
}
.origin-text .story:last-of-type { margin-bottom: 0; }

.origin-btn {
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 28px;
    font-size: 0.85rem; font-weight: 600;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s var(--ease);
}
.origin-btn:hover { color: var(--primary); border-color: var(--primary); }
.origin-btn::after { content: '→'; transition: transform 0.3s var(--ease); }
.origin-btn:hover::after { transform: translateX(4px); }

/* Map illustration */
.origin-map-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.origin-map-title {
    position: absolute;
    top: 0; right: 0;
    z-index: 10;
    writing-mode: vertical-rl;
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.15em;
    line-height: 2;
    text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.9);
}
.map-text-sp { display: none; }
.origin-map-title .small-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    color: var(--text-light);
    margin-left: 8px;
}

.map-interactive-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    cursor: pointer;
}
.japan-map-svg, .okayama-map-svg {
    width: 100%;
    display: block;
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.okayama-map-svg {
    position: absolute;
    top: 0; left: 0;
    opacity: 0;
    transform: scale(0.85);
    pointer-events: none;
}
.map-interactive-container.is-active .japan-map-svg {
    opacity: 0;
    transform: scale(1.15);
}
.map-interactive-container.is-active .okayama-map-svg {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}
.japan-map-svg .japan-land {
    fill: #ded2a9;
    stroke: #c8b98f;
    stroke-width: 0.5;
    stroke-linejoin: round;
}
.map-hint {
    position: absolute;
    bottom: 20px; right: 20px;
    font-size: 0.6rem;
    font-family: 'Inter', sans-serif;
    color: var(--primary);
    letter-spacing: 0.1em;
    background: rgba(255,255,255,0.9);
    padding: 6px 12px;
    border-radius: 100px;
    pointer-events: none;
    transition: opacity 0.5s var(--ease);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex; align-items: center; gap: 6px;
}
.map-interactive-container.is-active .map-hint { opacity: 0; }
.map-hint svg { width: 12px; height: 12px; }
.okayama-map-svg .prefecture {
    fill: #ded2a9;
    stroke: #c8b98f;
    stroke-width: 0.5;
    stroke-linejoin: round;
    opacity: 0.95;
    transition: fill 0.3s var(--ease);
}
.okayama-map-svg .sea {
    fill: none;
}
.okayama-map-svg .seto {
    fill: #d6e8f0;
    opacity: 0.35;
}

/* Pin styles */
.map-pin {
    cursor: pointer;
}
.map-pin .pin-dot {
    fill: var(--primary);
    filter: drop-shadow(0 2px 4px rgba(194,58,46,0.4));
    transition: fill 0.3s ease;
}
.map-pin:hover .pin-dot {
    fill: #a52f25;
    filter: drop-shadow(0 2px 8px rgba(194,58,46,0.6));
}
.map-pin .pin-ring {
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.5;
}
.map-pin .pin-label {
    transition: fill 0.3s ease;
}
.map-pin:hover .pin-label {
    fill: var(--primary);
}

.pin-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11px;
    font-weight: 700;
    fill: var(--text-dark);
}
.pin-label-sub {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 8px;
    fill: var(--text-mid);
    font-weight: 400;
}

/* Pin cards (legend below map) */
.pin-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}
.pin-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    transition: all 0.3s var(--ease);
}
.pin-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(194,58,46,0.06);
}
.pin-card-header {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 8px;
}
.pin-card-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}
.pin-card h4 {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
}
.pin-card p {
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.pin-card .role {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

/* ===== SOBA SECTION ===== */
.soba-section {
    padding: 120px 0;
    background: var(--cream);
}
.soba-hero-block {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}
.soba-img {
    width: 85%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1/1;
    box-shadow: 0 20px 48px rgba(0,0,0,0.06);
    min-height: 0; /* Prevent Safari flex intrinsic height stretch */
}
.soba-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}
.soba-img:hover img { transform: scale(1.04); }

.soba-text h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin-bottom: 28px;
}
.soba-text .desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 2.2;
    margin-bottom: 20px;
}
.soba-text .credit-box {
    padding: 16px 20px;
    background: var(--white);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.82rem;
    color: var(--text-mid);
    line-height: 1.8;
}
.soba-text .credit-box strong {
    color: var(--primary);
    font-weight: 600;
}

/* Menu cards */
.menu-header {
    text-align: center;
    margin-bottom: 52px;
}
.menu-header h3 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.menu-header .en {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-light);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.menu-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.5s var(--ease);
}
.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
    border-color: transparent;
}
.menu-card-img { height: 240px; overflow: hidden; }
.menu-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.menu-card:hover .menu-card-img img { transform: scale(1.05); }
.menu-card-body { padding: 22px; }
.menu-card-body h4 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.05rem; font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.menu-card-body p {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ===== MENU TABS ===== */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    padding: 4px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.menu-tab {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: none;
    font-family: 'Shippori Mincho', serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease);
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.menu-tab:hover { color: var(--text-dark); }
.menu-tab.active {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.menu-tab-content {
    display: none;
    animation: tabFadeIn 0.5s var(--ease);
}
.menu-tab-content.active { display: block; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

/* Soba menu list */
.soba-menu-list {
    max-width: 800px;
    margin: 0 auto;
}
.soba-menu-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.3s var(--ease);
}
.soba-menu-item:last-child { border-bottom: none; }
.soba-menu-img {
    flex-shrink: 0;
    width: 90px; height: 90px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}
.soba-menu-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.soba-menu-item:hover .soba-menu-img img {
    transform: scale(1.08);
}
.soba-menu-img .soba-temp {
    position: absolute;
    top: 6px; left: 6px;
    width: 28px; height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--white);
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.soba-temp.hot { background: var(--primary); }
.soba-temp.cold { background: #3a7bc2; }
.soba-menu-info { flex: 1; }
.soba-menu-info h4 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
    word-break: normal;
}
.soba-menu-info .signature {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 8px;
    vertical-align: middle;
    letter-spacing: 0.06em;
}
.soba-menu-info .sub-desc {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-top: 2px;
}
.soba-menu-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    padding-top: 4px;
}
.soba-menu-price .yen {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-mid);
    margin-left: 2px;
}
.soba-toppings {
    margin-top: 28px;
    padding: 20px 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
}
.soba-toppings h5 {
    font-family: 'Shippori Mincho', serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: 0.06em;
}
.topping-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 2;
}
.topping-row span {
    white-space: nowrap;
}
.topping-row .tp-price {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
}

/* Placeholder menu (天ぷら / 夜) */
.menu-placeholder {
    text-align: center;
    padding: 60px 20px;
    max-width: 600px;
    margin: 0 auto;
}
.menu-placeholder-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}
.menu-placeholder h4 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.menu-placeholder p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.9;
}
.menu-placeholder-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
    text-align: left;
}
.menu-placeholder-item {
    padding: 14px 18px;
    background: var(--white);
    border: 1px dashed var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-light);
    font-style: italic;
}

/* ===== YOBAJU (Night) SECTION ===== */
.yobaju-section {
    padding: 120px 0;
    background: #3a3632;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.yobaju-section::before {
    content: 'ヨバージュ';
    position: absolute;
    bottom: -2%;
    right: -2%;
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(5rem, 14vw, 12rem);
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
    letter-spacing: 0.05em;
}
.yobaju-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.yobaju-text .section-label .line { background: rgba(255,255,255,0.3); }
.yobaju-text .section-label .en { color: rgba(255,255,255,0.5); }
.yobaju-text .section-title { color: #fff; }
.yobaju-text .yobaju-sub {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    margin-bottom: 8px;
}
.yobaju-text .story {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    line-height: 2.2;
    margin-bottom: 16px;
}
.yobaju-time {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}
.yobaju-time .time-icon { font-size: 1rem; }
.yobaju-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.yobaju-imgs .yi {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 1;
}
.yobaju-imgs .yi:first-child {
    grid-row: 1 / 3;
    aspect-ratio: auto;
}
.yobaju-imgs .yi img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
    filter: brightness(0.85);
}
.yobaju-imgs .yi:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}
/* 3枚クロスフェードスライダー */
.yobaju-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.yobaju-slider .ys-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: yobajuFade 9s infinite ease-in-out;
}
.yobaju-slider .ys-img:nth-child(1) { animation-delay: 0s; }
.yobaju-slider .ys-img:nth-child(2) { animation-delay: 3s; }
.yobaju-slider .ys-img:nth-child(3) { animation-delay: 6s; }

@keyframes yobajuFade {
    0% { opacity: 0; transform: scale(1.0); }
    10% { opacity: 1; transform: scale(1.02); }
    33% { opacity: 1; transform: scale(1.05); }
    43% { opacity: 0; transform: scale(1.07); }
    100% { opacity: 0; transform: scale(1.0); }
}

/* ===== DASHI ===== */
.dashi-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.dashi-section::before {
    content: '出汁';
    position: absolute;
    top: 50%; right: -3%;
    transform: translateY(-50%);
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(6rem, 16vw, 14rem);
    font-weight: 900;
    color: var(--gray-100);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}
.dashi-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.dashi-text .section-title { margin-bottom: 24px; }
.dashi-text .desc {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 2.2;
    margin-bottom: 16px;
}
.dashi-text .accent-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
}
.dashi-text .accent-tag::before { content: '◆'; font-size: 0.55rem; }

.dashi-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.dashi-imgs .di {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.dashi-imgs .di:first-child {
    grid-column: 1 / 3;
    aspect-ratio: 16/9;
}
.dashi-imgs .di:nth-child(2),
.dashi-imgs .di:nth-child(3) { aspect-ratio: 1; }
.dashi-imgs img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.dashi-imgs .di:hover img { transform: scale(1.05); }
/* 1枚レイアウト */
.dashi-imgs--single {
    grid-template-columns: 1fr;
}
.dashi-imgs--single .di:first-child {
    grid-column: 1;
    aspect-ratio: 4/3;
}
.dashi-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.dashi-slider .ds-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: yobajuFade 9s infinite ease-in-out;
}
.dashi-slider .ds-img:nth-child(1) { animation-delay: 0s; }
.dashi-slider .ds-img:nth-child(2) { animation-delay: 3s; }
.dashi-slider .ds-img:nth-child(3) { animation-delay: 6s; }

/* ===== ATMOSPHERE ===== */
.atmosphere-section {
    padding: 120px 0;
    background: var(--cream);
}
.atm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 52px;
}
.atm-header-right {
    font-size: 0.85rem;
    color: var(--text-mid);
    max-width: 380px;
    text-align: right;
    line-height: 1.9;
}

.atm-slider-wrap { overflow: hidden; }
.atm-slider {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: atmMarquee 40s linear infinite;
}
.atm-slider-wrap:hover .atm-slider {
    animation-play-state: paused;
}
@keyframes atmMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.atm-slide {
    flex-shrink: 0;
    width: clamp(280px, 42vw, 520px);
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    overflow: hidden;
}
.atm-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.atm-slide:hover img { transform: scale(1.05); }

/* ===== BEEF JOURNEY ===== */
.bj-section {
    padding: 120px 0;
    background: var(--cream);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}
.bj-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(194,58,46,0.03) 0%, transparent 60%);
    pointer-events: none;
}
.bj-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.bj-img-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1/1;
}
.bj-sp-img { display: none; }
.bj-slider {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
.bj-slider .bjs-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: yobajuFade 9s infinite ease-in-out;
}
.bj-slider .bjs-img:nth-child(1) { animation-delay: 0s; }
.bj-slider .bjs-img:nth-child(2) { animation-delay: 3s; }
.bj-slider .bjs-img:nth-child(3) { animation-delay: 6s; }
.bj-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.bj-img-wrap:hover img {
    transform: scale(1.04);
}
.bj-text .section-label .en { color: var(--accent); }
.bj-brand-name {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.2;
}
.bj-brand-sub {
    font-family: 'Shippori Mincho', serif;
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 0.12em;
    margin-bottom: 32px;
}
.bj-text .desc {
    font-size: 0.88rem;
    line-height: 2;
    color: var(--text-mid);
    margin-bottom: 20px;
}
.bj-features {
    display: flex;
    gap: 16px;
    margin: 32px 0;
    flex-wrap: wrap;
}
.bj-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border: 1px solid rgba(139,105,20,0.25);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 0.06em;
    background: var(--accent-soft);
}
.bj-price-list {
    margin: 36px 0;
    border-top: 1px solid var(--gray-200);
}
.bj-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}
.bj-price-item .size {
    font-size: 0.92rem;
    color: var(--text-mid);
}
.bj-price-item .price {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
}
.bj-price-item .price .yen {
    font-size: 0.8rem;
    font-weight: 400;
    margin-left: 2px;
    color: var(--text-mid);
}
.bj-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 32px;
    padding: 14px 36px;
    border: 1px solid var(--primary);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: all 0.4s var(--ease);
    text-decoration: none;
}
.bj-cta:hover {
    background: var(--primary);
    color: var(--white);
}
.bj-cta svg {
    transition: transform 0.3s var(--ease);
}
.bj-cta:hover svg {
    transform: translateX(4px);
}

/* ===== ACCESS ===== */
.access-section {
    padding: 120px 0;
    background: var(--white);
}
.access-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.access-info h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    margin-bottom: 28px;
}
.info-table { margin-bottom: 32px; }
.info-row {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}
.info-row dt {
    width: 100px; flex-shrink: 0;
    font-size: 0.78rem; font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
}
.info-row dd {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.7;
}
.access-note {
    padding: 16px 20px;
    background: var(--primary-soft);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.8;
}
.access-map {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
}
.access-map iframe { width: 100%; height: 100%; border: none; }

/* ===== CTA ===== */
.cta-section {
    padding: 100px 0;
    background: var(--cream);
    text-align: center;
}
.cta-section h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.25rem, 4.5vw, 1.8rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    line-height: 1.6;
}
.cta-section p {
    font-size: 0.88rem;
    color: var(--text-mid);
    margin-bottom: 32px;
}
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    background: var(--text-dark);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.82rem; font-weight: 600;
    transition: all 0.3s var(--ease);
}
.btn-primary:hover { background: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(194,58,46,0.2); }
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.82rem; font-weight: 600;
    transition: all 0.3s var(--ease);
}
.btn-outline:hover { border-color: var(--text-dark); transform: translateY(-2px); }

/* ===== FOOTER ===== */
.site-footer {
    padding: 72px 0 36px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}
.footer-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 48px;
}
.footer-brand .fb-name {
    font-family: 'Shippori Mincho', serif;
    font-size: 1.2rem; font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}
.footer-brand .fb-sub {
    font-size: 0.68rem;
    color: var(--text-light);
    margin-bottom: 14px;
}
.footer-brand .fb-desc {
    font-size: 0.78rem;
    color: var(--text-mid);
    max-width: 300px;
    line-height: 1.9;
}
.footer-nav { display: flex; gap: 48px; }
.footer-nav-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem; font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
}
.footer-nav-col a {
    display: block;
    font-size: 0.8rem;
    color: var(--text-mid);
    padding: 4px 0;
}
.footer-nav-col a:hover { color: var(--text-dark); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--gray-200);
}
.footer-bottom .company { font-size: 0.72rem; color: var(--text-light); }
.footer-bottom .company a:hover { color: var(--primary); }
.footer-bottom .copy {
    font-family: 'Inter', sans-serif;
    font-size: 0.62rem;
    color: var(--text-light);
}

/* ===== IMAGE MODAL ===== */
.image-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.85); display: flex; justify-content: center; align-items: center;
    z-index: 9999; opacity: 0; visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s; cursor: zoom-out;
}
.image-modal.active { opacity: 1; visibility: visible; }
.image-modal img {
    max-width: 90%; max-height: 90vh; border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    transform: scale(0.95); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-modal.active img { transform: scale(1); }
.soba-menu-img img { cursor: zoom-in; }

/* ===== SCROLL ANIM ===== */
.fade-up {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: flex; }

    .hero { min-height: 100svh; }
    .hero-content { padding: 0 24px 60px; flex-direction: column; align-items: flex-start; gap: 24px; }
    .hero-text-right { display: none; }
    .hero-scroll { display: none; }

    .concept-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
        grid-auto-rows: 220px;
    }
    .concept-grid .g-item:nth-child(1) { grid-column: 1; grid-row: 1; }
    .concept-grid .g-item:nth-child(3) { grid-column: 2; grid-row: 1; }
    .concept-grid .g-item:nth-child(2) { grid-column: 1 / 3; grid-row: 2; }
    .concept-grid .g-item:nth-child(4) { grid-column: 1; grid-row: 3; }
    .concept-grid .g-item:nth-child(5) { grid-column: 2; grid-row: 3; }

    .origin-inner { grid-template-columns: 1fr; gap: 48px; }
    .origin-map-wrap { flex-direction: column; }
    .origin-map-title { position: static; writing-mode: horizontal-tb; margin-bottom: 16px; text-align: center; }
    .origin-map-title br { display: none; }
    .map-text-pc { display: none; }
    .map-text-sp { display: inline; }
    .origin-map-title .small-label { writing-mode: horizontal-tb; display: block; margin-left: 0; }

    .soba-hero-block { display: flex; flex-direction: column-reverse; gap: 40px; }
    .soba-img { width: 100%; aspect-ratio: 4/3; }
    .soba-menu-item { gap: 12px; padding: 16px 0; }
    .soba-menu-img { width: 72px; height: 72px; }
    .soba-menu-info h4 { font-size: 0.95rem; }

    .menu-grid { grid-template-columns: 1fr; gap: 16px; }
    .menu-tabs { max-width: 100%; }
    .menu-tab { font-size: 0.75rem; padding: 10px 10px; white-space: nowrap; }
    .menu-placeholder-items { grid-template-columns: 1fr; }

    .yobaju-inner { grid-template-columns: 1fr; gap: 48px; }

    .dashi-inner { grid-template-columns: 1fr; gap: 48px; }

    .atm-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .atm-header-right { text-align: left; }
    .atm-slide { width: 280px; }

    .bj-inner { grid-template-columns: 1fr; gap: 48px; }
    .bj-pc-img { display: none; }
    .bj-sp-img { display: block; margin: 40px 0; }
    .bj-brand-name { font-size: 2.2rem; }

    .access-inner { grid-template-columns: 1fr; gap: 40px; }
    .access-map { aspect-ratio: 4/3; }

    .pin-cards { grid-template-columns: 1fr; }

    .footer-top { flex-direction: column; gap: 32px; }
    .footer-nav { gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 600px) {
    .container { padding: 0 20px; }
    .concept-section, .soba-section, .dashi-section, .atmosphere-section, .access-section, .yobaju-section, .bj-section { padding: 80px 0; }
    .concept-grid { 
        grid-template-columns: 1fr; 
        grid-template-rows: repeat(5, 220px);
        grid-auto-rows: 220px; 
    }
    .concept-grid .g-item:nth-child(1),
    .concept-grid .g-item:nth-child(2),
    .concept-grid .g-item:nth-child(3),
    .concept-grid .g-item:nth-child(4),
    .concept-grid .g-item:nth-child(5) {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .dashi-imgs { grid-template-columns: 1fr; }
    .dashi-imgs .di:first-child { grid-column: 1; }
    .cta-btns { flex-direction: column; align-items: center; }
    .btn-primary, .btn-outline { width: 100%; max-width: 300px; justify-content: center; }
    .footer-nav { flex-direction: column; gap: 20px; }
    .hero-links { flex-direction: column; }
}

/* Floating Instagram DM Button */
.floating-ig-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0.4s var(--ease), box-shadow 0.3s var(--ease);
}
.floating-ig-btn.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.floating-ig-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(220, 39, 67, 0.5);
    color: #fff;
}
.floating-ig-btn svg {
    width: 20px;
    height: 20px;
}
@media (max-width: 768px) {
    .floating-ig-btn {
        bottom: 16px;
        right: 16px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}
