/* Rakucho Ryokan - Design System V2 (Premium & Compact) */
:root {
    --bg-color: #fcfcf4; /* Traditional Washi */
    --text-color: #2c2c2c; /* Charcoal Sumi */
    --accent-gold: #c5a059; /* Elegant Gold */
    --accent-gold-light: #eaddc0;
    --accent-green: #3a5b3a; /* Deep Moss */
    --accent-blue: #2c3e50; /* Midnight Blue */
    --tab-bg: #f8f8f2;
    --card-bg: #ffffff;
    --soft-shadow: 0 10px 40px rgba(197, 160, 89, 0.08);
    --border-color: #eaddc0;
    --font-serif: 'Shippori Mincho', 'Noto Serif JP', serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --container-width: 1350px; /* Expanded for premium, spacious layout */
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Header - More compact */
header {
    background-color: var(--tab-bg);
    padding: 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0.6;
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto; /* Logo | Nav | Slogan */
    align-items: center;
    gap: 2rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.top-logo {
    height: 60px;
    opacity: 0.9;
}

.logo-text h1 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
}

.logo-text p {
    font-size: 0.75rem;
    color: #666;
    letter-spacing: 0.1em;
}

.slogan {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #555;
    max-width: 500px;
    line-height: 1.8;
    text-align: left;
    border-left: 2px solid var(--accent-gold);
    padding-left: 1.5rem;
    letter-spacing: 0.04em;
    margin-left: 1rem;
}

/* Navigation - Fills the gap and adds functionality */
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    transition: color 0.3s, transform 0.3s;
    position: relative;
    padding-bottom: 0.2rem;
}

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

.main-nav a:hover {
    color: var(--accent-gold);
}

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

/* Main Grid */
main {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 430px; /* Sidebar widened to balance */
    gap: 3.5rem; /* Gap slightly increased */
    align-items: start;
}

/* Hero Slider - Compact inside Column */
.hero-wrapper {
    margin-bottom: 2rem;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 420px; /* Increased height to balance wider width */
    overflow: hidden;
    border-radius: 6px; /* Slightly rounder to match wider feel */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
    background-size: cover;
    background-position: center;
}

.slide.active { opacity: 1; }

/* Tabbed Interface */
.tab-container {
    background: var(--card-bg);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
    border: 1px solid var(--border-color);
    position: relative;
}

.tab-nav {
    display: flex;
    background: var(--tab-bg);
    border-bottom: 1px solid #e8e8df;
}

.tab-btn {
    flex: 1;
    padding: 0.8rem;
    border: none;
    background: none;
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    color: #888;
    transition: all 0.3s;
    border-right: 1px solid #e8e8df;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.tab-btn .tab-jp {
    display: block;
    font-size: 0.7rem;
    font-weight: normal;
    margin-top: 0.3rem;
    opacity: 0.8;
}

.tab-btn:last-child { border-right: none; }

.tab-btn.active {
    background: var(--card-bg);
    color: var(--accent-gold);
    border-top: 3px solid var(--accent-gold);
}

.tab-content {
    display: none;
    padding: 1.5rem;
    animation: fadeIn 0.5s ease;
}

.tab-content.active { display: block; }

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

/* Content Sections within Tabs */
h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

/* Unified Content Layouts */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for better density */
    gap: 1.2rem;
}

.content-card {
    background: #fafaf5;
    border: 1px solid #e8e8df;
    border-radius: 4px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-gold);
    opacity: 0.3;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(197, 160, 89, 0.12);
    border-color: var(--accent-gold);
}

/* Room Photo Viewer (Plan 2) */
.room-photo-viewer {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: #eee;
    box-shadow: var(--soft-shadow);
    border: 1px solid var(--border-color);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 250px;
}

.viewer-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.viewer-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 4s linear;
    transform: scale(1.05);
}

.viewer-slide.active {
    opacity: 1;
    transform: scale(1);
}

.viewer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    text-align: center;
    z-index: 2;
}

