/* ==========================================================================
   Geo Resort Kirishima Onsen - 薩摩黒スタイル（Satsuma Black）
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables & Reset
   -------------------------------------------------------------------------- */
:root {
    /* Primary Colors — 薩摩焼の黒をベースに */
    --color-text: #ECE8E3;
    --color-text-light: #B5AFA7;
    --color-text-muted: #857F78;
    --color-accent: #A08B6E;
    --color-bg: #0E0E0C;
    --color-gold: #B09878;
    --color-gold-light: #CEBFA6;
    --color-gold-pale: #DDD0B8;

    /* Secondary Colors */
    --color-bg-warm: #141412;
    --color-bg-dark: #080807;
    --color-bg-cream: #111110;
    --color-bg-card: #1A1918;
    --color-bg-card-hover: #222120;
    --color-cta: #B8956C;
    --color-divider: rgba(255, 255, 255, 0.08);
    --color-divider-subtle: rgba(255, 255, 255, 0.05);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #B89B6E 0%, #8B7355 100%);
    --gradient-dark: linear-gradient(180deg, rgba(14,14,12,0.95) 0%, rgba(20,20,18,0.98) 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    --gradient-luxury: linear-gradient(135deg, #C4B093 0%, #A08B6E 30%, #8B7355 70%, #6B5A45 100%);
    --gradient-surface: linear-gradient(180deg, #1E1D1B 0%, #1A1918 100%);
    --gradient-section-warm: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-cream) 50%, var(--color-bg-warm) 100%);

    /* Typography — 渋い印象の明朝体 */
    --font-jp: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
    --font-en: "Cormorant Garamond", "Times New Roman", serif;

    /* Spacing */
    --section-padding-pc: 160px;
    --section-padding-sp: 110px;
    --container-max: 1280px;
    --container-padding-pc: 60px;
    --container-padding-sp: 24px;

    /* Transitions */
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-luxe: all 1.0s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-reveal: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows — 黒ベースなのでより深い影 */
    --shadow-soft: 0 4px 30px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 10px 50px rgba(0, 0, 0, 0.4);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 40px rgba(160, 139, 110, 0.15);
    --shadow-luxury: 0 4px 16px rgba(0,0,0,0.2), 0 12px 40px rgba(0,0,0,0.15), 0 24px 80px rgba(0,0,0,0.1);
    --shadow-card-hover: 0 8px 24px rgba(0,0,0,0.3), 0 20px 60px rgba(160,139,110,0.08);

    /* Light Theme Colors — 白背景セクション用 */
    --light-bg: #FAFAF8;
    --light-bg-warm: #F5F4F2;
    --light-bg-card: #FFFFFF;
    --light-text: #2D2C2A;
    --light-text-secondary: #5A5855;
    --light-text-muted: #8A8683;
    --light-accent: #8B7355;
    --light-gold: #9A8060;
    --light-divider: rgba(0, 0, 0, 0.08);
    --light-divider-subtle: rgba(0, 0, 0, 0.05);
    --light-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 8px 32px rgba(0, 0, 0, 0.04);
    --light-shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(0, 0, 0, 0.06);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-jp);
    font-weight: 400;
    line-height: 1.8;
    color: var(--color-text);
    background-color: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    font-feature-settings: "palt" 1;
    letter-spacing: 0.02em;
}

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

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

::selection {
    background: rgba(160, 139, 110, 0.3);
    color: #fff;
}

ul, ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
.font-en {
    font-family: var(--font-en);
    font-weight: 400;
    letter-spacing: 0.08em;
}

h1 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.4;
}

h2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0.8em;
}

h3 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 0.6em;
}

p {
    margin-bottom: 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    h1 { font-size: 28px; }
    h2 { font-size: 22px; }
    h3 { font-size: 18px; }
    body { font-size: 15px; }
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-pc);
}

@media (max-width: 767px) {
    .container {
        padding: 0 var(--container-padding-sp);
    }
}

section {
    padding: var(--section-padding-pc) 0;
    overflow: hidden;
}

@media (max-width: 767px) {
    section {
        padding: var(--section-padding-sp) 0;
    }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(14, 14, 12, 0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    transition: var(--transition-slow), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    box-shadow: 0 1px 0 rgba(160,139,110,0.1), 0 4px 24px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(160,139,110,0.1);
    background: rgba(14, 14, 12, 0.97);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding-pc);
}

.logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-main {
    font-family: var(--font-en);
    font-size: 22px;
    letter-spacing: 0.15em;
    color: var(--color-text);
    font-weight: 400;
}

.logo-sub {
    font-size: 10px;
    color: var(--color-accent);
    letter-spacing: 0.15em;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-size: 13px;
    letter-spacing: 0.08em;
    position: relative;
    color: var(--color-text);
    font-weight: 400;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: var(--transition-slow);
    transform: translateX(-50%);
}

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

.btn-reserve {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--color-gold-light);
    padding: 11px 28px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    transition: var(--transition-slow);
    border: 1px solid rgba(160, 139, 110, 0.4);
}

.btn-reserve:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    transform: translateY(-1px);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--color-text);
    transition: var(--transition-base);
}

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

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

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

@media (max-width: 767px) {
    .header-inner {
        height: 60px;
        padding: 0 var(--container-padding-sp);
    }

    .logo-main { font-size: 16px; }
    .logo-sub { font-size: 10px; }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: #111110;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 32px;
        transition: var(--transition-base);
        box-shadow: -4px 0 40px rgba(0, 0, 0, 0.5);
        transform: translateX(100%);
        visibility: hidden;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-menu a {
        font-size: 16px;
    }

    .btn-reserve {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
}

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

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

.hero-bg picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: heroKenBurns 30s ease-in-out infinite;
}

@keyframes heroKenBurns {
    0% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.06) translate(-0.5%, -0.5%); }
    100% { transform: scale(1) translate(0, 0); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 8, 0.25) 0%,
        rgba(10, 10, 8, 0.40) 40%,
        rgba(10, 10, 8, 0.65) 80%,
        rgba(10, 10, 8, 0.80) 100%
    );
    z-index: 2;
}

/* 縦線装飾 */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    width: 1px;
    height: 80%;
    background: linear-gradient(180deg, transparent, rgba(196, 176, 147, 0.1), transparent);
    z-index: 3;
    pointer-events: none;
}

.hero::before { left: 6%; }
.hero::after { right: 6%; }

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: #fff;
    padding: 0 40px;
    max-width: 900px;
}

/* 装飾ライン */
.hero-content::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,176,147,0.25), transparent);
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,176,147,0.25), transparent);
}

.hero-catch {
    font-family: var(--font-jp);
    font-size: 54px;
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.25em;
    margin-bottom: 40px;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3), 0 8px 60px rgba(0, 0, 0, 0.15);
}

