:root {
    /* Color Palette */
    --c-bg-dark: #111315;
    --c-bg-light: #1a1d21;
    --c-text-main: #e2e4e6;
    --c-text-muted: #9aa0a6;
    --c-accent: #c5a059; /* 真鍮・ゴールド系の色 */
    --c-accent-hover: #e0bc75;
    --c-navy: #182233; /* 杉能舎の法被などを想起させる深い藍色 */
    
    /* Typography */
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Zen Kaku Gothic New', sans-serif;
    
    /* Transitions */
    --ease-out: cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
    background-color: var(--c-bg-dark);
    color: var(--c-text-main);
    font-family: var(--font-serif);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

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

.section-en {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--c-accent);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-jp {
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.section-desc {
    margin-top: 15px;
    color: var(--c-text-muted);
    font-family: var(--font-sans);
}

/* プレースホルダー用スタイル */
.placeholder-img {
    background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 5%;
    transition: background-color 0.3s, padding 0.3s;
}

.header.scrolled {
    background-color: rgba(17, 19, 21, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-img {
    height: 50px;
    width: auto;
    filter: invert(1) brightness(2); /* 黒を白に変換 */
    display: block;
}

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

.nav a:not(.btn-nav) {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
}

.nav a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--c-accent);
    transition: width 0.3s var(--ease-out);
}

.nav a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    border: 1px solid var(--c-accent);
    padding: 10px 25px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    color: var(--c-accent);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--c-accent);
    color: var(--c-bg-dark);
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--c-bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 99;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-link {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
    font-family: var(--font-sans);
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: #000;
    overflow: hidden;
}

.video-placeholder-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6; /* 動画を少し暗くして文字を読みやすくする */
}

.placeholder-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-family: var(--font-sans);
    padding: 20px;
    background: radial-gradient(circle, rgba(24,34,51,0.5) 0%, rgba(17,19,21,1) 100%);
}

.hero-content {
    max-width: 1000px;
    padding: 0 20px;
}

.hero-subtitle {
    font-family: var(--font-sans);
    color: var(--c-accent);
    letter-spacing: 0.3em;
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(1.3rem, 3.5vw, 3.2rem);
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: 0.1em;
    margin-bottom: 40px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title .line {
    display: inline-block;
    white-space: nowrap;
}

.hero-text {
    font-family: var(--font-serif);
    font-weight: 300;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 2.2;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-indicator span {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--c-text-muted);
    text-transform: uppercase;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--c-accent);
    animation: scrollLine 2s infinite cubic-bezier(0.645, 0.045, 0.355, 1);
}

@keyframes scrollLine {
    0% { transform: translateY(-100%); }
    50% { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* Concept Section */
.concept-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
    align-items: center;
}

.concept-image-group {
    position: relative;
    height: 500px;
    width: 100%;
}

.concept-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 70%;
    z-index: 1;
}

.concept-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    z-index: 2;
    box-shadow: -10px -10px 30px rgba(0,0,0,0.5);
    border: 5px solid var(--c-bg-dark);
}

.concept-main-text h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    color: var(--c-accent);
}

.concept-main-text p {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--c-text-muted);
    font-size: 1.05rem;
    line-height: 2.2;
    margin-bottom: 25px;
    text-align: justify;
}

@media (max-width: 992px) {
    .concept-layout {
        grid-template-columns: 1fr;
    }
    .concept-main-img {
        height: 350px;
    }
}

/* Highlights Section */
.highlights-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.highlight-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-card.reverse {
    direction: rtl;
}

.highlight-card.reverse > * {
    direction: ltr;
}

.highlight-content {
    padding: 20px 0;
}

.highlight-number {
    font-family: var(--font-sans);
    font-size: 3rem;
    color: rgba(197, 160, 89, 0.2);
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

.highlight-content h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.highlight-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--c-accent);
    margin-bottom: 5px;
    letter-spacing: 0.15em;
    font-weight: 500;
    font-family: var(--font-sans);
}

.highlight-content p {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--c-text-muted);
}

.highlight-content .highlight-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 15px;
    line-height: 1.6;
}

.highlight-img {
    height: 400px;
    width: 100%;
}

/* Schedule Section */
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-bottom: 50px;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -34px;
    width: 9px;
    height: 9px;
    background-color: var(--c-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.5);
}

.time {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--c-accent);
    margin-bottom: 10px;
    line-height: 1;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.timeline-content p {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--c-text-muted);
    font-size: 0.95rem;
}