#viewerLabel {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.viewer-hint {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    margin-top: 0.3rem;
    color: var(--accent-gold-light);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
    padding-bottom: 0.6rem;
    line-height: 1.3;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.card-icon {
    width: 20px;
    height: 20px;
    fill: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.card-title-text { flex: 1; }

.card-title span.lang-jp {
    display: block;
    font-size: 0.75rem;
    color: #999;
    font-weight: normal;
    margin-top: 0.1rem;
    letter-spacing: 0.05em;
}

.card-info {
    font-size: 0.9rem;
    color: #444;
    margin: 0;
    line-height: 1.5;
}

.card-info strong {
    color: var(--accent-gold);
    font-size: 1.2rem;
    font-family: var(--font-serif);
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    font-size: 0.95rem;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #eee;
    display: flex;
    flex-direction: column; /* Stack for proper wrapping */
    align-items: flex-start;
    gap: 0.2rem;
}

.card-list li span.lang-jp {
    font-size: 0.75rem;
    color: #999;
    margin-left: 0;
    letter-spacing: 0.05em;
}

.note-box {
    margin-top: 1.5rem;
    padding: 1.2rem;
    font-size: 0.85rem;
    color: #666;
    background: #f9f9f2;
    border-left: 3px solid var(--accent-gold);
}

/* Facilities Compact */
.fac-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fac-list li {
    font-size: 0.9rem;
    padding: 0.5rem;
    border-bottom: 1px dashed #eee;
}

/* Reservation Sidebar */
.reservation-sidebar {
    position: sticky;
    top: 2rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e8e8df;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.reservation-sidebar h2 {
    text-align: center;
    font-size: 1.3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    border: none;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #666;
}

.form-group input, 
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #eee;
    border-radius: 4px;
    font-size: 0.95rem;
    background: #fafafa;
    transition: 0.3s;
}

.small-input {
    width: 150px !important;
}

.field-hint {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: normal;
    margin-left: 0.5rem;
}

button[type="submit"] {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
}

button[type="submit"] .btn-jp {
    display: block;
    font-size: 0.75rem;
    font-weight: normal;
    margin-top: 0.2rem;
    opacity: 0.9;
}

button[type="submit"]:hover { background: #2a355a; }

/* Gallery Compact */
.gallery-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: #eee;
    border-radius: 2px;
}

/* FAQ Accordion Styling */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item[open] {
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(197, 168, 106, 0.15);
}

.faq-q {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent-blue);
    padding: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hide default triangle */
    transition: background 0.3s;
}
.faq-q::-webkit-details-marker {
    display: none; /* Hide default triangle in Safari */
}

.faq-q:hover {
    background: #fdfaf3;
}

.faq-q-text {
    flex: 1;
    padding-right: 1rem;
}

.faq-q-text span.lang-jp {
    display: block;
    font-size: 0.8rem;
    color: #888;
    font-weight: normal;
    margin-top: 0.3rem;
    font-family: 'Inter', sans-serif;
}

.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--accent-gold);
    transition: transform 0.3s ease;
}
.faq-icon::before {
    top: 9px;
    left: 2px;
    width: 16px;
    height: 2px;
}
.faq-icon::after {
    top: 2px;
    left: 9px;
    width: 2px;
    height: 16px;
}
.faq-item[open] .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-a {
    padding: 0 1.2rem 1.2rem 1.2rem;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    border-top: 1px dashed #eee;
    margin-top: -0.5rem;
    padding-top: 1rem;
    animation: fadeIn 0.4s ease;
}

.faq-a span.lang-jp {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.4rem;
}

/* Footer - Compact */
footer {
    padding: 2rem 1rem;
    text-align: center;
    background: var(--tab-bg);
    border-top: 1px solid #eee;
    margin-top: 3rem;
}

