/* ========================================
   遊月 - Yugetsu Custom Design System
   和モダン × プレミアムデザイン
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&family=Noto+Sans+JP:wght@300;400;500;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ── CSS Variables ── */
:root {
    --primary: #2C4A3E;
    /* 深緑 */
    --primary-light: #3D6B5A;
    --accent: #C8A96E;
    /* 金 */
    --accent-light: #E2C98A;
    --bg-dark: #1A2820;
    --bg-cream: #FAF7F2;
    --bg-white: #FFFFFF;
    --text-dark: #1C2B25;
    --text-gray: #5A6B63;
    --text-light: #8A9B93;
    --border: rgba(200, 169, 110, 0.3);
    --shadow-sm: 0 2px 12px rgba(28, 43, 37, 0.08);
    --shadow-md: 0 8px 32px rgba(28, 43, 37, 0.12);
    --shadow-lg: 0 20px 60px rgba(28, 43, 37, 0.18);
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--bg-cream);
    line-height: 1.8;
    overflow-x: hidden;
}

/* ── Typography ── */
h1,
h2,
h3,
h4 {
    font-family: 'Noto Serif JP', 'Hiragino Mincho ProN', serif;
    font-weight: 500;
    line-height: 1.4;
}

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

a:hover {
    color: var(--accent);
}

/* ── Site Wrapper ── */
.site-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ════════════════════════════════════════
   HEADER & NAVIGATION
════════════════════════════════════════ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background var(--transition), box-shadow var(--transition);
    padding: 0;
}

.site-header.transparent {
    background: transparent;
}

.site-header.scrolled {
    background: rgba(26, 40, 32, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

/* Logo */
.site-logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.1em;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-en {
    font-family: 'Playfair Display', serif;
    font-size: 0.7rem;
    color: var(--accent-light);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Main Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 4px;
    transition: color var(--transition);
}

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

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

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

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
}

.lang-btn {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.lang-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.lang-btn.active {
    color: var(--bg-dark);
    border-color: var(--accent);
    background: var(--accent);
    box-shadow: 0 0 15px rgba(200, 169, 110, 0.4);
}

/* Book Button */
.btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--accent);
    color: var(--bg-dark) !important;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn-book:hover {
    background: var(--accent-light);
    color: var(--bg-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 169, 110, 0.4);
}

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

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

/* ════════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    transform: scale(1.05);
    animation-name: zoomSlide;
    animation-duration: 8s;
    animation-timing-function: ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

@keyframes zoomSlide {
    0% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1.0);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 40, 32, 0.65) 0%,
            rgba(26, 40, 32, 0.35) 60%,
            rgba(26, 40, 32, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 24px;
    max-width: 900px;
    animation: fadeInUp 1.2s ease 0.3s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.hero-tag {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid var(--accent);
    color: var(--accent-light);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 28px;
    font-family: 'Playfair Display', serif;
}

.hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 48px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--accent);
    color: var(--bg-dark);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    transition: all var(--transition);
    border: 2px solid var(--accent);
}

.btn-primary-hero:hover {
    background: var(--accent-light);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 169, 110, 0.5);
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: transparent;
    color: #fff;
    font-weight: 400;
    font-size: 0.95rem;
    border-radius: 100px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.8);
    color: #fff;
    transform: translateY(-2px);
}

/* Hero Slider Dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    border: none;
    transition: all var(--transition);
}

.hero-dot.active {
    background: var(--accent);
    width: 28px;
    border-radius: 4px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.scroll-indicator::after {
    content: '';
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ════════════════════════════════════════
   SECTION BASE
════════════════════════════════════════ */

section {
    padding: 100px 0;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.section-desc {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ════════════════════════════════════════
   INTRO / ABOUT SECTION
════════════════════════════════════════ */

.intro-section {
    background: var(--bg-white);
    padding: 100px 0;
}

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

.intro-image-wrap {
    position: relative;
}

.intro-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.intro-img-accent {
    position: absolute;
    width: 50%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 6px solid #fff;
    box-shadow: var(--shadow-md);
    bottom: -30px;
    right: -30px;
}

.intro-badge {
    position: absolute;
    top: 24px;
    left: -20px;
    background: var(--primary);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.intro-badge-num {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
    line-height: 1;
}

.intro-badge-text {
    font-size: 0.7rem;
    color: var(--accent-light);
    letter-spacing: 0.1em;
    display: block;
}

.intro-content {
    padding-right: 20px;
}

.intro-content .section-tag {
    display: block;
    text-align: left;
}

.intro-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text-dark);
    margin: 12px 0 24px;
    line-height: 1.4;
}

.intro-text {
    color: var(--text-gray);
    line-height: 2;
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.intro-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--accent);
    font-size: 0.85rem;
    color: var(--text-gray);
}

.highlight-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ════════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════ */

.features-section {
    background: var(--bg-cream);
    padding: 100px 0;
}

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

.feature-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 48px 36px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(200, 169, 110, 0.15);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

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

.feature-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(44, 74, 62, 0.25);
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-text {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.9;
}

/* ════════════════════════════════════════
   GALLERY SECTION
════════════════════════════════════════ */

.gallery-section {
    background: var(--bg-dark);
    padding: 100px 0;
}

.gallery-section .section-title,
.gallery-section .section-tag {
    color: #fff;
}

.gallery-section .section-desc {
    color: rgba(255, 255, 255, 0.6);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
}

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

.gallery-img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.gallery-item:first-child .gallery-img {
    min-height: 400px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 40, 32, 0.6);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

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

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

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

/* ════════════════════════════════════════
   AMENITIES SECTION
════════════════════════════════════════ */

.amenities-section {
    background: var(--bg-white);
    padding: 100px 0;
}

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

.amenity-group {
    padding: 28px 24px;
    border-radius: var(--radius-md);
    background: var(--bg-cream);
    border: 1px solid rgba(200, 169, 110, 0.2);
}

.amenity-group-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.amenity-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.amenity-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.amenity-list li::before {
    content: '✓';
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

/* ════════════════════════════════════════
   INFO CARDS
════════════════════════════════════════ */

.info-section {
    background: var(--bg-cream);
    padding: 100px 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.info-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
}

.info-card-icon {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.info-card-label {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.info-card-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Noto Serif JP', serif;
}

/* ════════════════════════════════════════
   ACCESS SECTION
════════════════════════════════════════ */

.access-section {
    background: var(--bg-white);
    padding: 100px 0;
}

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

.access-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.access-map iframe {
    width: 100%;
    height: 380px;
    border: none;
    display: block;
}

.access-info h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.access-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.access-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-cream);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--accent);
}