.hero-catch span {
    display: block;
    opacity: 0;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-catch span:nth-child(1) { animation-delay: 0.6s; }
.hero-catch span:nth-child(2) { animation-delay: 1.0s; }

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

.hero-sub {
    font-family: var(--font-en);
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.35em;
    margin-bottom: 64px;
    opacity: 0;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.4s forwards;
    color: rgba(255, 255, 255, 0.8);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 64px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 1.7s forwards;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.12em;
    padding: 10px 20px;
    border: 1px solid rgba(196, 176, 147, 0.2);
    border-radius: 2px;
    backdrop-filter: blur(16px);
    background: rgba(14, 14, 12, 0.3);
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-gold-light);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-gold);
    color: #fff;
    padding: 20px 56px;
    border-radius: 2px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.15em;
    transition: var(--transition-elegant);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition-elegant);
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 115, 85, 0.4);
}

.btn-cta svg {
    width: 18px;
    height: 18px;
    transition: var(--transition-base);
}

.btn-cta:hover svg {
    transform: translateX(6px);
}

.hero-scroll {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.3em;
    opacity: 0.6;
}

.hero-scroll::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, #fff, transparent);
    animation: scrollLine 1.5s ease-in-out infinite;
}

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

@media (max-width: 767px) {
    .hero {
        min-height: 100svh;
    }

    .hero-catch {
        font-size: 30px;
        font-weight: 300;
        letter-spacing: 0.15em;
    }

    .hero-sub {
        font-size: 13px;
        letter-spacing: 0.2em;
    }

    .hero-features {
        gap: 10px;
    }

    .hero-feature {
        font-size: 11px;
        padding: 8px 14px;
        border-radius: 2px;
    }

    .btn-cta {
        padding: 16px 36px;
        font-size: 15px;
    }
}

/* --------------------------------------------------------------------------
   Section Headers
   -------------------------------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    overflow: visible;
    padding-bottom: 20px;
}

.section-header-en {
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: 0.4em;
    color: var(--color-gold);
    margin-bottom: 20px;
    display: block;
    text-transform: uppercase;
    font-weight: 300;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 0.15em;
    line-height: 1.6;
}

.section-header h2::before,
.section-header h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.3));
}

.section-header h2::before {
    right: calc(100% + 32px);
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.3));
}

.section-header h2::after {
    left: calc(100% + 32px);
    background: linear-gradient(270deg, transparent, rgba(160, 139, 110, 0.3));
}

/* 装飾ライン */
.section-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--gradient-gold);
}

@media (max-width: 767px) {
    .section-header {
        margin-bottom: 64px;
    }

    .section-header h2 {
        font-size: 24px;
        font-weight: 300;
    }

    .section-header h2::before,
    .section-header h2::after {
        width: 40px;
        background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.25));
    }

    .section-header h2::before {
        right: calc(100% + 16px);
    }

    .section-header h2::after {
        left: calc(100% + 16px);
        background: linear-gradient(270deg, transparent, rgba(160, 139, 110, 0.25));
    }
}

/* --------------------------------------------------------------------------
   Intro Section
   -------------------------------------------------------------------------- */
.intro {
    position: relative;
    padding: 180px 0;
    overflow: hidden;
    background: url('../images/kirishimarenzan.jpeg') center center / cover no-repeat fixed;
}

.intro::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg,
            rgba(14, 14, 12, 0.92) 0%,
            rgba(14, 14, 12, 0.78) 30%,
            rgba(14, 14, 12, 0.75) 50%,
            rgba(14, 14, 12, 0.80) 70%,
            rgba(14, 14, 12, 0.95) 100%
        );
    z-index: 0;
}

.intro > * {
    position: relative;
    z-index: 1;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.2), transparent);
    z-index: 1;
}

.intro-decoration-left,
.intro-decoration-right {
    position: absolute;
    top: 15%;
    width: 1px;
    height: 70%;
    background: linear-gradient(180deg, transparent, rgba(160, 139, 110, 0.06), transparent);
    pointer-events: none;
}

.intro-decoration-left { left: 8%; }
.intro-decoration-right { right: 8%; }

.intro-body {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.intro-vertical-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, rgba(160, 139, 110, 0.4), transparent);
    margin: 0 auto 48px;
}

.intro-text {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.intro-text p {
    font-size: 16px;
    line-height: 2.4;
    color: var(--color-text-light);
    letter-spacing: 0.06em;
    font-weight: 300;
}

.intro-text p + p {
    margin-top: 36px;
}

.intro-lead {
    font-size: 18px !important;
    color: var(--color-gold-light) !important;
    font-weight: 400 !important;
    line-height: 2.2 !important;
    letter-spacing: 0.08em !important;
}

@media (max-width: 767px) {
    .intro {
        padding: 120px 0;
        background-attachment: scroll;
    }

    .intro-decoration-left,
    .intro-decoration-right {
        display: none;
    }

    .intro-vertical-line {
        height: 40px;
        margin-bottom: 36px;
    }

    .intro-text p {
        font-size: 15px;
        line-height: 2.1;
    }

    .intro-lead {
        font-size: 16px !important;
    }

    .intro-text p + p {
        margin-top: 24px;
    }
}

/* --------------------------------------------------------------------------
   Gallery Section
   -------------------------------------------------------------------------- */
.gallery {
    background: var(--light-bg);
    padding: var(--section-padding-pc) 0;
    overflow: hidden;
    position: relative;
}

.gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(160,139,110,0.03) 0%, transparent 70%);
    pointer-events: none;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.25), transparent);
}

.gallery .section-header-en {
    color: var(--light-accent);
}

.gallery .section-header h2 {
    color: var(--light-text);
}

.gallery .section-header h2::before,
.gallery .section-header h2::after {
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.3));
}

.gallery .section-header h2::after {
    background: linear-gradient(270deg, transparent, rgba(139, 115, 85, 0.3));
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, 240px);
    gap: 10px;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    cursor: pointer;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
    opacity: 0;
    transition: var(--transition-base);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: var(--transition-slow);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover::after {
    border-color: rgba(196, 176, 147, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-luxe);
}

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

.gallery-caption {
    z-index: 3;
}

/* Row 1-2: Large left + 4 small right */
.gallery-item:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
}