.footer-info-text { font-size: 0.85rem; color: #888; }
.footer-copyright { font-size: 0.75rem; color: #aaa; margin-top: 0.5rem; }

/* Responsive */
@media (max-width: 1024px) {
    main { grid-template-columns: 1fr; }
    .header-inner { display: flex; flex-direction: column; text-align: center; gap: 1.5rem; }
    .slogan { text-align: center; margin-top: 0.5rem; border-left: none; padding-left: 0; margin-left: 0; }
}

@media (max-width: 768px) {
    .content-grid { grid-template-columns: 1fr; }
    .room-photo-viewer { display: none; }
    .fac-list { grid-template-columns: 1fr; }
}

/* Final Booking Form (Hidden by default) */
.checkout-mode .hero-wrapper,
.checkout-mode .tab-nav,
.checkout-mode .reservation-sidebar,
.checkout-mode .access-container,
.checkout-mode nav,
.checkout-mode .slogan {
    display: none;
}

.checkout-mode header {
    padding: 1.5rem 1rem;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.checkout-mode .header-inner {
    justify-content: center;
    flex-direction: column;
}

.checkout-mode .logo-container {
    margin: 0 auto;
}

.checkout-mode main {
    grid-template-columns: 1fr;
    max-width: 850px;
    padding: 3rem 1rem;
}

.booking-final-container {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 2px;
    border: 1px solid var(--border-color);
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
}

.booking-final-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--accent-gold);
}

.booking-header h2 {
    color: var(--accent-blue);
    border: none;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    margin-bottom: 1rem;
}

.booking-header p {
    font-size: 0.85rem;
    color: #666;
}

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

.required-mark {
    color: #e74c3c;
    margin-left: 3px;
}

.checkout-form .form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.checkout-form input, 
.checkout-form select {
    background: #fff;
    border: 1px solid #c9c9c9;
    padding: 0.8rem;
    border-radius: 4px;
}

.payment-selection {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
}

.payment-selection label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: normal;
}

.payment-selection input[type="radio"] {
    width: auto;
}

.submit-btn-container {
    text-align: right;
    margin-top: 2rem;
}

.btn-submit-final {
    background: #9092d6 !important; /* Screenshot violet */
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit-final:hover {
    background: #7a7cb8 !important;
}

/* Stripe Elements Styles */
.card-element-group {
    margin-top: 2rem;
    margin-bottom: 2rem;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 4px;
    border: 1px solid #eee;
}

#card-element {
    background: #fff;
    border: 1px solid #c9c9c9;
    padding: 0.8rem;
    border-radius: 4px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#card-element.StripeElement--focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.1);
}

#card-errors {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.8rem;
    min-height: 1rem;
    display: block;
}

.booking-notes {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #555;
}

.booking-notes p {
    margin-bottom: 1rem;
}

/* Access Diagram Styling */
.route-box { 
    background: #fff; 
    border: 1px solid #eaeaea; 
    border-radius: 8px; 
    padding: 1.2rem; 
    margin-bottom: 1.2rem; 
    position: relative; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.route-box h3 { 
    margin-top: 0; 
    color: var(--accent-blue); 
    font-size: 1.05rem;
    display: flex; 
    align-items: center; 
    gap: 8px; 
    border-left: 4px solid var(--accent-gold);
    padding-left: 8px;
    margin-bottom: 0.8rem;
}

.recommended-badge { 
    background: #e74c3c; 
    color: white; 
    padding: 2px 6px; 
    border-radius: 4px; 
    font-size: 0.75rem; 
    font-weight: bold; 
    margin-left: auto; 
    letter-spacing: 0.5px;
}

.flow-step { 
    display: flex; 
    align-items: center; 
    margin-top: 0.5rem; 
    flex-wrap: nowrap; 
}
.flow-node { 
    background: var(--accent-blue); 
    color: #fff; 
    padding: 0.5rem 0.6rem; 
    border-radius: 4px; 
    font-weight: bold; 
    width: 110px; 
    text-align: center; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    font-size: 0.85rem;
    line-height: 1.2;
}
.flow-node span {
    font-size: 0.65rem;
    font-weight: normal;
    margin-top: 3px;
    opacity: 0.9;
}
.flow-arrow { 
    flex: 1; 
    position: relative; 
    min-height: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 0 0.2rem; 
    min-width: 90px;
}
.flow-arrow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    border-bottom: 1px dashed #bbb;
    z-index: 0;
}
.flow-arrow::after { 
    content: '▶'; 
    position: absolute; 
    right: -4px; 
    top: 50%;
    transform: translateY(-50%);
    color: #bbb; 
    font-size: 1rem; 
    z-index: 0;
}
.flow-arrow span { 
    font-size: 0.75rem; 
    color: #555; 
    background: #fff; 
    padding: 0.1rem 0.3rem; 
    position: relative; 
    z-index: 1;
    white-space: nowrap; 
    border-radius: 4px;
    text-align: center;
    line-height: 1.3;
}

