@charset "UTF-8";

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #1a1a1a;
            --secondary-color: #c9a961;
            --accent-gold: #d4af37;
            --text-light: #ffffff;
            --text-dark: #333333;
            --gray: #666666;
            --light-bg: #f8f8f8;
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            line-height: 1.8;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .serif {
            font-family: 'Playfair Display', 'Cormorant Garamond', serif;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .hero-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: zoomIn 20s ease-in-out infinite alternate;
        }

        @keyframes zoomIn {
            from {
                transform: scale(1);
            }
            to {
                transform: scale(1.1);
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: var(--text-light);
            text-align: center;
            padding: 2rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            animation: fadeInDown 1s ease-out;
        }

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

        .hero-title {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

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

        .hero-subtitle {
            font-size: clamp(1rem, 2vw, 1.5rem);
            font-weight: 300;
            letter-spacing: 0.1em;
            margin-bottom: 3rem;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        .scroll-indicator::after {
            content: '';
            display: block;
            width: 1px;
            height: 50px;
            background: linear-gradient(180deg, var(--text-light) 0%, transparent 100%);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section */
        section {
            padding: 8rem 0;
        }

        section.animate-section {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        section.animate-section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-label {
            display: inline-block;
            font-size: 0.875rem;
            letter-spacing: 3px;
            color: var(--secondary-color);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
            line-height: 2;
        }

        /* Rating Section */
        .rating-section {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 4rem 0;
        }

        .rating-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            text-align: center;
        }

        @media (max-width: 768px) {
            .rating-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .rating-item-number {
                font-size: 2.5rem;
            }

            .rating-item-label {
                font-size: 0.75rem;
            }
        }

        .rating-item-number {
            font-size: 3.5rem;
            font-weight: 300;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .rating-item-label {
            font-size: 0.875rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            opacity: 0.8;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 1rem;
            letter-spacing: 0.05em;
        }

        .feature-description {
            color: var(--gray);
            line-height: 1.8;
        }

        /* Gallery Section */
        .gallery-section {
            background: var(--light-bg);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }


        /* Image Slider */
        .slider-section {
            padding: 0;
            margin: 4rem 0;
            overflow: hidden;
            position: relative;
            cursor: grab;
            user-select: none;
            height: 300px;
        }

        .slider-section:active {
            cursor: grabbing;
        }

        .slider-container {
            display: flex;
            flex-wrap: nowrap;
            will-change: transform;
            height: 100%;
            transition: none;
        }

        .slider-image {
            min-width: 400px;
            height: 300px;
            object-fit: cover;
            margin-right: 2rem;
            border-radius: 8px;
            pointer-events: none;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .slider-section {
                height: 250px;
                margin: 2rem 0;
            }

            .slider-image {
                min-width: 300px;
                height: 250px;
            }
        }

        /* Full Width Image Section */
        .full-width-image {
            width: 100%;
            height: 70vh;
            object-fit: cover;
        }

        .image-section-with-text {
            position: relative;
            height: 70vh;
            margin: 6rem 0;
        }

        .image-section-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            top: 0;
            left: 0;
        }

        .image-section-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.15) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            text-align: center;
            padding: 2rem;
        }

        .image-section-text {
            max-width: 800px;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(2px);
            padding: 3rem 2rem;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.2);
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }

        .image-section-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 400;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .image-section-text .section-description {
            text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
        }

        .image-section-text .section-label {
            text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
        }

        @media (max-width: 768px) {
            .image-section-text {
                padding: 2rem 1.5rem;
            }
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            aspect-ratio: 4/3;
            cursor: pointer;
        }

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

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

        .gallery-item-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%);
            color: var(--text-light);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-item-overlay {
            transform: translateY(0);
        }

        /* Amenities */
        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .amenity-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background: white;
            border-radius: 8px;
            transition: box-shadow 0.3s ease;
        }

        .amenity-item:hover {
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .amenity-icon {
            font-size: 1.5rem;
            color: var(--secondary-color);
            flex-shrink: 0;
        }

        .amenity-text {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* Location */
        .location-section {
            background: var(--primary-color);
            color: var(--text-light);
        }

        .location-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .location-item {
            padding: 2rem;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            backdrop-filter: blur(10px);
        }

        .location-place {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--accent-gold);
        }

        .location-distance {
            font-size: 0.875rem;
            opacity: 0.8;
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .review-card {
            padding: 2.5rem;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .review-stars {
            color: var(--accent-gold);
            font-size: 1.25rem;
            margin-bottom: 1rem;
        }

        .review-text {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .review-author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 500;
        }

        .review-author-info {
            flex: 1;
        }

        .review-author-name {
            font-weight: 500;
            margin-bottom: 0.25rem;
        }

        .review-author-date {
            font-size: 0.875rem;
            color: var(--gray);
        }

        /* Booking Section */
        .booking-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
            color: var(--text-light);
            padding: 8rem 0;
        }

        .booking-container {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .booking-form {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(20px);
            padding: 4rem;
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-label {
            display: block;
            font-size: 0.875rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 1rem;
            color: var(--accent-gold);
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 1.25rem;
            font-size: 1rem;
            font-family: 'Noto Sans JP', sans-serif;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 8px;
            color: var(--text-light);
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--accent-gold);
            background: rgba(255,255,255,0.15);
        }

        .form-input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

        .btn-primary {
            width: 100%;
            padding: 1.5rem;
            font-size: 1rem;
            font-weight: 500;
            letter-spacing: 2px;
            text-transform: uppercase;
            background: var(--accent-gold);
            color: var(--primary-color);
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .btn-primary:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(212,175,55,0.3);
        }

        /* Calendar Styles */
        .calendar-container {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .calendar-nav-btn {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--text-light);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .calendar-nav-btn:hover {
            background: var(--accent-gold);
            color: var(--primary-color);
        }

        .calendar-month {
            font-size: 1.25rem;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 0.5rem;
        }

        .calendar-day-header {
            text-align: center;
            font-size: 0.875rem;
            font-weight: 500;
            padding: 0.75rem;
            color: var(--accent-gold);
            letter-spacing: 1px;
        }

        .calendar-day {
            aspect-ratio: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
            cursor: pointer;
            transition: all 0.3s ease;
            background: rgba(255,255,255,0.05);
            font-weight: 500;
        }

        .calendar-day:hover:not(.disabled):not(.empty) {
            background: rgba(212,175,55,0.3);
            border-color: var(--accent-gold);
            transform: scale(1.05);
        }

        .calendar-day.disabled {
            background: rgba(255,255,255,0.02);
            color: rgba(255,255,255,0.3);
            cursor: not-allowed;
            text-decoration: line-through;
        }

        .calendar-day.empty {
            background: transparent;
            border: none;
            cursor: default;
        }

        .calendar-day.selected {
            background: var(--accent-gold);
            color: var(--primary-color);
            border-color: var(--accent-gold);
            font-weight: 700;
        }

        .calendar-day.in-range {
            background: rgba(212,175,55,0.2);
            border-color: var(--accent-gold);
        }

        .calendar-day.today {
            border: 2px solid var(--accent-gold);
        }

        .calendar-legend {
            display: flex;
            gap: 2rem;
            margin-top: 1.5rem;
            font-size: 0.875rem;
            flex-wrap: wrap;
        }

        .calendar-legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .calendar-legend-box {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .selected-dates {
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(212,175,55,0.1);
            border-radius: 8px;
            border: 1px solid var(--accent-gold);
        }

        .selected-dates-text {
            font-size: 0.875rem;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .selected-dates-value {
            font-size: 1.125rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .reset-dates-btn {
            width: 100%;
            padding: 0.75rem 1.5rem;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.3);
            color: var(--text-light);
            border-radius: 8px;
            cursor: pointer;
            font-size: 0.875rem;
            font-weight: 500;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            font-family: 'Noto Sans JP', sans-serif;
        }

        .reset-dates-btn:hover {
            background: rgba(255,255,255,0.2);
            border-color: var(--accent-gold);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .calendar-container {
                padding: 1.5rem;
            }

            .calendar-grid {
                gap: 0.25rem;
            }

            .calendar-day {
                font-size: 0.875rem;
            }

            .calendar-day-header {
                font-size: 0.75rem;
                padding: 0.5rem;
            }

            .calendar-legend {
                gap: 1rem;
                font-size: 0.75rem;
            }
        }

        /* Footer */
        .footer {
            background: #0a0a0a;
            color: var(--text-light);
            padding: 4rem 0 2rem;
            text-align: center;
        }

        .footer-content {
            margin-bottom: 2rem;
        }

        .footer-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--accent-gold);
        }

        .footer-text {
            font-size: 0.875rem;
            opacity: 0.7;
            line-height: 1.8;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.875rem;
            opacity: 0.5;
        }

        /* Responsive */
        @media (max-width: 768px) {
            section {
                padding: 3rem 0;
            }

            .gallery-section {
                padding: 2rem 0 !important;
            }

            .hero-title {
                font-size: 2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-header {
                margin-bottom: 1.5rem;
            }

            .features-grid,
            .gallery-grid,
            .amenities-grid,
            .location-grid,
            .reviews-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .features-grid {
                margin-top: 2rem;
            }

            .gallery-grid {
                margin-top: 1.5rem;
            }

            .amenities-grid {
                margin-top: 2rem;
            }

            .location-grid {
                margin-top: 2rem;
            }

            .reviews-grid {
                margin-top: 2rem;
            }

            .booking-form {
                padding: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .image-section-with-text {
                height: 50vh;
                margin: 3rem 0;
            }

            .gallery-item {
                aspect-ratio: 3/2;
            }
        }

        /* Smooth scroll */
        html {
            scroll-behavior: smooth;
        }

        /* Floating Booking Button */
        .floating-booking-btn {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 1000;
            padding: 1.25rem 2rem;
            background: var(--accent-gold);
            color: var(--primary-color);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            box-shadow: 0 10px 40px rgba(212,175,55,0.4);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            animation: fadeInFloat 1s ease-out 1s both;
        }

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

        .floating-booking-btn:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(212,175,55,0.5);
        }

        .floating-booking-btn::before {
            content: '📅';
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .floating-booking-btn {
                bottom: 1rem;
                right: 1rem;
                padding: 1rem 1.5rem;
                font-size: 0.9rem;
            }
        }