.gallery-item:nth-child(2) {
    grid-column: 7 / 10;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(4) {
    grid-column: 7 / 10;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(5) {
    grid-column: 10 / 13;
    grid-row: 2 / 3;
}

/* Row 3: 3 medium images */
.gallery-item:nth-child(6) {
    grid-column: 1 / 5;
    grid-row: 3 / 4;
}

.gallery-item:nth-child(7) {
    grid-column: 5 / 9;
    grid-row: 3 / 4;
}

.gallery-item:nth-child(8) {
    grid-column: 9 / 13;
    grid-row: 3 / 4;
}

/* Row 4: 2 wide images */
.gallery-item:nth-child(9) {
    grid-column: 1 / 7;
    grid-row: 4 / 5;
}

.gallery-item:nth-child(10) {
    grid-column: 7 / 13;
    grid-row: 4 / 5;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 24px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition-slow);
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .gallery {
        padding: var(--section-padding-sp) 0;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .gallery-item:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .gallery-item:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .gallery-item:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .gallery-item:nth-child(5) {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .gallery-item:nth-child(6) {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .gallery-item:nth-child(7) {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }

    .gallery-item:nth-child(8) {
        grid-column: 1 / 3;
        grid-row: 5 / 6;
    }

    .gallery-item:nth-child(9) {
        grid-column: 1 / 2;
        grid-row: 6 / 7;
    }

    .gallery-item:nth-child(10) {
        grid-column: 2 / 3;
        grid-row: 6 / 7;
    }

    .gallery-caption {
        opacity: 1;
        transform: translateY(0);
        font-size: 12px;
        padding: 30px 12px 12px;
    }
}

/* --------------------------------------------------------------------------
   Facilities Section
   -------------------------------------------------------------------------- */
.facilities {
    background: var(--light-bg-warm);
    position: relative;
}

.facilities .section-header-en {
    color: var(--light-accent);
}

.facilities .section-header h2 {
    color: var(--light-text);
}

.facilities .section-header h2::before,
.facilities .section-header h2::after {
    background: linear-gradient(90deg, transparent, rgba(139, 115, 85, 0.3));
}

.facilities .section-header h2::after {
    background: linear-gradient(270deg, transparent, rgba(139, 115, 85, 0.3));
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 48px;
}

.facility-block {
    background: var(--light-bg-card);
    padding: 48px 44px;
    border-radius: 3px;
    box-shadow: var(--light-shadow);
    transition: var(--transition-luxe);
    position: relative;
    border: 1px solid var(--light-divider);
}

.facility-block::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 0;
    bottom: 32px;
    width: 2px;
    background: var(--gradient-luxury);
    border-radius: 1px;
}

.facility-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--light-shadow-hover);
    border-color: rgba(139, 115, 85, 0.2);
}

.facility-number {
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-en);
    font-size: 64px;
    font-weight: 300;
    color: rgba(139, 115, 85, 0.08);
    line-height: 1;
    pointer-events: none;
}

.facility-block h3 {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--light-text);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--light-divider);
    letter-spacing: 0.08em;
}

.facility-block h3 svg {
    width: 32px;
    height: 32px;
    stroke: var(--light-gold);
    padding: 6px;
    background: rgba(139, 115, 85, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.facility-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.facility-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    line-height: 1.9;
    color: var(--light-text-secondary);
}

.facility-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    background: var(--light-gold);
    border-radius: 50%;
    margin-top: 10px;
}

@media (max-width: 767px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .facility-block {
        padding: 36px 32px;
    }

    .facility-number {
        font-size: 48px;
    }

    .facility-block h3 {
        font-size: 18px;
    }
}

/* --------------------------------------------------------------------------
   Sightseeing Section
   -------------------------------------------------------------------------- */
.sightseeing {
    background: linear-gradient(180deg, #141412 0%, #111110 50%, #0E0E0C 100%);
    position: relative;
}

.sightseeing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.15), transparent);
}

/* Hero layout for featured spot */
.sightseeing-hero {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-luxury);
}

.sightseeing-hero-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.sightseeing-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.05) 70%, transparent 100%);
    z-index: 1;
}

.sightseeing-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition-elegant);
}

.sightseeing-hero:hover .sightseeing-hero-image img {
    transform: scale(1.05);
}

.sightseeing-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 72px;
    z-index: 2;
    color: #fff;
}

.sightseeing-hero-label {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--color-gold-light);
    margin-bottom: 16px;
    padding: 8px 20px;
    border: 1px solid rgba(196, 176, 147, 0.3);
    border-radius: 1px;
}

.sightseeing-hero-content h3 {
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.1em;
}

.sightseeing-hero-content p {
    font-size: 15px;
    line-height: 2;
    opacity: 0.9;
    max-width: 500px;
}

.sightseeing-hero-content .sightseeing-distance {
    margin-top: 20px;
}

/* Grid for other spots */
.sightseeing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.sightseeing-card {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
    background: var(--gradient-surface);
    box-shadow: var(--shadow-luxury);
    transition: var(--transition-luxe);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.sightseeing-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
    z-index: 10;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-luxe);
}

.sightseeing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
}

.sightseeing-card:hover::before {
    transform: scaleX(1);
}

.sightseeing-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    cursor: pointer;
}

.sightseeing-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: var(--transition-base);
}

.sightseeing-card:hover .sightseeing-image::after {
    opacity: 1;
}

.sightseeing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: var(--transition-elegant);
}

.sightseeing-card:hover .sightseeing-image img {
    transform: scale(1.08);
}

.sightseeing-content {
    padding: 24px 28px;
    position: relative;
}

.sightseeing-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(160, 139, 110, 0.2), transparent);
}

.sightseeing-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--color-text);
    letter-spacing: 0.05em;
}

.sightseeing-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0;
}

.sightseeing-distance {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 300;
    color: var(--color-gold-light);
    margin-top: 14px;
    background: transparent;
    padding: 6px 0;
    border-bottom: 1px solid rgba(160, 139, 110, 0.25);
    letter-spacing: 0.05em;
}

.sightseeing-distance svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-gold);
}

.sightseeing-hero-content .sightseeing-distance {
    color: rgba(255,255,255,0.8);
    border-bottom-color: rgba(196, 176, 147, 0.3);
}

.sightseeing-hero-content .sightseeing-distance svg {
    stroke: var(--color-gold-light);
}

@media (max-width: 1200px) {
    .sightseeing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1023px) {
    .sightseeing-hero-image {
        height: 380px;
    }

    .sightseeing-hero-content {
        padding: 40px;
    }

    .sightseeing-hero-content h3 {
        font-size: 26px;
    }

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

@media (max-width: 767px) {
    .sightseeing-hero-image {
        height: 320px;
    }

    .sightseeing-hero-image::after {
        background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.7) 100%);
    }

    .sightseeing-hero-content {
        padding: 24px;
    }

    .sightseeing-hero-content h3 {
        font-size: 22px;
    }

    .sightseeing-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .sightseeing-hero-label {
        font-size: 10px;
        padding: 4px 12px;
    }

    .sightseeing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sightseeing-content {
        padding: 16px 20px;
    }

    .sightseeing-content h3 {
        font-size: 16px;
    }
}

