/* ============================================
   仙豆のちから × Dr.Reset 三鷹店
   Main Stylesheet
   ============================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

/* ---- CSS Variables ---- */
:root {
    --deep-blue: #0a1628;
    --mid-blue: #0d2044;
    --teal: #1a6b8a;
    --teal-light: #2596be;
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --white: #ffffff;
    --off-white: #f0f4f8;
    --text-main: #e8f0fe;
    --text-muted: #8eb0cc;
    --border: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-hover: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 20px rgba(201, 168, 76, 0.3);
    --font-jp: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-en: 'Playfair Display', serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--deep-blue);
    color: var(--text-main);
    font-family: var(--font-jp);
    font-weight: 300;
    line-height: 1.8;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ---- Utility Classes ---- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 90px 0;
}

.section-alt {
    background: var(--mid-blue);
}

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

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

.section-title {
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading .section-title {
    color: var(--white);
}

.section-heading p {
    margin-top: 16px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--teal), var(--gold));
    margin: 16px auto 0;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 3px;
    font-family: var(--font-jp);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--deep-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 44px;
    font-size: 1rem;
}

/* ---- Navigation ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    transition: padding var(--transition);
}

.nav.scrolled .nav-inner {
    padding: 14px 40px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-images {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2px;
    height: 32px;
}

.nav-logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-png {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.nav-logo-cross {
    color: var(--white);
    font-size: 1rem;
    font-weight: 300;
}

.nav-logo-sub {
    font-size: 0.65rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

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

.nav-reserve {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--deep-blue) !important;
    padding: 9px 20px;
    border-radius: 3px;
    font-weight: 500;
    font-size: 0.82rem !important;
}

.nav-reserve:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.nav-reserve::after {
    display: none;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Hero Section ---- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 60%, rgba(26, 107, 138, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(37, 150, 190, 0.2) 0%, transparent 50%),
        linear-gradient(160deg, #0a1628 0%, #061020 50%, #0d2044 100%);
}

.hero-bg-img,
.hero-overlay {
    display: none;
}

/* Animated water ripple effect */
.hero-ripple {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200'%3E%3Cpath fill='rgba(10,22,40,0.8)' d='M0,80 C360,160 720,0 1080,80 C1260,120 1380,60 1440,80 L1440,200 L0,200 Z'/%3E%3C/svg%3E") center/cover no-repeat;
    animation: wave 6s ease-in-out infinite alternate;
}

@keyframes wave {
    0% {
        transform: scaleX(1) translateY(0);
    }

    100% {
        transform: scaleX(1.02) translateY(-10px);
    }
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.6), transparent);
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-20px) scale(1);
        opacity: 0;
    }
}

.hero-container {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-container {
        flex-direction: row-reverse;
        justify-content: space-between;
        gap: 40px;
        padding: 160px 0 100px;
    }
}

.hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: relative;
}

.hero-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    box-shadow: inset 0 0 40px rgba(10, 22, 40, 0.3);
    pointer-events: none;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: scale(1.03);
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold-light);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    border-radius: 2px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse-gold 2s ease-in-out infinite;
}

@keyframes pulse-gold {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-jp);
    /* Adjust max font size to fit "ウォーターベッドマッサージ" inside the container on PC */
    font-size: clamp(1.2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 8px;
    white-space: nowrap;
}

.hero-title-en {
    font-family: var(--font-en);
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 28px;
    display: block;
    letter-spacing: 0.05em;
}

.hero-desc {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    max-width: 800px;
    margin-bottom: 40px;
    word-break: auto-phrase;
    /* Better wrapping for Japanese text if supported */
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.hero-tag {
    background: rgba(26, 107, 138, 0.3);
    border: 1px solid rgba(37, 150, 190, 0.4);
    color: var(--teal-light);
    font-size: 0.78rem;
    padding: 5px 14px;
    border-radius: 20px;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 2;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.8), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ---- Features Section ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--teal), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover {
    background: var(--glass-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(37, 150, 190, 0.3);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(26, 107, 138, 0.3), rgba(37, 150, 190, 0.15));
    border: 1px solid rgba(37, 150, 190, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    transition: all var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(26, 107, 138, 0.5), rgba(37, 150, 190, 0.3));
    box-shadow: 0 0 30px rgba(37, 150, 190, 0.3);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

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

/* ---- Concept Section ---- */
.concept {
    padding: 100px 0;
    position: relative;
}

.concept-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.concept-images {
    position: relative;
    height: 500px;
}

.concept-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 80%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.concept-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: var(--shadow);
    border: 3px solid var(--deep-blue);
}

