:root {
    /* Colors */
    --primary-color: #EDA184;
    /* Warm Orange */
    --primary-dark: #D4886A;
    --secondary-color: #F2D06B;
    /* Sunny Yellow */
    --text-color: #4A4A4A;
    /* Dark Gray */
    --text-light: #7A7A7A;
    --bg-color: #FAFAFA;
    /* Off-white */
    --white: #FFFFFF;
    --accent-color: #88C9A1;
    /* Fresh Green */
    --border-color: #E0E0E0;

    /* Fonts */
    --font-main: 'Kiwi Maru', serif;
    --font-sans: 'M PLUS Rounded 1c', sans-serif;

    /* Spacing */
    --container-width: 1000px;
    --header-height: 70px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.05em;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(237, 161, 132, 0.4);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--text-color);
    color: var(--text-color);
    padding: 10px 24px;
}

.btn-outline:hover {
    background-color: var(--text-color);
    color: var(--white);
}

.btn-line {
    background-color: #06C755;
    color: var(--white);
    border: none;
}

.btn-line:hover {
    background-color: #05a546;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.logo-sub {
    font-size: 0.8rem;
    margin-left: 5px;
    font-family: var(--font-sans);
    color: var(--text-light);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 400;
}

.nav-list .btn-nav {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: 700;
}

.nav-list .btn-nav:hover {
    background-color: #E5C058;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    z-index: 999;
    padding-top: 80px;
    transition: 0.4s;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul li {
    padding: 15px 30px;
    border-bottom: 1px solid var(--bg-color);
}

.mobile-menu ul li a {
    display: block;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    /* Placeholder Gradient */
    /* background-image: url('../images/hero-bg.jpg'); */
    background-size: cover;
    background-position: center;
    margin-top: var(--header-height);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Section Common */
.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
    position: relative;
}

.section-title {
    font-family: var(--font-sans);
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    opacity: 0.3;
    letter-spacing: 0.05em;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;
}

.section-jp-title {
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
    display: inline-block;
}

.section-jp-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 10px auto 0;
}

/* About */
.about-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1/1;
    background-color: #EEE;
    overflow: hidden;
    border-radius: 10px;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eedccb;
    color: var(--text-light);
    font-weight: 700;
    font-family: var(--font-sans);
}

/* Plan */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s;
    border: 1px solid var(--bg-color);
}

.plan-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 1;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-family: var(--font-sans);
    font-size: 0.9rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.plan-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    font-family: var(--font-sans);
    margin-bottom: 25px;
}

.plan-price .currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.plan-price .tax {
    font-size: 0.8rem;
    font-weight: 400;
}

.plan-features ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-color);
}

.plan-features ul li::before {
    content: '✔';
    color: var(--primary-color);
    margin-right: 8px;
}

.plan-note {
    background-color: #FFF8E1;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #6D6D6D;
}

/* Staff */
.staff-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.staff-card {
    text-align: center;
    width: 180px;
}

.staff-img-box {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    overflow: hidden;
    background-color: #EEE;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.staff-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #D3E0EA;
    color: var(--text-light);
    font-weight: 700;
}

.staff-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.staff-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Contact */
.contact-box {
    background-color: #F8F4F0;
    padding: 60px 20px;
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: var(--font-sans);
}

.contact-text {
    margin-bottom: 30px;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #DDD;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

/* Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --container-width: 100%;
        --header-height: 60px;
    }

    .logo a {
        font-size: 1.3rem;
    }

    .nav-list {
        display: none;
        /* Hide Desktop Nav */
    }

    .hamburger {
        display: block;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 40px;
    }

    .sp-only {
        display: block;
    }

    .plan-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .plan-card.featured {
        transform: none;
    }

    .plan-card.featured:hover {
        transform: translateY(-5px);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   Reservation Page Styles
   ========================================= */

.reservation-page {
    background-color: #FDF9F6;
}

.reservation-header {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: none;
    border-bottom: 1px solid #EEE;
}

.btn-close-reservation {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.reservation-main {
    padding: 100px 0 60px;
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.03);
}

/* Steps Indicator */
.steps-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #EEE;
    z-index: 0;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: var(--white);
    padding: 0 10px;
}