/* --------------------------------------------------------------------------
   Access Section
   -------------------------------------------------------------------------- */
.access {
    background: var(--color-bg-warm);
    position: relative;
}

.access::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.15), transparent);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.access-address {
    font-size: 18px;
    line-height: 2.0;
    letter-spacing: 0.05em;
    padding-left: 24px;
    border-left: 2px solid rgba(160, 139, 110, 0.3);
}

.access-routes {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.access-route {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--gradient-surface);
    border-radius: 3px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-slow);
}

.access-route:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-card-hover);
}

.access-route svg {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    stroke: var(--color-gold);
    padding: 8px;
    background: rgba(160, 139, 110, 0.08);
    border-radius: 50%;
}

.access-route-text {
    font-size: 15px;
}

.access-route-text strong {
    display: block;
    font-weight: 500;
    margin-bottom: 4px;
    letter-spacing: 0.03em;
}

.access-route-text span {
    color: var(--color-text-light);
    font-size: 14px;
    font-weight: 300;
}

.access-map {
    aspect-ratio: 4 / 3;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.access-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(30%) brightness(0.85);
    transition: filter 0.3s ease;
}

.access-map:hover iframe {
    filter: grayscale(0%) brightness(0.9);
}

@media (max-width: 767px) {
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .access-address {
        font-size: 16px;
    }
}

/* --------------------------------------------------------------------------
   Pricing Section
   -------------------------------------------------------------------------- */
.pricing {
    background: linear-gradient(180deg, #0E0E0C 0%, #141412 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.15), transparent);
}

.pricing-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--color-bg-card);
    border-radius: 4px;
    padding: 48px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.pricing-main {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--color-divider);
}

.pricing-label {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.pricing-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}

.pricing-amount {
    font-family: var(--font-en);
    font-size: 56px;
    color: var(--color-text);
    line-height: 1;
}

.pricing-unit {
    font-size: 18px;
    color: var(--color-text-light);
}

.pricing-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--color-divider);
}

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

.pricing-row-label {
    font-size: 15px;
}

.pricing-row-value {
    font-size: 15px;
    font-weight: 500;
}

.pricing-time {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.pricing-time-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.pricing-time-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--color-accent);
}

@media (max-width: 767px) {
    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-amount {
        font-size: 42px;
    }

    .pricing-time {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
}

/* Season Pricing Table (Top Page) */
.pricing-card-intro {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
    text-align: center;
}

.pricing-season-table {
    width: 100%;
    margin-bottom: 32px;
    border-collapse: collapse;
}

.pricing-season-table th,
.pricing-season-table td {
    padding: 16px 12px;
    border-bottom: 1px solid var(--color-divider);
    text-align: left;
    font-size: 15px;
}

.pricing-season-table th {
    font-weight: 400;
    color: var(--color-text-light);
    width: 50%;
}

.pricing-season-table th span {
    display: block;
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 4px;
}

.pricing-season-table td {
    text-align: right;
    font-weight: 400;
}

.pricing-season-table td strong {
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.pricing-season-table tbody tr:last-child th,
.pricing-season-table tbody tr:last-child td {
    border-bottom: none;
}

.btn-pricing-detail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    margin-bottom: 16px;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 15px;
    border-radius: 8px;
    transition: var(--transition-base);
}

.btn-pricing-detail:hover {
    background: var(--color-accent);
    color: #fff;
}

.btn-pricing-detail svg {
    transition: transform 0.3s ease;
}

.btn-pricing-detail:hover svg {
    transform: translateX(4px);
}

@media (max-width: 767px) {
    .pricing-season-table th,
    .pricing-season-table td {
        padding: 14px 8px;
        font-size: 14px;
    }

    .pricing-season-table td strong {
        font-size: 18px;
    }

    .btn-pricing-detail {
        width: 100%;
        justify-content: center;
    }
}

/* Pricing Layout & Calculator */
.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
}

.pricing-simulator-wrapper {
    display: flex;
    justify-content: center;
}

.pricing-simulator-wrapper .pricing-calculator {
    max-width: 540px;
    width: 100%;
}

.pricing-calculator {
    background: linear-gradient(180deg, #1E1D1B 0%, #1A1918 100%);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 8px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-calculator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.calculator-header {
    padding: 32px 36px 24px;
    background: linear-gradient(180deg, rgba(160, 139, 110, 0.04) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.calculator-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    border: none;
    letter-spacing: 0.08em;
    color: var(--color-text);
}

.calculator-title svg {
    stroke: var(--color-gold);
    flex-shrink: 0;
}

.calculator-title-sub {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-top: 8px;
    padding-left: 36px;
    letter-spacing: 0.02em;
}

.calculator-body {
    padding: 28px 36px 36px;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.calculator-dates {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.calculator-dates .calculator-field {
    margin-bottom: 0;
}

.calculator-field {
    margin-bottom: 24px;
}

.calculator-field:last-child {
    margin-bottom: 0;
}

.calculator-field > label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--color-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.calculator-field > label svg {
    stroke: var(--color-gold);
    width: 14px;
    height: 14px;
}

.calculator-field input[type="date"],
.calculator-field select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: var(--font-jp);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-text);
    transition: all 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.calculator-field input[type="date"]:hover,
.calculator-field select:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.calculator-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 44px;
}

.calculator-field input[type="date"]:focus,
.calculator-field select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

/* Date Input Wrapper with Placeholder */
.date-input-wrapper {
    position: relative;
}

.date-input-wrapper input[type="date"] {
    position: relative;
    z-index: 1;
}

.date-placeholder {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text-muted);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.2s ease;
}

.date-placeholder svg {
    stroke: var(--color-gold);
    flex-shrink: 0;
}

/* Hide placeholder when date is selected */
.date-input-wrapper.has-value .date-placeholder,
.date-input-wrapper input[type="date"]:focus + .date-placeholder {
    opacity: 0;
}

/* Make the date input text transparent when empty (to show placeholder) */
.date-input-wrapper input[type="date"] {
    color: transparent;
}

.date-input-wrapper.has-value input[type="date"],
.date-input-wrapper input[type="date"]:focus {
    color: var(--color-text);
}

/* Mobile-specific: ensure the calendar icon is visible */
@media (max-width: 767px) {
    .date-input-wrapper input[type="date"] {
        min-height: 52px;
    }

    .date-placeholder {
        font-size: 13px;
    }
}

/* Guest Counter */
.guest-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: transparent;
    border: none;
    padding: 8px 0;
}

.guest-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--color-text-muted);
}

.guest-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: scale(1.05);
}

.guest-btn:active {
    transform: scale(0.95);
}

.guest-btn svg {
    stroke: currentColor;
    stroke-width: 2;
    width: 18px;
    height: 18px;
    pointer-events: none;
}