.concept-img-accent {
    position: absolute;
    top: 30%;
    right: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 107, 138, 0.4), transparent);
    filter: blur(20px);
    pointer-events: none;
}

.concept-text {}

.concept-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}

.concept-title {
    font-family: var(--font-jp);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 24px;
}

.concept-title em {
    font-style: normal;
    color: var(--gold-light);
}

.concept-body {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 2;
    margin-bottom: 32px;
}

.concept-stats {
    display: flex;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-value {
    font-family: var(--font-en);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
    letter-spacing: 0.08em;
}

/* ---- Menu Section ---- */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 168, 76, 0.2);
}

.menu-card-header {
    background: linear-gradient(135deg, rgba(26, 107, 138, 0.4), rgba(10, 22, 40, 0.6));
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.menu-card-name {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
}

.menu-card-body {
    padding: 20px 24px 24px;
}

.menu-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.menu-card-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.menu-price {
    font-family: var(--font-en);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.menu-price span {
    font-family: var(--font-jp);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-muted);
    display: block;
    margin-top: 4px;
}

.menu-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: 20px;
}

.menu-note {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.menu-note a {
    color: var(--gold);
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
    padding-bottom: 1px;
}

.menu-note a:hover {
    border-bottom-color: var(--gold);
}

/* ---- Experience / Gallery Section ---- */
.gallery {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 12px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

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

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

.gallery-item:first-child {
    grid-row: 1 / 3;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

.gallery-label {
    font-size: 0.8rem;
    color: var(--white);
    letter-spacing: 0.08em;
}

/* ---- Reviews Section ---- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 32px;
    transition: all var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    background: var(--glass-hover);
}

.review-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 16px;
    letter-spacing: 3px;
}

.review-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 20px;
}

.review-text::before {
    content: '"';
    font-family: var(--font-en);
    font-size: 2rem;
    color: var(--teal);
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 4px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--deep-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    flex-shrink: 0;
}

.review-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

.review-source {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* ---- Access Section ---- */
.access {
    background: var(--mid-blue);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .access-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }
}

.access-info {}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.info-item {
    display: flex;
    gap: 16px;
}

.info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(26, 107, 138, 0.2);
    border: 1px solid rgba(37, 150, 190, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    color: var(--teal-light);
}

.info-label {
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.92rem;
    color: var(--text-main);
    line-height: 1.7;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 24px;
    font-size: 0.85rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-day {
    color: var(--text-muted);
}

.hours-time {
    color: var(--text-main);
}

.access-map {
    border-radius: 4px;
    overflow: hidden;
    height: 360px;
    border: 1px solid var(--border);
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(20%) contrast(1.1);
}

/* ---- CTA Section ---- */
.cta {
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(26, 107, 138, 0.3) 0%, transparent 60%),
        linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.05), transparent);
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-jp);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Footer ---- */
.footer {
    background: #060f1c;
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
    font-family: var(--font-jp);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-logo-sub {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.footer-brand-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 280px;
}

.footer-links-title {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 5px 0;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---- Floating Reserve Button (Mobile) ---- */
.float-reserve {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--deep-blue);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 30px;
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.4);
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.float-reserve:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
}

/* ---- Fade-in Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

.fade-in-delay-5 {
    transition-delay: 0.5s;
}

/* ---- Blog Page ---- */
.blog-hero {
    padding: 160px 0 80px;
    background: var(--mid-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(26, 107, 138, 0.2) 0%, transparent 70%);
}

.blog-hero .section-title {
    position: relative;
    z-index: 1;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
    justify-content: center;
}

.filter-btn {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-jp);
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, rgba(26, 107, 138, 0.4), rgba(37, 150, 190, 0.2));
    border-color: var(--teal);
    color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(37, 150, 190, 0.3);
}

.blog-card-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--mid-blue), rgba(26, 107, 138, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 20px;
}

.blog-card-cat {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-light);
    font-weight: 500;
    margin-bottom: 8px;
}

.blog-card-title {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 10px;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    border: 1px solid var(--border);
    background: var(--glass);
    color: var(--text-muted);
    font-family: var(--font-jp);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover,
.page-btn.active {
    background: linear-gradient(135deg, var(--teal), rgba(37, 150, 190, 0.5));
    border-color: var(--teal);
    color: var(--white);
}

/* ---- Article Page ---- */
.article-hero {
    padding: 140px 0 60px;
    background: var(--mid-blue);
    position: relative;
}

.article-breadcrumb {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-breadcrumb a {
    color: var(--text-muted);
}

.article-breadcrumb a:hover {
    color: var(--gold);
}

.article-breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

.article-cat-badge {
    display: inline-block;
    background: rgba(26, 107, 138, 0.3);
    border: 1px solid rgba(37, 150, 190, 0.4);
    color: var(--teal-light);
    font-size: 0.72rem;
    padding: 4px 12px;
    border-radius: 3px;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.article-title {
    font-family: var(--font-jp);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.article-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 24px;
}

.article-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 48px 0 16px;
    padding-left: 16px;
    border-left: 3px solid var(--teal);
}

.article-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--gold-light);
    margin: 32px 0 12px;
}

