/* ==========================================================================
   Seiza Sauna (seiza-sauna.jp) - Custom Style Sheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   Reset & Basic Settings
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: #040610;
    color: #f5f5f7;
    font-family: 'Inter', 'Noto Sans JP', sans-serif;
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    min-height: 100vh;
}

/* Canvas Starfield */
#starfield {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background: radial-gradient(circle at center, #0a0e23 0%, #040610 100%);
}

ul, ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Typography styles */
.font-serif {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    font-weight: 500;
    letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   Design System / Utilities
   -------------------------------------------------------------------------- */
:root {
    --bg-dark: #040610;
    --bg-sec: #0a0d20;
    --bg-card: rgba(14, 18, 43, 0.6);
    --gold: #c5a059;
    --gold-glow: #e6c587;
    --gold-dark: #91723a;
    --text-light: #f5f5f7;
    --text-muted: #8e8e93;
    --border-color: rgba(197, 160, 89, 0.2);
    --border-glow: rgba(197, 160, 89, 0.4);
    --container-width: 1200px;
    --line-color: #06c755;
}

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

.section-padding {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
}

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

.gold-text {
    color: var(--gold);
}

/* Common Section Title */
.section-title-wrapper {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-en {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.75rem;
}

.section-title-jp {
    font-size: 2.25rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-light);
    position: relative;
    display: inline-block;
    padding-bottom: 1.5rem;
}

.section-title-jp::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background-color: var(--gold);
}

@media (max-width: 768px) {
    .section-title-wrapper {
        margin-bottom: 3.5rem;
    }
    .section-title-jp {
        font-size: 1.75rem;
    }
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    border-radius: 0px; /* Luxury sharp design */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-gold {
    color: #040610;
    background-color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 15px var(--border-glow);
    border-color: var(--gold-glow);
}

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

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #040610;
    box-shadow: 0 0 15px var(--border-glow);
}

.btn-line {
    color: #ffffff;
    background-color: var(--line-color);
    border: 1px solid var(--line-color);
}

.btn-line:hover {
    background-color: transparent;
    color: var(--line-color);
    box-shadow: 0 0 15px rgba(6, 199, 85, 0.4);
}

/* --------------------------------------------------------------------------
   Header / Navigation
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background-color: rgba(4, 6, 16, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

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

.header-logo {
    display: flex;
    flex-direction: column;
}

.logo-en {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: var(--text-light);
    font-family: 'Playfair Display', serif;
}

.logo-jp {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    color: var(--gold);
    margin-top: 2px;
}

.header-nav {
    display: block;
}

.nav-list {
    display: flex;
    gap: 2.25rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-light);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold);
}

.header-cta {
    display: flex;
    gap: 0.75rem;
}

.header-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.75rem;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    width: 30px;
    padding: 5px;
    z-index: 110;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 1px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

/* Mobile Menu Active */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(4, 6, 16, 0.98);
    border-left: 1px solid var(--border-color);
    z-index: 99;
    padding: 8rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
}

.mobile-nav-drawer.active {
    right: 0;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-family: 'Playfair Display', 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
    display: block;
    color: var(--text-light);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-btn {
    width: 100%;
    padding: 0.9rem;
}

@media (max-width: 992px) {
    .header-nav {
        display: none;
    }
    .header-cta {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: url('../images/hero_instagram.png') no-repeat center center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(4, 6, 16, 0.3) 0%, rgba(4, 6, 16, 0.7) 100%);
    z-index: 1;
}

.hero-container-single {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 8vh;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards 0.3s;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(4, 6, 16, 0.75);
    border: 1px solid var(--border-color);
    padding: 2rem 2.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-tag {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: inline-block;
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.75rem;
    background-color: rgba(10, 14, 35, 0.5);
}

.hero-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-light);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.hero-cta-btn {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

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

@media (max-width: 992px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 1.75rem 1.5rem;
        max-width: 500px;
    }
    
    .hero-cta-btn {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        background-position: center center;
    }
    
    .hero-desc {
        font-size: 0.85rem;
        line-height: 1.7;
    }
    
    .hero-cta-btn {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta-btn .btn {
        width: 100%;
        padding: 0.85rem;
    }
}

/* --------------------------------------------------------------------------
   Concept Section
   -------------------------------------------------------------------------- */
.concept {
    background-color: var(--bg-sec);
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.concept-img-wrapper {
    position: relative;
    border: 1px solid var(--border-color);
    padding: 1rem;
    background-color: rgba(4, 6, 16, 0.4);
}

.concept-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    filter: grayscale(20%) brightness(85%);
    border: 1px solid var(--border-color);
}

.concept-img-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.concept-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-bottom: 1px solid var(--gold);
    border-right: 1px solid var(--gold);
}

.concept-subtitle {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--gold);
}