.guest-count {
    display: flex;
    align-items: baseline;
    justify-content: center;
    min-width: 70px;
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
    background: transparent;
    border: none;
}

.guest-count #calc-guests {
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 400;
    margin-right: 4px;
    color: var(--color-text);
    line-height: 1;
}

.guest-btn.disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.guest-btn.disabled:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
    transform: none;
}

.calculator-options {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.calculator-options > label:first-child {
    margin-bottom: 14px;
}

.option-group {
    margin-bottom: 10px;
}

.option-group:last-child {
    margin-bottom: 0;
}

.option-checkbox {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.25s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    position: relative;
}

.option-checkbox:hover {
    border-color: rgba(160, 139, 110, 0.3);
    box-shadow: 0 2px 8px rgba(160, 139, 110, 0.1);
}

.option-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.option-checkbox:has(input:checked),
.option-checkbox.checked {
    background: linear-gradient(135deg, rgba(160, 139, 110, 0.08) 0%, rgba(160, 139, 110, 0.04) 100%);
    border-color: var(--color-gold);
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    position: relative;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.option-checkbox:hover .checkbox-custom {
    border-color: var(--color-gold);
}

.option-checkbox input:checked + .checkbox-custom {
    background: var(--color-gold);
    border-color: var(--color-gold);
}

.option-checkbox input:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--color-text);
}

.checkbox-label small {
    font-size: 12px;
    color: var(--color-gold-light);
    font-weight: 600;
    background: rgba(160, 139, 110, 0.1);
    padding: 3px 10px;
    border-radius: 20px;
}

.option-quantity {
    margin-top: 10px;
    margin-left: 34px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Quantity Counter (Shochu) */
.quantity-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.quantity-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s ease;
    color: var(--color-text-muted);
}

.quantity-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: scale(1.05);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-btn svg {
    stroke: currentColor;
    pointer-events: none;
}

.quantity-count {
    display: flex;
    align-items: baseline;
    justify-content: center;
    min-width: 50px;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.quantity-count #calc-shabu-qty,
.quantity-count #calc-shochu-qty {
    font-family: var(--font-en);
    font-size: 24px;
    font-weight: 400;
    margin-right: 2px;
    color: var(--color-text);
    line-height: 1;
}

.quantity-btn.disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.quantity-btn.disabled:hover {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--color-text-muted);
    transform: none;
}

.calculator-result-wrapper {
    padding: 0 36px 36px;
}

.calculator-result {
    background: linear-gradient(145deg, #0A0A09 0%, #111110 50%, #0A0A09 100%);
    border-radius: 14px;
    padding: 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(160, 139, 110, 0.08);
}

.calculator-result::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, var(--color-gold) 50%, transparent 90%);
}

.calculator-result::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at top right, rgba(139, 115, 85, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.result-inner {
    padding: 24px;
    position: relative;
    z-index: 1;
}

.result-season {
    font-size: 11px;
    color: var(--color-gold-light);
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
}

.result-breakdown {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 20px;
}

.result-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    font-size: 13px;
}

.result-breakdown-item span:first-child {
    display: flex;
    align-items: center;
    gap: 10px;
}

.result-breakdown-item small {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.08);
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.result-breakdown-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.result-breakdown-option {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(184, 160, 112, 0.15);
    color: var(--color-gold-light);
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 18px;
    border-top: 1px solid rgba(184, 160, 112, 0.25);
    margin-top: 4px;
}

.result-total-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.result-total-value {
    font-family: var(--font-en);
    font-size: 32px;
    font-weight: 500;
    color: var(--color-gold-light);
    text-shadow: 0 2px 12px rgba(184, 160, 112, 0.25);
    line-height: 1;
}

.result-total-value small {
    font-family: var(--font-jp);
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    margin-left: 4px;
    vertical-align: baseline;
}

.calculator-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 36px 36px;
}

.calculator-actions .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.calculator-actions .btn-pricing-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    font-size: 13px;
    color: var(--color-text-light);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
}

.calculator-actions .btn-pricing-detail:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #fff;
}

.calculator-actions .btn-pricing-detail svg {
    transition: transform 0.25s ease;
}

.calculator-actions .btn-pricing-detail:hover svg {
    transform: translateX(3px);
}

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

@media (max-width: 767px) {
    .pricing-calculator {
        border-radius: 12px;
    }

    .calculator-header {
        padding: 24px 20px 18px;
    }

    .calculator-body {
        padding: 20px 20px 24px;
    }

    .calculator-title {
        font-size: 15px;
        gap: 10px;
    }

    .calculator-title-sub {
        padding-left: 28px;
        font-size: 11px;
    }

    .calculator-dates {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 20px;
    }

    .calculator-field {
        margin-bottom: 20px;
    }

    .guest-counter {
        gap: 20px;
    }

    .guest-btn {
        width: 40px;
        height: 40px;
    }

    .guest-btn svg {
        width: 16px;
        height: 16px;
    }

    .guest-count {
        min-width: 60px;
    }

    .guest-count #calc-guests {
        font-size: 32px;
    }

    .option-checkbox {
        padding: 14px 16px;
    }

    .calculator-result-wrapper {
        padding: 0 20px 24px;
    }

    .calculator-result {
        border-radius: 12px;
    }

    .result-inner {
        padding: 20px;
    }

    .result-breakdown-item {
        font-size: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .result-breakdown-item span:first-child {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }

    .result-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .result-total-value {
        font-size: 28px;
    }

    .calculator-actions {
        padding: 0 20px 24px;
    }
}

/* --------------------------------------------------------------------------
   CTA Section
   -------------------------------------------------------------------------- */
.cta {
    position: relative;
    padding: 140px 0;
    background: linear-gradient(135deg, #0A0A09 0%, #141412 50%, #0E0E0C 100%);
    text-align: center;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.2), transparent);
}

.cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(160, 139, 110, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content::before {
    content: '';
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.25), transparent);
}

.cta-content::after {
    content: '';
    position: absolute;
    bottom: -48px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.25), transparent);
}

.cta h2 {
    color: #fff;
    font-size: 38px;
    margin-bottom: 24px;
    letter-spacing: 0.2em;
    font-weight: 300;
}

.cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 56px;
    letter-spacing: 0.12em;
}

.cta .btn-cta {
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(160, 139, 110, 0.35);
    box-shadow: none;
    padding: 20px 64px;
    letter-spacing: 0.15em;
}

.cta .btn-cta::before {
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.2), transparent);
}

.cta .btn-cta:hover {
    background: var(--gradient-luxury);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(160, 139, 110, 0.2);
}