.access-item-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.access-item-title {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.access-item-desc {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ════════════════════════════════════════
   SIGHTSEEING SECTION
════════════════════════════════════════ */

.sightseeing-section {
    background: var(--bg-cream);
    padding: 100px 0;
}

.sightseeing-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.sight-tab {
    padding: 10px 24px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-gray);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition);
    font-family: 'Noto Sans JP', sans-serif;
}

.sight-tab.active,
.sight-tab:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

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

.sight-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

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

.sight-card-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.sight-card-icon {
    font-size: 2rem;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sight-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.sight-time-badge {
    display: inline-block;
    padding: 2px 10px;
    background: var(--accent);
    color: var(--bg-dark);
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.05em;
}

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

.sight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sight-list li {
    font-size: 0.85rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sight-list li::before {
    content: '→';
    color: var(--accent);
    flex-shrink: 0;
}

/* ════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════ */

.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '遊月';
    position: absolute;
    font-family: 'Noto Serif JP', serif;
    font-size: 20rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    letter-spacing: -0.1em;
}

.cta-tag {
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 20px;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 2;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */

.site-footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

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

.footer-brand .logo-jp {
    font-size: 2rem;
    display: block;
    margin-bottom: 4px;
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.9;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-address {
    margin-top: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.8;
}

.footer-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.78rem;
    transition: color var(--transition);
}

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

/* ════════════════════════════════════════
   INNER PAGE HERO
════════════════════════════════════════ */

.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
    text-align: center;
    color: #fff;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    letter-spacing: 0.1em;
}

/* Breadcrumb */
.breadcrumb-wrap {
    padding: 16px 0;
    background: var(--bg-white);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 0.82rem;
    color: var(--text-light);
    background: none;
    padding: 0;
    margin: 0;
}

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

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

.breadcrumb .sep {
    color: var(--border);
}

.breadcrumb .current {
    color: var(--text-dark);
}

/* ════════════════════════════════════════
   CONTENT PAGE LAYOUT
════════════════════════════════════════ */

.content-wrap {
    padding: 80px 0;
    background: var(--bg-cream);
}

.content-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 56px 64px;
    box-shadow: var(--shadow-sm);
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(200, 169, 110, 0.2);
}

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

