/* ===============================================
   浪花串鍋堂 松山本店 - スタイルシート
   =============================================== */

/* リセット & 基本設定 */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット - 和風モダン */
    --color-primary: #c41e3a;      /* 紅色（ロゴに合わせて） */
    --color-primary-dark: #a01830;
    --color-primary-light: #e63950;
    --color-secondary: #1a1a1a;    /* ほぼ黒 */
    --color-accent: #d4a84b;       /* ゴールド */
    --color-bg: #0d0d0d;
    --color-bg-light: #1a1a1a;
    --color-bg-card: #242424;
    --color-text: #f5f5f5;
    --color-text-muted: #999;
    --color-border: #333;

    /* フォント */
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;

    /* スペーシング */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* トランジション */
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===============================================
   ヘッダー
   =============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-list a {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
}

.nav-list a:not(.nav-reserve)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
}

.nav-list a:not(.nav-reserve):hover::after {
    width: 100%;
}

.nav-reserve {
    background: var(--color-primary);
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 700;
}

.nav-reserve:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

/* ハンバーガーメニュー */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

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

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

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

/* ===============================================
   ヒーローセクション
   =============================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    text-align: center;
    padding: var(--spacing-md);
    animation: fadeInUp 1s ease;
}

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

/* ヒーローバッジ */
.hero-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

.hero-badge {
    background: rgba(196, 30, 58, 0.9);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    backdrop-filter: blur(5px);
}

.hero-catch {
    font-size: 1rem;
    color: var(--color-accent);
    letter-spacing: 0.3em;
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-family: var(--font-serif);
    margin-bottom: var(--spacing-sm);
}

.hero-title span {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}

.hero-title em {
    display: block;
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-style: normal;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.1em;
    line-height: 2;
}

/* ヒーローの特徴 */
.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.hero-feature {
    text-align: center;
}

.hero-feature-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--color-accent);
}

.hero-feature-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.1em;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-primary), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ===============================================
   ボタン
   =============================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.3);
}

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

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

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: var(--color-primary);
    color: white;
}

.btn-large:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(196, 30, 58, 0.4);
}

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

.btn-outline:hover {
    background: var(--color-text);
    color: var(--color-secondary);
}

/* ===============================================
   セクション共通
   =============================================== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-label {
    display: block;
    font-size: 0.8rem;
    color: var(--color-primary);
    letter-spacing: 0.3em;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
}

.section-header-light .section-label {
    color: var(--color-primary-light);
}

/* ===============================================
   こだわりセクション
   =============================================== */
.concept {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.concept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.concept-card {
    background: var(--color-bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.concept-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.concept-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.concept-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.concept-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.concept-card:hover .concept-card-image img {
    transform: scale(1.1);
}

.concept-card-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-primary);
    opacity: 0.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.concept-card-body {
    padding: var(--spacing-md);
}

.concept-card-title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.concept-card-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.9;
}

/* ===============================================
   ギャラリーセクション
   =============================================== */
.gallery {
    padding: 0;
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 4px;
}

.gallery-item {
    overflow: hidden;
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s ease;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

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

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

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

/* ===============================================
   メニューセクション
   =============================================== */
.menu {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg);
}

/* メニューショーケース */
.menu-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.menu-showcase-item {
    background: var(--color-bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.menu-showcase-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.menu-showcase-image {
    height: 200px;
    overflow: hidden;
}

.menu-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.menu-showcase-info {
    padding: var(--spacing-md);
}

.menu-showcase-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.menu-showcase-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.menu-showcase-price {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
}

/* メニューカテゴリ */
.menu-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.menu-category {
    background: var(--color-bg-card);
    border-radius: 8px;
    padding: var(--spacing-md);
    border: 1px solid var(--color-border);
}

.menu-category-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--color-primary);
}

.menu-category-icon {
    font-size: 1.5rem;
}

.menu-list {
    list-style: none;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.6rem 0;
    border-bottom: 1px dotted var(--color-border);
}

.menu-list li:last-child {
    border-bottom: none;
}

.menu-name {
    font-size: 0.95rem;
}

.menu-name small {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    font-size: 0.7rem;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    margin-left: 0.5rem;
}

.menu-price {
    font-weight: 700;
    color: var(--color-accent);
    white-space: nowrap;
}

/* 宴会コース */
.menu-course {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
}

.menu-course-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.menu-course-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.7));
}