@media (max-width: 767px) {
    .cta {
        padding: 100px 0;
    }

    .cta h2 {
        font-size: 26px;
    }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background: linear-gradient(180deg, #0A0A09 0%, #060605 100%);
    color: #fff;
    padding: 120px 0 60px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.15), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 100px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo {
    font-family: var(--font-en);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: var(--color-gold-light);
}

.footer-logo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.2em;
    margin-top: -22px;
}

.footer-address {
    font-size: 14px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
}

.footer-builder {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-builder p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 4px;
}

.footer-builder a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-builder a:hover {
    color: #fff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 10px;
}

.footer-links a {
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-slow);
    letter-spacing: 0.08em;
}

.footer-links a::before {
    content: '';
    width: 8px;
    height: 1px;
    background: rgba(160, 139, 110, 0.3);
    transition: var(--transition-slow);
}

.footer-links a:hover {
    color: var(--color-gold-light);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    width: 16px;
    background: var(--color-gold-light);
}

.footer-links a svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-copyright {
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.15em;
}

@media (max-width: 767px) {
    .footer {
        padding: 60px 0 32px;
    }

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

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: var(--transition-reveal);
}

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

.fade-in-delay-1 { transition-delay: 0.2s; }
.fade-in-delay-2 { transition-delay: 0.4s; }
.fade-in-delay-3 { transition-delay: 0.6s; }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   Image Modal
   -------------------------------------------------------------------------- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 7, 0.95);
    cursor: pointer;
}

.modal-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-image {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    letter-spacing: 0.05em;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2001;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.modal-close svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2001;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.modal-nav svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 0.1em;
}

/* Clickable gallery items */
.gallery-item {
    cursor: pointer;
}

.solution-image {
    cursor: pointer;
}

@media (max-width: 767px) {
    .modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .modal-nav {
        width: 40px;
        height: 40px;
    }

    .modal-prev {
        left: 12px;
    }

    .modal-next {
        right: 12px;
    }

    .modal-caption {
        bottom: -36px;
        font-size: 13px;
    }
}

/* ==========================================================================
   Pricing Page Styles
   ========================================================================== */

/* Page Header */
.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(180deg, #080807 0%, #0E0E0C 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.15), transparent);
}

.page-header::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(160, 139, 110, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.page-header-en {
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.35em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

@media (max-width: 767px) {
    .page-header {
        padding: 130px 0 50px;
    }

    .page-header h1 {
        font-size: 26px;
    }
}

/* Pricing Page Sections */
.pricing-page-section {
    padding: 80px 0;
}

.pricing-page-section:nth-child(even) {
    background: #111110;
}

.pricing-page-section:nth-child(odd) {
    background: #0E0E0C;
}

.pricing-section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 40px;
    padding-bottom: 0;
    padding-left: 16px;
    border-bottom: none;
    border-left: 2px solid var(--color-gold);
    letter-spacing: 0.06em;
}

.pricing-section-title svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent);
}

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

    .pricing-section-title {
        font-size: 20px;
        margin-bottom: 32px;
    }
}

/* Season Table */
.season-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 32px;
}

.season-table th,
.season-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-divider);
}

.season-table th {
    background: rgba(160, 139, 110, 0.06);
    font-weight: 400;
    font-size: 14px;
    color: var(--color-text-light);
}

.season-table td {
    background: rgba(255, 255, 255, 0.02);
    font-size: 15px;
}

.season-table td:last-child {
    font-weight: 500;
    color: var(--color-text);
    text-align: right;
}

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

.season-table .special {
    background: rgba(160, 139, 110, 0.08);
}

.season-table .special td:last-child {
    color: var(--color-cta);
}

/* Season Info */
.season-info {
    background: rgba(255, 255, 255, 0.02);
    padding: 24px 28px;
    border-radius: 4px;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.season-info h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-text);
}

.season-info ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.season-info li {
    font-size: 14px;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.season-info li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* Additional Fee */
.additional-fee {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.02);
    padding: 24px 28px;
    border-radius: 4px;
    border-left: 2px solid var(--color-gold);
}

.additional-fee-label {
    font-size: 15px;
    color: var(--color-text-light);
}

.additional-fee-value {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
}

/* Full Price Table */
.price-table-wrapper {
    overflow-x: auto;
    margin: 0 -20px;
    padding: 0 20px;
}

.price-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    font-size: 14px;
}

.price-table th,
.price-table td {
    padding: 14px 12px;
    text-align: center;
    border: 1px solid var(--color-divider);
}

.price-table thead th {
    background: #1A1918;
    color: var(--color-gold-light);
    font-weight: 500;
    font-size: 13px;
}

.price-table tbody th {
    background: #141412;
    font-weight: 500;
    color: var(--color-text-light);
}

.price-table tbody td {
    background: var(--color-bg-card);
    color: var(--color-text);
}

.price-table tbody tr:hover td {
    background: rgba(160, 139, 110, 0.06);
}

.price-table-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-text-light);
}

.price-table-note p {
    margin-bottom: 4px;
}

/* Option Cards */
.option-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.option-card {
    background: linear-gradient(135deg, #1A1918 0%, #161514 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.option-card-header {
    background: rgba(160, 139, 110, 0.08);
    color: #fff;
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.option-card-header h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0;
}

.option-card-price {
    font-family: var(--font-en);
    font-size: 24px;
}

.option-card-price span {
    font-size: 14px;
    opacity: 0.8;
}

.option-card-body {
    padding: 24px 28px;
}

.option-card-body p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-light);
}

.option-card-note {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px dashed var(--color-divider);
    font-size: 13px;
    color: var(--color-accent);
}

@media (max-width: 767px) {
    .option-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.info-card {
    background: linear-gradient(135deg, #1A1918 0%, #161514 100%);
    border-radius: 4px;
    padding: 36px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-base);
}

.info-card:hover {
    border-color: rgba(160, 139, 110, 0.1);
}

.info-card h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.04em;
}

.info-card h3 svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-accent);
}

.info-table {
    width: 100%;
}

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

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

.info-table th,
.info-table td {
    padding: 12px 0;
    font-size: 15px;
    text-align: left;
}

.info-table th {
    font-weight: 400;
    color: var(--color-text-light);
}

.info-table td {
    font-weight: 500;
    text-align: right;
}

.info-card-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 767px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .info-card {
        padding: 24px;
    }
}

/* Included List */
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 20px;
    border-radius: 4px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.included-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
}

@media (max-width: 1023px) {
    .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

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

.bonus-card {
    background: linear-gradient(135deg, rgba(160, 139, 110, 0.08) 0%, rgba(107, 90, 69, 0.04) 100%);
    color: #fff;
    padding: 28px 32px;
    border-radius: 4px;
    border: 1px solid rgba(160, 139, 110, 0.12);
}

.bonus-card h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
}