.step-num {
    width: 32px;
    height: 32px;
    background-color: #EEE;
    color: #AAA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px;
    font-weight: 700;
    font-family: var(--font-sans);
    transition: 0.3s;
}

.step-text {
    font-size: 0.8rem;
    color: #AAA;
    font-weight: 500;
}

.step.active .step-num {
    background-color: var(--primary-color);
    color: var(--white);
}

.step.active .step-text {
    color: var(--primary-color);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

/* Plan Selection */
.plan-selection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.plan-option input {
    display: none;
}

.plan-option-card {
    border: 2px solid #EEE;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s;
    height: 100%;
    position: relative;
}

.plan-option-card:hover {
    border-color: #DDD;
    background-color: #FAFAFA;
}

.plan-option input:checked+.plan-option-card {
    border-color: var(--primary-color);
    background-color: #FFF5F0;
    box-shadow: 0 5px 15px rgba(237, 161, 132, 0.2);
}

.badge {
    font-size: 0.7rem;
    background-color: #EEE;
    padding: 2px 6px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 5px;
    color: #777;
}

.rec-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--secondary-color);
    color: var(--white);
    font-size: 0.75rem;
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 700;
}

.plan-name {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.plan-cost {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-sans);
}

/* Calendar */
.calendar-wrapper {
    max-width: 400px;
    margin: 0 auto 30px;
    border: 1px solid #EEE;
    border-radius: 15px;
    padding: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 5px 10px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    text-align: center;
}

.cal-day-header {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cal-day {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.2s;
}

.cal-day:hover:not(.disabled) {
    background-color: #F0F0F0;
}

.cal-day.selected {
    background-color: var(--primary-color);
    color: var(--white);
}

.cal-day.disabled {
    color: #CCC;
    cursor: not-allowed;
}

.cal-day.has-slots::after {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    bottom: 2px;
    font-size: 1.2rem;
    line-height: 0;
}

.cal-day.selected.has-slots::after {
    color: var(--white);
}

/* Time Slots */
.time-slots {
    text-align: center;
    margin-bottom: 30px;
    animation: fadeIn 0.3s;
}

.time-slots h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.slots-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.time-slot-btn {
    border: 1px solid #DDD;
    background-color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: 0.2s;
}

.time-slot-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.time-slot-btn.selected {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Form Groups */
.form-group-container {
    max-width: 500px;
    margin: 0 auto 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.required {
    color: #FF6B6B;
    font-size: 0.7rem;
    background-color: #FFF0F0;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #DDD;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(237, 161, 132, 0.1);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

/* Form Nav */
.form-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* Complete */
.complete-icon {
    font-size: 4rem;
    color: #06C755;
    /* Success Green */
    margin-bottom: 20px;
}

/* Responsive Reservation */
@media (max-width: 768px) {
    .reservation-main {
        padding-top: 80px;
    }

    .reservation-container {
        padding: 30px 20px;
    }

    .plan-selection-grid {
        grid-template-columns: 1fr;
    }

    .plan-option-card {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .plan-option-card h3 {
        margin-bottom: 0;
        font-size: 1rem;
    }

    .plan-desc {
        font-size: 0.75rem;
        margin-bottom: 0;
    }

    .rec-badge {
        left: 20px;
        transform: none;
        top: -10px;
    }

    .calendar-grid {
        /* Ensure touch targets are big enough */
        gap: 2px;
    }

    .cal-day {
        font-size: 0.8rem;
    }
}

/* Hero Image Update */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.3);
}

/* Gallery Image Update */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Confirmation Step Styles */
.confirm-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.confirm-table th,
.confirm-table td {
    padding: 15px;
    border-bottom: 1px solid #EEE;
    text-align: left;
}

.confirm-table th {
    width: 30%;
    color: var(--text-light);
    font-weight: 500;
}

.confirm-table td {
    font-weight: 700;
}

/* Coupon Input Styling */
.coupon-input-group {
    display: flex;
    gap: 10px;
}

.coupon-input-group input {
    flex: 1;
}

.coupon-msg {
    font-size: 0.9rem;
    margin-top: 5px;
    height: 1.2em;
    /* Prevent layout jump */
}

.coupon-msg.success {
    color: #4CAF50;
}

.coupon-msg.error {
    color: #F44336;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}