.menu-course-inner {
    position: relative;
    padding: var(--spacing-lg);
    text-align: center;
}

.menu-course-badge {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.menu-course-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.menu-course-note {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
}

.menu-course-price {
    margin-bottom: var(--spacing-md);
}

.price-label {
    display: block;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-accent);
}

.menu-course-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.menu-course-features li {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* ===============================================
   店舗情報セクション
   =============================================== */
.info {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
    margin-bottom: var(--spacing-lg);
}

.info-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-image img {
    width: 100%;
    height: auto;
    display: block;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table tr {
    border-bottom: 1px solid var(--color-border);
}

.info-table th,
.info-table td {
    padding: var(--spacing-sm);
    text-align: left;
    vertical-align: top;
}

.info-table th {
    width: 120px;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.info-table td {
    font-size: 0.95rem;
}

.info-table a {
    color: var(--color-accent);
}

.info-table a:hover {
    text-decoration: underline;
}

.info-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-map iframe {
    display: block;
}

/* ===============================================
   CTAセクション
   =============================================== */
.cta {
    position: relative;
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.8));
}

.cta-content {
    position: relative;
    text-align: center;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

.cta-desc {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-md);
}

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

/* LINE CTA */
.cta-line {
    margin: var(--spacing-md) 0;
    padding: var(--spacing-md);
    background: rgba(6, 199, 85, 0.1);
    border: 2px solid #06C755;
    border-radius: 12px;
    text-align: center;
}

.cta-line-text {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: #06C755;
}

.line-btn {
    display: inline-block;
    transition: var(--transition);
}

.line-btn:hover {
    transform: scale(1.05);
}

.line-btn img {
    display: block;
}

.cta-line-note {
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* SNS Container */
.cta-sns {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin: var(--spacing-md) 0;
}

.cta-sns .cta-line {
    margin: 0;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

/* Instagram CTA */
.cta-instagram {
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(131, 58, 180, 0.1), rgba(253, 29, 29, 0.1), rgba(252, 176, 69, 0.1));
    border: 2px solid #E1306C;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.cta-instagram-text {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(45deg, #833AB4, #E1306C, #FCAF45);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #833AB4, #E1306C, #FCAF45);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    transition: var(--transition);
}

.instagram-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(225, 48, 108, 0.4);
}

.instagram-btn svg {
    fill: white;
}

/* Footer SNS */
.footer-sns {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    justify-content: flex-end;
}

.footer-sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-card);
    border-radius: 50%;
    transition: var(--transition);
}

.footer-sns a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-sns svg {
    fill: var(--color-text);
    transition: var(--transition);
}

.footer-sns a:hover svg {
    fill: white;
}

/* ===============================================
   フッター
   =============================================== */
.footer {
    padding: var(--spacing-lg) 0 var(--spacing-md);
    background: var(--color-secondary);
    border-top: 1px solid var(--color-border);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-logo-branch {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.footer-info {
    text-align: right;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.footer-info a {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ===============================================
   固定予約ボタン
   =============================================== */
.fixed-reserve {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-sm);
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.fixed-reserve-btn {
    display: block;
    width: 100%;
    background: var(--color-primary);
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.fixed-reserve-btn:hover {
    background: var(--color-primary-light);
}

/* ===============================================
   レスポンシブ
   =============================================== */
@media (max-width: 1024px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item-large {
        grid-column: span 2;
        grid-row: span 1;
    }
}

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

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg);
        padding: 100px var(--spacing-md) var(--spacing-md);
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--spacing-md);
        align-items: flex-start;
    }

    .nav-list a {
        font-size: 1.1rem;
    }

    .nav-reserve {
        width: 100%;
        text-align: center;
    }

    .logo-img {
        height: 40px;
    }

    .hero-desc br {
        display: none;
    }

    .hero-features {
        gap: var(--spacing-md);
    }

    .hero-feature-value {
        font-size: 1.4rem;
    }

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

    .gallery-item-large {
        grid-column: span 1;
    }

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

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

    .footer-inner {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-info {
        text-align: center;
    }

    .fixed-reserve {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .menu-course-inner {
        padding: var(--spacing-md);
    }

    .price-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hero-badges {
        gap: 6px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }

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

    .menu-categories {
        grid-template-columns: 1fr;
    }

    .menu-showcase {
        grid-template-columns: 1fr;
    }

    .info-table th {
        width: 90px;
    }

    .footer-logo-img {
        height: 60px;
    }
}