.bonus-card p {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .bonus-cards {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   FAQ Page Styles
   ========================================================================== */
.faq-section {
    margin-bottom: 60px;
}

.faq-section:last-child {
    margin-bottom: 0;
}

.faq-section-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 28px;
    padding-bottom: 16px;
    padding-left: 16px;
    border-bottom: none;
    border-left: 2px solid var(--color-gold);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.06em;
}

.faq-section-title svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent);
}

.faq-item {
    background: linear-gradient(135deg, #1A1918 0%, #161514 100%);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: rgba(160, 139, 110, 0.1);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    background: rgba(160, 139, 110, 0.04);
}

.faq-question-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(160, 139, 110, 0.12);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 400;
    font-family: var(--font-en);
}

.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    padding-top: 2px;
}

.faq-toggle {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    margin-top: 2px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    transition: var(--transition-base);
}

.faq-toggle::before {
    width: 12px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    display: none;
    padding: 0 24px 24px 68px;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text-light);
}

.faq-answer ul {
    margin-top: 12px;
}

.faq-answer li {
    font-size: 14px;
    color: var(--color-text-light);
    padding-left: 16px;
    position: relative;
    margin-bottom: 8px;
}

.faq-answer li::before {
    content: '・';
    position: absolute;
    left: 0;
}

@media (max-width: 767px) {
    .faq-question {
        padding: 16px 20px;
        gap: 12px;
    }

    .faq-question-text {
        font-size: 15px;
    }

    .faq-answer {
        padding: 0 20px 20px 52px;
    }
}

/* ==========================================================================
   Access Page Styles
   ========================================================================== */
.access-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.access-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.access-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 8, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-hero-content {
    text-align: center;
    color: #fff;
}

.access-hero-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.access-hero-address {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .access-hero {
        height: 300px;
    }

    .access-hero-content h1 {
        font-size: 28px;
    }
}

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

.access-table th,
.access-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-divider);
}

.access-table th {
    font-weight: 400;
    color: var(--color-text-light);
    width: 40%;
}

.access-table td {
    font-weight: 500;
}

.access-map-large {
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.access-map-large iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

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

.spot-card {
    background: linear-gradient(135deg, #1A1918 0%, #161514 100%);
    border-radius: 4px;
    padding: 24px;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.spot-card h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spot-card h4 span {
    font-size: 13px;
    color: var(--color-gold-light);
    font-weight: 400;
}

.spot-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.shop-list {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    padding: 28px 32px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.shop-category {
    margin-bottom: 24px;
}

.shop-category:last-child {
    margin-bottom: 0;
}

.shop-category h4 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--color-accent);
}

.shop-category li {
    font-size: 15px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--color-divider);
}

.shop-category li:last-child {
    border-bottom: none;
}

.shop-note {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--color-divider);
    font-size: 13px;
    color: var(--color-text-light);
}

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

    .access-map-large {
        height: 300px;
    }
}

/* Spot Cards with Images */
.spot-grid-with-image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.spot-card-with-image {
    background: linear-gradient(135deg, #1A1918 0%, #161514 100%);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.spot-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.spot-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.4s ease;
}

/* 霧島神宮の写真は中央を表示 */
.spot-card-with-image:first-child .spot-card-image img {
    object-position: center center;
}

.spot-card-with-image:hover .spot-card-image img {
    transform: scale(1.05);
}

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

.spot-card-body h4 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spot-card-body h4 span {
    font-size: 12px;
    font-weight: 400;
    color: var(--color-gold-light);
    background: rgba(160, 139, 110, 0.1);
    padding: 4px 10px;
    border-radius: 2px;
}

.spot-card-body p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

@media (max-width: 767px) {
    .spot-grid-with-image {
        grid-template-columns: 1fr;
    }

    .spot-card-image {
        height: 160px;
    }
}

/* ==========================================================================
   How To Spend (過ごし方) Page Styles
   ========================================================================== */
.howto-intro {
    font-size: 17px;
    line-height: 2.2;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 72px;
    letter-spacing: 0.08em;
}

/* Day Cards */
.schedule-day {
    margin-bottom: 24px;
    position: relative;
}

.schedule-day-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 36px;
    cursor: pointer;
    transition: var(--transition-slow);
    position: relative;
    background: linear-gradient(135deg, #1A1918 0%, #161514 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    overflow: hidden;
}

.schedule-day-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-luxury);
}

.schedule-day-header:hover {
    background: linear-gradient(135deg, #1E1D1B 0%, #1A1918 100%);
    border-color: rgba(160, 139, 110, 0.12);
}

.schedule-day.active .schedule-day-header {
    border-color: rgba(160, 139, 110, 0.15);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.schedule-day-number {
    font-family: var(--font-en);
    font-size: 42px;
    font-weight: 300;
    color: rgba(160, 139, 110, 0.25);
    line-height: 1;
    letter-spacing: -0.02em;
    min-width: 56px;
}

.schedule-day-title {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.1em;
}

.schedule-day-sub {
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 0.06em;
    margin-left: auto;
    margin-right: 48px;
}

.schedule-day-toggle {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border: 1px solid rgba(160, 139, 110, 0.2);
    border-radius: 50%;
    transition: var(--transition-base);
}

.schedule-day-header:hover .schedule-day-toggle {
    border-color: rgba(160, 139, 110, 0.4);
}

.schedule-day-toggle::before,
.schedule-day-toggle::after {
    content: '';
    position: absolute;
    background: var(--color-gold);
    transition: var(--transition-base);
}

.schedule-day-toggle::before {
    width: 12px;
    height: 1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.schedule-day-toggle::after {
    width: 1px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.schedule-day.active .schedule-day-toggle {
    background: rgba(160, 139, 110, 0.1);
    border-color: var(--color-gold);
}

.schedule-day.active .schedule-day-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

/* Drawer Content */
.schedule-day-content {
    display: none;
    background: linear-gradient(180deg, #141312 0%, #111110 100%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-top: none;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.schedule-day-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 36px;
    right: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(160, 139, 110, 0.1), transparent);
}

.schedule-day.active .schedule-day-content {
    display: block;
}

/* Timeline */
.schedule-timeline {
    position: relative;
    padding: 40px 40px 40px 140px;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 116px;
    top: 48px;
    bottom: 48px;
    width: 1px;
    background: linear-gradient(180deg, var(--color-gold), rgba(160, 139, 110, 0.08));
}

.schedule-item {
    position: relative;
    padding-bottom: 40px;
    padding-left: 32px;
}

.schedule-item:last-child,
.schedule-item-last {
    padding-bottom: 0;
}

/* Timeline dot */
.schedule-item::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-gold);
    box-shadow: 0 0 0 4px #141312, 0 0 0 5px rgba(160, 139, 110, 0.2);
    z-index: 1;
}

.schedule-time {
    position: absolute;
    left: -100px;
    top: 0;
    width: 64px;
    text-align: right;
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 400;
    color: var(--color-gold);
    letter-spacing: 0.04em;
    line-height: 1.5;
}

.schedule-body h3 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    color: var(--color-text);
}

.schedule-body p {
    font-size: 15px;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 12px;
}

.schedule-body p:last-child {
    margin-bottom: 0;
}

.schedule-note {
    font-size: 13px !important;
    color: var(--color-text-muted) !important;
}

/* Schedule table (access info) */
.schedule-table {
    width: 100%;
    max-width: 400px;
    border-collapse: collapse;
    margin: 16px 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    overflow: hidden;
}

.schedule-table th,
.schedule-table td {
    padding: 12px 16px;
    font-size: 14px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.schedule-table th {
    font-weight: 400;
    color: var(--color-text-muted);
    width: 55%;
}

.schedule-table td {
    font-weight: 500;
    color: var(--color-text);
}

.schedule-table tr:last-child th,
.schedule-table tr:last-child td {
    border-bottom: none;
}

/* Schedule link */
.schedule-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-gold-light);
    margin-top: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(160, 139, 110, 0.2);
    transition: var(--transition-base);
    letter-spacing: 0.04em;
}