.taxi-card { 
    border: 2px dashed var(--accent-gold); 
    background: #fdfaf3; 
    padding: 1rem; 
    border-radius: 8px; 
    text-align: center; 
    margin-top: 1.2rem; 
}
.taxi-card h4 { 
    color: var(--accent-blue); 
    font-size: 1.1rem; 
    margin-top: 0; 
    margin-bottom: 0.3rem; 
}

@media (max-width: 600px) {
    .flow-step { flex-direction: column; align-items: flex-start; }
    .flow-node { width: 100%; margin-bottom: 0; text-align: left; padding: 0.6rem 1rem; }
    .flow-arrow { min-height: 35px; margin-left: 20px; border-left: 1px dashed #bbb; width: 0; padding: 0; align-items: center; justify-content: flex-start; min-width: 0; }
    .flow-arrow::before { display: none; }
    .flow-arrow::after { bottom: -7px; left: -7px; right: auto; top: auto; transform: rotate(90deg); }
    .flow-arrow span { left: 15px; text-align: left; white-space: normal; width: max-content; }
    
    .taxi-card-content { flex-direction: column; gap: 0.5rem; }
    .taxi-card-content > div { text-align: center !important; border-left: none !important; padding-left: 0 !important; border-top: 1px dashed #ddd; padding-top: 0.8rem; margin-top: 0.5rem; }
}

/* --- Mobile Floating Action Button --- */
.mobile-book-btn {
    display: none; /* Hidden on Desktop */
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
    z-index: 2000;
    font-size: 0.95rem;
    text-align: center;
    width: 85%;
    max-width: 320px;
    border: 2px solid white;
    animation: slideUpFade 0.6s ease-out;
}

.mobile-book-btn .sub-text {
    display: block;
    font-size: 0.7rem;
    font-weight: normal;
    margin-top: 1px;
    opacity: 0.9;
}

@keyframes slideUpFade {
    from { transform: translate(-50%, 50px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* --- Mobile Responsive Enhancements (RWD) --- */
@media (max-width: 1100px) {
    .header-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    .slogan {
        border-left: none;
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
    }
    .main-nav {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .main-container {
        flex-direction: column-reverse; /* Put booking form at bottom for mobile flow */
    }
    
    .main-content {
        padding-right: 0;
    }

    .reservation-sidebar {
        width: 100%;
        margin-top: 40px;
        position: static;
        border: 2px solid var(--accent-gold); /* Make it stand out at the bottom */
    }

    .viewer-container {
        height: 350px;
    }

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

    .mobile-book-btn {
        display: block; /* Show on mobile devices */
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 600px) {
    .logo-container {
        flex-direction: column;
        text-align: center;
    }
    .top-logo {
        height: 50px;
    }
    .logo-text h1 {
        font-size: 1.5rem;
    }
    
    .tab-navigation {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
    }
    .tab-btn {
        width: 100%;
        margin: 0;
    }
    
    .faq-item summary {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
    
    .viewer-label {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* --- Header & Navigation Upgrades --- */
.header-controls {
    display: none; /* Hidden on Desktop */
    align-items: center;
    gap: 15px;
}

.header-reserve-btn {
    background: var(--accent-gold);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.2);
}

.hamburger {
    display: none; /* Hidden on Desktop */
    flex-direction: column;
    justify-content: space-around;
    width: 24px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg); }

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-family: var(--font-serif);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

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

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

.nav-reserve-mobile {
    display: none !important; /* Only for mobile menu overlay */
}

/* --- Mobile Nav Overlay --- */
@media (max-width: 992px) {
    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .slogan { display: none; } /* Hide slogan in mobile header to save space */
    
    .header-controls, .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin: 1.5rem 0;
    }

    .nav-reserve-mobile {
        display: block !important;
        background: var(--accent-gold);
        color: white !important;
        padding: 10px 30px;
        border-radius: 4px;
        margin-top: 2rem !important;
    }
}