.article-content p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 2;
    margin-bottom: 20px;
}

.article-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.article-content ul li {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    padding-left: 20px;
    margin-bottom: 8px;
    position: relative;
}

.article-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--teal-light);
}

.article-content .highlight-box {
    background: rgba(26, 107, 138, 0.15);
    border: 1px solid rgba(37, 150, 190, 0.3);
    border-radius: 4px;
    padding: 24px 28px;
    margin: 32px 0;
}

.article-content .highlight-box p {
    margin-bottom: 0;
}

.related-posts {
    border-top: 1px solid var(--border);
    padding: 60px 0;
}

/* ---- Other Pages (Menu, About) ---- */
.page-hero {
    padding: 140px 0 80px;
    background: var(--mid-blue);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(26, 107, 138, 0.2) 0%, transparent 70%);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .concept-images {
        height: 300px;
    }

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

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

    .access-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .gallery-item:first-child {
        grid-row: auto;
    }

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

@media (max-width: 640px) {
    .section {
        padding: 60px 0;
    }

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 100vh;
        background: rgba(10, 22, 40, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 999;
    }

    /* Override .nav.scrolled background on the inner elements when menu is open */
    .nav.scrolled .nav-links.open {
        background: rgba(10, 22, 40, 0.98);
        top: 0;
        padding-top: 80px;
    }

    .nav-links.open {
        display: flex;
    }

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

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1000;
    }

    .hero-content {
        padding: 100px 24px 60px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .float-reserve {
        display: block;
    }

    .concept-stats {
        gap: 20px;
    }

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

/* ---- Scrollbar Styling ---- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--deep-blue);
}

::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ============================================
   Blog Pages
   ============================================ */

/* Blog hero (listing page) */
.blog-hero {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(160deg, #0a1628 0%, #061020 60%, #0d2044 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 70%, rgba(26, 107, 138, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

/* Blog Filters */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 36px;
}

.filter-btn {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 18px;
    border-radius: 20px;
    font-family: var(--font-jp);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.04em;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    border-color: transparent;
    color: var(--white);
    transform: translateY(-1px);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Blog Card */
.blog-card {
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(201, 168, 76, 0.2);
}

.blog-card-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card-body {
    padding: 18px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-card-cat {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--teal-light);
    text-transform: uppercase;
    font-weight: 500;
}

.blog-card-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.55;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.page-btn {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    border-radius: 3px;
    font-family: var(--font-jp);
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition);
}

.page-btn:hover,
.page-btn.active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

/* ---- Article Pages ---- */
.article-hero {
    padding: 130px 0 60px;
    background: linear-gradient(160deg, #0a1628 0%, #061020 60%, #0d2044 100%);
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(26, 107, 138, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.article-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.article-breadcrumb a {
    color: var(--text-muted);
}

.article-breadcrumb a:hover {
    color: var(--gold);
}

.article-cat-badge {
    display: inline-block;
    background: rgba(26, 107, 138, 0.25);
    border: 1px solid rgba(37, 150, 190, 0.35);
    color: var(--teal-light);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-title {
    font-family: var(--font-jp);
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.78rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

/* Article body */
.article-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.article-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin: 48px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.article-content h2::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--teal), var(--gold));
}

.article-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal-light);
    margin: 32px 0 12px;
}

.article-content p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 2;
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    list-style: disc;
    padding-left: 22px;
    margin-bottom: 20px;
}

.article-content li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    padding: 3px 0;
}

/* Highlight box */
.highlight-box {
    background: rgba(26, 107, 138, 0.12);
    border: 1px solid rgba(37, 150, 190, 0.25);
    border-left: 3px solid var(--teal);
    border-radius: 4px;
    padding: 20px 24px;
    margin: 28px 0;
}

.highlight-box p {
    margin-bottom: 0;
}

/* Related posts section */
.related-posts {
    background: var(--mid-blue);
}

/* Responsive blog */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-filters {
        gap: 7px;
    }

    .filter-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .article-content {
        padding: 40px 16px 60px;
    }

    .article-title {
        font-size: 1.3rem;
    }
}