.content-section-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-left: 16px;
    border-left: 3px solid var(--accent);
}

.content-section p {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 2;
    margin-bottom: 12px;
}

.content-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.content-section ul li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-gray);
    padding: 8px 12px;
    background: var(--bg-cream);
    border-radius: var(--radius-sm);
}

.content-section ul li::before {
    content: '✦';
    color: var(--accent);
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Guide specific */
.guide-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.guide-stat {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-md);
    color: #fff;
}

.guide-stat-value {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    display: block;
}

.guide-stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.1em;
}

/* ════════════════════════════════════════
   GALLERY PAGE
════════════════════════════════════════ */

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-page-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-page-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 40, 32, 0.5);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2.5rem;
}

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

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

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--radius-md);
    object-fit: contain;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
}

/* ════════════════════════════════════════
   MAP PAGE (ACCESS)
════════════════════════════════════════ */

.access-full-map {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 48px;
}

.access-full-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ════════════════════════════════════════
   SCROLL TO TOP
════════════════════════════════════════ */

.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
}

.scroll-top:hover {
    transform: translateY(-4px);
    background: var(--accent-light);
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

@media (max-width: 1024px) {
    .header-inner {
        padding: 16px 30px;
    }

    .main-nav {
        gap: 20px;
    }

    .nav-links {
        gap: 24px;
    }

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

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

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

    .footer-grid>*:first-child {
        grid-column: 1 / -1;
    }

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

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

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

@media (max-width: 768px) {
    .header-inner {
        padding: 10px 16px;
    }

    .main-nav {
        gap: 8px;
    }

    .site-logo {
        white-space: nowrap;
    }

    .logo-jp {
        font-size: 1.3rem;
    }

    .logo-en {
        font-size: 0.55rem;
        letter-spacing: 0.1em;
        margin-top: 0;
    }

    .lang-label {
        display: none !important;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 0.7rem;
        border-width: 1px;
    }

    .main-nav .nav-links,
    .main-nav .btn-book {
        display: none;
    }

    .menu-toggle {
        display: flex;
        padding: 8px 4px;
        margin-left: 12px;
        z-index: 1100;
        position: relative;
    }

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

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

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

    /* Header adjustment when menu is open */
    .site-header:has(.main-nav.open) {
        background: var(--bg-dark) !important;
        backdrop-filter: none !important;
    }

    .main-nav.open {
        position: fixed;
        inset: 0 !important;
        background: #1A2820 !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        z-index: 2000;
        padding: 100px 16px 60px !important;
        overflow-y: auto;
    }

    /* Keep toggle button at top right of the screen */
    .main-nav.open .menu-toggle {
        position: fixed;
        top: 10px;
        right: 16px;
        z-index: 2101;
        margin: 0;
    }

    .main-nav.open .lang-switcher {
        display: none !important;
    }

    .main-nav.open .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 32px !important;
        padding: 0 !important;
        list-style: none;
        width: 100%;
        position: static !important;
    }

    .main-nav.open .nav-links a {
        font-size: 1.4rem;
        font-family: 'Noto Serif JP', serif;
        font-weight: 500;
        color: #fff !important;
        text-decoration: none;
        padding: 8px 0;
    }

    .main-nav.open .btn-book {
        display: inline-flex !important;
        position: relative !important;
        margin: 0 auto !important;
        width: auto !important;
        min-width: 280px;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        z-index: 2001;
    }

    .menu-toggle {
        display: flex;
        padding: 8px 4px;
        margin-left: 12px;
        z-index: 2100;
        position: relative;
    }

    .intro-grid,
    .access-grid {
        grid-template-columns: 1fr;
    }

    .intro-img-accent {
        display: none;
    }

    .intro-badge {
        display: none;
    }

    .intro-content {
        padding-right: 0;
    }

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

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

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

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

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

    .content-card {
        padding: 32px 24px;
    }

    .container-wide {
        padding: 0 20px;
    }

    section {
        padding: 64px 0;
    }

    .intro-highlights {
        grid-template-columns: 1fr;
    }

    .guide-overview {
        grid-template-columns: 1fr;
    }

    .content-section ul {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .gallery-page-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-actions {
        flex-direction: column;
        padding: 0 16px;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        justify-content: center;
    }
}

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}