.schedule-link:hover {
    color: var(--color-gold-pale);
    border-bottom-color: var(--color-gold-pale);
}

.schedule-link svg {
    transition: transform 0.3s ease;
}

.schedule-link:hover svg {
    transform: translateX(4px);
}

/* Mobile */
@media (max-width: 767px) {
    .howto-intro {
        font-size: 15px;
        margin-bottom: 48px;
    }

    .schedule-day-header {
        padding: 24px 20px;
        gap: 14px;
    }

    .schedule-day-number {
        font-size: 32px;
        min-width: 44px;
    }

    .schedule-day-title {
        font-size: 18px;
    }

    .schedule-day-sub {
        display: none;
    }

    .schedule-day-toggle {
        right: 20px;
        width: 28px;
        height: 28px;
    }

    .schedule-timeline {
        padding: 28px 20px 28px 20px;
    }

    .schedule-timeline::before {
        left: 23px;
        top: 36px;
        bottom: 36px;
    }

    .schedule-item {
        padding-left: 36px;
        padding-bottom: 32px;
    }

    .schedule-item::before {
        left: 0;
        top: 4px;
        width: 6px;
        height: 6px;
        box-shadow: 0 0 0 3px #141312, 0 0 0 4px rgba(160, 139, 110, 0.2);
    }

    .schedule-time {
        position: static;
        width: auto;
        text-align: left;
        font-size: 13px;
        margin-bottom: 4px;
    }

    .schedule-body h3 {
        font-size: 16px;
    }

    .schedule-body p {
        font-size: 14px;
    }

    .schedule-table {
        max-width: 100%;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* ==========================================================================
   Legal Page Styles
   ========================================================================== */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-left: 16px;
    border-left: 2px solid var(--color-gold);
    border-bottom: none;
    letter-spacing: 0.06em;
    color: var(--color-text);
}

.legal-section p {
    font-size: 15px;
    line-height: 2;
    color: var(--color-text-light);
}

.legal-section ul {
    margin-top: 12px;
}

.legal-section li {
    font-size: 15px;
    color: var(--color-text-light);
    padding: 10px 0 10px 24px;
    position: relative;
    line-height: 1.8;
}

.legal-section li::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 18px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
    border-radius: 4px;
    overflow: hidden;
}

.legal-table th,
.legal-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 14px;
}

.legal-table th {
    background: rgba(160, 139, 110, 0.06);
    font-weight: 400;
    width: 35%;
    color: var(--color-text-light);
    border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.legal-table td {
    background: rgba(255, 255, 255, 0.02);
    color: var(--color-text);
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-date {
    text-align: right;
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 40px;
}

/* ==========================================================================
   Pricing Calculator Animations
   ========================================================================== */
@keyframes priceUpdate {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.result-total-value.updating {
    animation: priceUpdate 0.3s ease;
}

.calculator-result.loading .result-total-value span {
    background: linear-gradient(90deg, var(--color-gold-light) 0%, #fff 50%, var(--color-gold-light) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 1.5s infinite;
}

/* Calculator hover enhancement */
.pricing-calculator:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 16px 56px rgba(0, 0, 0, 0.25);
}

/* Result section glow effect when price is calculated */
.calculator-result.calculated {
    box-shadow: 0 0 30px rgba(160, 139, 110, 0.08);
}

/* Focus ring enhancement */
.calculator-field input[type="date"]:focus-visible,
.calculator-field select:focus-visible,
.guest-btn:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* ============================================
   Facility note (light section / readable)
   ============================================ */
.facility-note {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.7;
    color: #6B665F;
}

/* ============================================
   Homepage content sections (prompt.md enrichment)
   ============================================ */
.content-section {
    padding: var(--section-padding-pc) 0;
    position: relative;
    background: var(--color-bg);
}
.content-section--warm {
    background: var(--color-bg-warm);
}

/* この宿の特別な体験 / ゴルファーのための過ごし方 */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.experience-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.experience-card {
    background: linear-gradient(135deg, #1A1918 0%, #161514 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 40px 36px;
    transition: border-color 0.4s ease, transform 0.4s ease;
}
.experience-card:hover {
    border-color: rgba(160, 139, 110, 0.35);
    transform: translateY(-4px);
}
.experience-card .experience-label {
    display: block;
    font-family: var(--font-en);
    font-size: 13px;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 14px;
}
.experience-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.5;
}
.experience-card h3 svg {
    flex-shrink: 0;
    stroke: var(--color-accent);
}
.experience-card p {
    font-size: 15px;
    line-height: 1.95;
    color: var(--color-text-light);
}

/* こんな方におすすめ */
.persona-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.persona-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding: 20px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text-light);
}
.persona-item svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    margin-top: 3px;
}

/* オーナーからひとこと */
.owner-message {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}
.owner-message p {
    font-size: 16px;
    line-height: 2.1;
    color: var(--color-text-light);
    margin-bottom: 22px;
}
.owner-message .owner-lang {
    margin-top: 28px;
    font-size: 13px;
    line-height: 1.8;
    color: var(--color-text-muted);
}
.owner-message .owner-sign {
    margin-top: 24px;
    font-family: var(--font-en);
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}

@media (max-width: 767px) {
    .content-section {
        padding: 80px 0;
    }
    .experience-grid,
    .experience-grid--3,
    .persona-grid {
        grid-template-columns: 1fr;
    }
    .experience-card {
        padding: 32px 28px;
    }
}