.concept-text {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--text-light);
    opacity: 0.85;
}

.concept-text p {
    margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
    .concept-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .concept-img {
        height: 350px;
    }
}

/* --------------------------------------------------------------------------
   Features Section
   -------------------------------------------------------------------------- */
.features {
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-glow);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.1);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transform: rotate(45deg);
}

.feature-icon {
    transform: rotate(-45deg);
    color: var(--gold);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.25rem;
    color: var(--text-light);
}

.feature-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .feature-card {
        padding: 2.5rem 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   Price Section
   -------------------------------------------------------------------------- */
.price {
    background-color: var(--bg-sec);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.price-desc-text {
    text-align: center;
    max-width: 600px;
    margin: -3rem auto 4rem auto;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
}

/* Price Tabs */
.price-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.75rem 2rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.tab-btn.active {
    background-color: var(--gold);
    color: #040610;
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.3);
}

/* Price Panels */
.price-panel {
    display: none;
    animation: fadeIn 0.5s forwards;
}

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

/* Custom Table Layout for Desktop */
.price-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 850px;
    text-align: left;
}

.price-table th, .price-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    font-size: 0.9rem;
}

.price-table th {
    background-color: rgba(197, 160, 89, 0.05);
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.1em;
    font-family: 'Noto Serif JP', serif;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.plan-name {
    font-weight: 600;
    color: var(--text-light);
}

.price-val {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-glow);
}

.per-session {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Card view for mobile (will show via CSS Grid/Flex on mobile, hide on desktop) */
.price-mobile-cards {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.price-mobile-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-card-header {
    border-bottom: 1px solid rgba(197, 160, 89, 0.1);
    padding-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.mobile-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
}

.mobile-card-time {
    font-size: 0.8rem;
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 2px 6px;
    background-color: rgba(197, 160, 89, 0.05);
}

.mobile-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.mobile-card-row {
    display: flex;
    justify-content: space-between;
}

.mobile-card-row .label {
    color: var(--text-muted);
}

.mobile-card-price-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 0.5rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
    padding-top: 0.75rem;
}

.mobile-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-glow);
}

.mobile-card-per {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

@media (max-width: 768px) {
    .price-table-wrapper {
        display: none;
    }
    .price-mobile-cards {
        display: flex;
    }
}

/* --------------------------------------------------------------------------
   How to Use / Flow Section
   -------------------------------------------------------------------------- */
.flow-steps {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.flow-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 45px;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
}

.flow-step {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.step-num {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--bg-sec);
    border: 1px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
}

.step-num .num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-glow);
}

.step-num .label {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-transform: uppercase;
}