/* Booking Section */
.booking-card {
    background-color: var(--c-bg-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.booking-card h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    letter-spacing: 0.1em;
}

.booking-info {
    margin-bottom: 40px;
    text-align: left;
}

.booking-info dl {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.booking-info dt {
    font-weight: 600;
    color: var(--c-accent);
}

.booking-info dd {
    font-family: var(--font-sans);
    font-weight: 300;
    margin-bottom: 20px;
}

.booking-info dd strong {
    font-size: 1.4rem;
    color: #fff;
    font-weight: 500;
}

.booking-info .note {
    font-size: 0.85rem;
    color: var(--c-text-muted);
    display: block;
    margin-top: 5px;
}

.disclaimer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 25px;
    text-align: left;
    margin-bottom: 40px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

.disclaimer p {
    margin-bottom: 10px;
    color: #fff;
}

.disclaimer ul {
    padding-left: 20px;
}

.disclaimer li {
    margin-bottom: 5px;
}

.booking-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.btn-primary {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    background-color: var(--c-accent);
    color: var(--c-bg-dark);
    font-family: var(--font-sans);
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 18px 40px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 0;
    text-align: center;
}

.btn-primary:hover {
    background-color: var(--c-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.sub-link a {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--c-text-muted);
    text-decoration: underline;
}

.sub-link a:hover {
    color: #fff;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-logo a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo .logo-img {
    height: 60px; /* フッターは少し大きめに */
    opacity: 0.8;
}

.footer-address {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--c-text-muted);
    margin: 20px 0;
}

.copyright {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 1s var(--ease-out);
}

.fade-in.appear {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Responsive */
@media (max-width: 992px) {
    .highlight-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .highlight-card.reverse {
        direction: ltr;
    }
    
    .highlight-img {
        height: 300px;
        order: -1; /* 画像を上に */
    }
}

@media (max-width: 768px) {
    /* スマホ版：タイトル → 動画 → 説明文 のサンドイッチレイアウト */
    .hero {
        height: auto;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background-color: var(--c-bg-dark);
        padding-top: 90px; /* 固定ヘッダーの重なりを避けるための余白 */
        padding-bottom: 40px;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 0; /* 動画を横幅いっぱいにするためコンテナの余白を消す */
    }

    /* 上の黒帯部分（タイトル） */
    .hero-subtitle {
        margin-bottom: 15px;
        text-align: center;
        padding: 0 20px;
    }

    .hero-title {
        margin-bottom: 30px;
        text-align: center;
        padding: 0 20px;
        font-size: 1.5rem; /* スマホ向けにサイズを微調整 */
    }

    /* 真ん中の動画エリア */
    .hero-bg {
        position: relative; /* absoluteから通常フローに変更 */
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9; /* 動画本来の比率を保ち見切れをなくす */
        z-index: 1;
        margin-bottom: 30px; /* 下の説明文との間隔 */
    }

    .hero-video {
        object-fit: cover; 
        object-position: center; 
        opacity: 1; /* 動画を本来の明るさで表示 */
    }

    .placeholder-overlay {
        display: none; /* 暗くするフィルターをオフに */
    }

    /* 下の黒帯部分（説明文） */
    .hero-text {
        text-align: center;
        padding: 0 20px;
    }

    .scroll-indicator {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 40px auto 0;
    }

    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .booking-card {
        padding: 30px 20px;
    }
    
    .booking-info dl {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .booking-info dt {
        margin-top: 15px;
    }
}

/* FAQ Modal Styles */
.btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--c-accent);
    border: 1px solid var(--c-accent);
    text-decoration: none;
    font-family: var(--font-serif);
    font-size: 1rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    margin: 0;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.btn-secondary:hover {
    background-color: rgba(197, 160, 89, 0.1);
}

.faq-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease-out);
}

.faq-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.faq-content {
    background-color: var(--c-bg-dark);
    border: 1px solid rgba(197, 160, 89, 0.3);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s var(--ease-out);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.faq-modal-overlay.active .faq-content {
    transform: translateY(0);
}

.faq-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-close:hover {
    color: var(--c-accent);
}

.faq-title {
    font-size: 1.5rem;
    color: var(--c-accent);
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.1em;
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-q {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.5;
}

.faq-a {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 0.95rem;
    color: var(--c-text-muted);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .faq-content {
        padding: 30px 20px;
    }
}
/* Booking Modal Styles */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-content {
    background-color: var(--c-bg-dark);
    border: 1px solid rgba(197, 160, 89, 0.4);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    padding: 40px 50px;
    position: relative;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.4s var(--ease-out);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border-radius: 4px;
}

.booking-modal-overlay.active .booking-content {
    transform: translateY(0);
}

.booking-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--c-text-muted);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.booking-close:hover {
    color: var(--c-accent);
}

.booking-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 0.1em;
    color: var(--c-accent);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: 15px;
    margin-bottom: 10px;
}

.form-group label {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--c-text-main);
}

.form-group .required {
    font-size: 0.7rem;
    color: #fff;
    background-color: #d9534f;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
}

.form-group .optional {
    font-size: 0.7rem;
    color: var(--c-text-muted);
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 10px;
    vertical-align: middle;
}

.booking-form input[type="text"],
.booking-form input[type="email"],
.booking-form input[type="tel"],
.booking-form input[type="number"],
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 14px 18px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--c-accent);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(197, 160, 89, 0.1);
}

.pax-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pax-input-wrapper input {
    width: 80px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--c-accent);
}

.taxi-details {
    margin-left: 28px;
    margin-top: 10px;
    display: none;
}

.taxi-details.active {
    display: block;
}

.taxi-note {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    margin-top: 5px;
}

.booking-notes {
    background-color: rgba(197, 160, 89, 0.1);
    padding: 15px;
    border-left: 3px solid var(--c-accent);
    margin-top: 10px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
}

.booking-notes p {
    margin-bottom: 5px;
}

.booking-notes p:last-child {
    margin-bottom: 0;
}

.btn-submit {
    background: linear-gradient(135deg, var(--c-accent) 0%, #a88339 100%);
    color: var(--c-bg-dark);
    border: none;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font-serif);
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border-radius: 2px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--c-accent-hover) 0%, var(--c-accent) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

@media (max-width: 768px) {
    .booking-content {
        padding: 30px 20px;
    }
}