.step-content {
    margin-left: 2.5rem;
    padding-top: 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.step-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.step-cta {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .flow-steps::before {
        left: 25px;
    }
    .step-num {
        width: 50px;
        height: 50px;
    }
    .step-num .num {
        font-size: 1rem;
    }
    .step-num .label {
        display: none;
    }
    .step-content {
        margin-left: 1.5rem;
        padding-top: 0.25rem;
    }
    .step-title {
        font-size: 1.1rem;
    }
}

/* --------------------------------------------------------------------------
   Information & Access Section
   -------------------------------------------------------------------------- */
.access {
    background-color: var(--bg-sec);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}

.info-table {
    width: 100%;
}

.info-row {
    display: flex;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-th {
    width: 120px;
    font-family: 'Noto Serif JP', serif;
    font-weight: 600;
    color: var(--gold);
    flex-shrink: 0;
    font-size: 0.95rem;
}

.info-td {
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-light);
}

.map-wrapper {
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    background-color: var(--bg-card);
}

.map-wrapper iframe {
    width: 100%;
    height: 380px;
    border: none;
    filter: invert(90%) hue-rotate(180deg) contrast(120%);
}

@media (max-width: 992px) {
    .access-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .map-wrapper iframe {
        height: 300px;
    }
}

/* --------------------------------------------------------------------------
   Q&A Page Accordion
   -------------------------------------------------------------------------- */
.qa-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.qa-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
}

.qa-item:hover {
    border-color: var(--border-glow);
}

.qa-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.qa-title {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    gap: 1rem;
}

.qa-title .q-prefix {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.qa-icon-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
    margin-left: 1rem;
}

.qa-icon-toggle::before, .qa-icon-toggle::after {
    content: '';
    position: absolute;
    background-color: var(--gold);
    transition: all 0.3s ease;
}

.qa-icon-toggle::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

.qa-icon-toggle::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

.qa-item.active .qa-icon-toggle::after {
    transform: rotate(90deg);
    opacity: 0;
}

.qa-item.active .qa-icon-toggle::before {
    background-color: var(--gold-glow);
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-top: 1px solid transparent;
}

.qa-item.active .qa-answer {
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.answer-content {
    padding: 1.5rem 2rem;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    display: flex;
    gap: 1rem;
}

.answer-content .a-prefix {
    color: var(--gold-glow);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

@media (max-width: 768px) {
    .qa-question {
        padding: 1.25rem 1.25rem;
    }
    .qa-title {
        font-size: 0.95rem;
    }
    .answer-content {
        padding: 1.25rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* --------------------------------------------------------------------------
   Privacy & Law Static Pages
   -------------------------------------------------------------------------- */
.static-page {
    padding-top: 12rem;
    padding-bottom: 8rem;
    min-height: 80vh;
}

.static-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 4rem 3rem;
}

.static-content h1 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--gold);
}

.static-content h2 {
    font-size: 1.35rem;
    margin: 2.5rem 0 1.25rem 0;
    color: var(--text-light);
    border-left: 2px solid var(--gold);
    padding-left: 1rem;
}

.static-content p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.static-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.static-content li {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .static-page {
        padding-top: 8rem;
    }
    .static-content {
        padding: 2.5rem 1.5rem;
    }
    .static-content h1 {
        font-size: 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   Footer & Sticky Bar
   -------------------------------------------------------------------------- */
.site-footer {
    background-color: #03040c;
    border-top: 1px solid var(--border-color);
    padding: 5rem 0 8rem 0; /* Extra bottom padding for mobile bar */
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 0.05em;
    font-family: 'Noto Serif JP', serif;
}

.info-value {
    font-size: 0.85rem;
    color: var(--text-light);
}

.instagram-link {
    text-decoration: underline;
    color: var(--gold-glow);
}

.footer-links .footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links .footer-nav-list a {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links .footer-nav-list a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 4rem auto 0 auto;
    padding: 2rem 1.5rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

/* Floating reservation bar */
.floating-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(4, 6, 16, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color);
    display: none;
    z-index: 90;
    padding: 0.75rem 1rem;
    gap: 0.75rem;
}

.floating-btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .site-footer {
        padding-bottom: 7rem;
    }
    .floating-cta-bar {
        display: flex;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
