/* ========================================
   THE HIDEOUT HOSTEL — Design System
   ======================================== */

:root {
    --primary: #e94560;
    --primary-dark: #c73550;
    --accent: #ffd166;
    --dark: #0f0e17;
    --dark-light: #1a1a2e;
    --text: #fffffe;
    --text-muted: #b4b6cc;
    --bg: #0f0e17;
    --bg-card: #16213e;
    --bg-card-hover: #1a2745;
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1.15; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }

.section { padding: 6rem 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 0.75rem;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.85rem 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600; font-size: 0.95rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    gap: 0.5rem;
}
.btn-primary {
    background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3); }
.btn-outline {
    background: transparent; color: var(--text); border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: var(--text); background: rgba(255,255,255,0.05); }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}
.nav.scrolled { background: rgba(15, 14, 23, 0.95); backdrop-filter: blur(20px); padding: 0.6rem 0; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }

.nav-logo { display: flex; flex-direction: row; align-items: center; gap: 0.75rem; }
.nav-logo-img { width: 36px; height: 36px; object-fit: contain; }
.logo-text { font-family: 'Hong Kong Hustle', 'Space Grotesk', sans-serif; font-weight: 400; font-size: 1.4rem; letter-spacing: 4px; line-height: 1; text-transform: uppercase; }
.footer-logo { display: flex; flex-direction: row; align-items: center; gap: 0.6rem; }
.footer-logo-img { width: 30px; height: 30px; object-fit: contain; }

.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-link {
    font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
    transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link.active::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 100%; height: 2px; background: var(--primary); border-radius: 1px; }
.nav-cta {
    background: var(--primary); color: #fff !important; padding: 0.6rem 1.4rem;
    border-radius: var(--radius); font-size: 0.85rem; font-weight: 600;
    transition: var(--transition);
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); border-radius: 2px; }

/* ========================================
   Hero
   ======================================== */
.hero {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 20%, rgba(233, 69, 96, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 30% 80%, rgba(79, 172, 254, 0.1) 0%, transparent 50%);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: url('images/hero-social.jpg') center/cover;
    opacity: 0.4;
}
.hero-content { position: relative; text-align: center; padding: 2rem 1.5rem; max-width: 800px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(255, 209, 102, 0.15); border: 1px solid rgba(255, 209, 102, 0.3);
    color: var(--accent); padding: 0.5rem 1.2rem; border-radius: 50px;
    font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; align-items: center; justify-content: center; gap: 2rem; }
.stat { text-align: center; }
.stat-number { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); text-align: center; }
.hero-scroll span { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); }
.scroll-indicator { width: 2px; height: 30px; background: linear-gradient(to bottom, var(--text-muted), transparent); margin: 0.5rem auto 0; animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ========================================
   Why Book Direct
   ======================================== */
.why-direct { background: var(--dark-light); }
.why-direct-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card {
    text-align: center; padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.why-card p { color: var(--text-muted); font-size: 0.9rem; }

/* ========================================
   Rooms
   ======================================== */
.rooms-preview { background: var(--bg); }
.rooms-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.room-card {
    background: var(--bg-card); border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    transition: var(--transition);
}
.room-card:hover { border-color: rgba(233, 69, 96, 0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.room-image { height: 200px; position: relative; display: flex; align-items: flex-end; padding: 1rem; overflow: hidden; }
.room-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.room-price {
    background: rgba(0,0,0,0.7); backdrop-filter: blur(10px);
    padding: 0.4rem 1rem; border-radius: 50px; font-family: 'Space Grotesk', sans-serif;
    font-weight: 700; font-size: 1.1rem;
}
.room-price small { font-size: 0.75rem; font-weight: 400; color: var(--text-muted); }
.room-info { padding: 1.5rem; }
.room-info h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.room-info > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.room-amenities { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.room-amenities li {
    font-size: 0.75rem; padding: 0.3rem 0.7rem;
    background: rgba(255,255,255,0.05); border-radius: 50px; color: var(--text-muted);
}

/* ========================================
   Awards
   ======================================== */
.awards-section { background: var(--dark-light); }
.awards-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.awards-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.awards-text p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; margin-bottom: 2rem; }
.award-badges { display: flex; gap: 1rem; }
.award-badge {
    text-align: center; padding: 1.5rem 2rem;
    background: rgba(255, 209, 102, 0.08); border: 1px solid rgba(255, 209, 102, 0.2);
    border-radius: var(--radius-lg);
}
.award-year { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 700; color: var(--accent); }
.award-name { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-top: 0.25rem; }
.award-detail { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.25rem; }

.reviews-card {
    background: var(--bg-card); padding: 2rem; border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 1rem;
}
.review-quote { font-size: 1.05rem; font-style: italic; line-height: 1.7; margin-bottom: 0.75rem; }
.review-source { font-size: 0.8rem; color: var(--text-muted); }

/* ========================================
   Facilities
   ======================================== */
.facilities-teaser { background: var(--bg); }
.facilities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}
.facility-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    min-height: 250px; display: flex; align-items: flex-end;
    transition: var(--transition);
}
.facility-card:hover { transform: translateY(-4px); }
.facility-large { grid-column: 1 / -1; min-height: 300px; }
.facility-bg { position: absolute; inset: 0; }
.facility-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.1)); }
.facility-bg img { width: 100%; height: 100%; object-fit: cover; }
.facility-content { position: relative; padding: 2rem; }
.facility-content h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.facility-content p { color: var(--text-muted); font-size: 0.95rem; max-width: 500px; }

/* ========================================
   Pub Crawl CTA
   ======================================== */
.pub-crawl-cta {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #e94560 100%);
    text-align: center;
}
.pub-crawl-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.3); }
.pub-crawl-content { position: relative; max-width: 600px; margin: 0 auto; }
.pub-crawl-content h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.pub-crawl-content p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-bottom: 2rem; }

/* ========================================
   Sister Property
   ======================================== */
.sister-property { background: var(--dark-light); }
.sister-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.sister-text h2 { font-size: 2rem; margin-bottom: 0.25rem; }
.sister-text h3 { font-size: 1.1rem; color: var(--text-muted); font-weight: 400; margin-bottom: 1rem; }
.sister-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.sister-card { background: var(--bg-card); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.06); }
.sister-compare { display: flex; align-items: center; gap: 1.5rem; justify-content: center; }
.compare-item { text-align: center; }
.compare-item strong { display: block; font-size: 1.1rem; margin-bottom: 0.25rem; }
.compare-item span { color: var(--text-muted); font-size: 0.85rem; }
.compare-vs { font-family: 'Space Grotesk', sans-serif; font-size: 0.8rem; color: var(--primary); font-weight: 700; }

/* ========================================
   Guides Teaser
   ======================================== */
.guides-teaser { background: var(--bg); }
.guides-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.guide-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    min-height: 200px; display: flex; align-items: flex-end;
    transition: var(--transition);
}
.guide-card:hover { transform: translateY(-4px); }
.guide-bg { position: absolute; inset: 0; }
.guide-content { position: relative; padding: 1.5rem; }
.guide-content h3 { font-size: 1.15rem; margin-bottom: 0.15rem; }
.guide-content span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ========================================
   Room Detail (Rooms Page)
   ======================================== */
.room-detail {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
    align-items: center; margin-bottom: 4rem;
    padding: 2rem; background: var(--bg-card); border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.06);
}
.room-detail.reverse .room-detail-image { order: 2; }
.room-detail.reverse .room-detail-info { order: 1; }
.room-detail-image img { border-radius: var(--radius); width: 100%; height: 350px; object-fit: cover; }
.room-detail-info h3 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.room-detail-price { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 1rem; }
.room-detail-price strong { font-size: 2rem; color: var(--accent); font-family: 'Space Grotesk', sans-serif; }
.room-detail-info > p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.amenity-grid {
    display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem;
}
.amenity-grid span {
    font-size: 0.8rem; padding: 0.4rem 0.8rem;
    background: rgba(255,255,255,0.05); border-radius: 50px;
    color: var(--text-muted); border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .room-detail { grid-template-columns: 1fr; gap: 1.5rem; }
    .room-detail.reverse .room-detail-image { order: 1; }
    .room-detail.reverse .room-detail-info { order: 2; }
    .room-detail-image img { height: 250px; }
}

/* ========================================
   Final CTA
   ======================================== */
.final-cta {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15), rgba(79, 172, 254, 0.1));
    text-align: center;
}
.final-cta h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.final-cta p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2rem; }

/* ========================================
   Footer
   ======================================== */
.footer { background: #0a0a14; padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 3rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
    width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06); border-radius: 50%; font-size: 0.75rem; font-weight: 700;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4, .footer-contact h4, .footer-book h4 { font-size: 0.9rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--text); }
.footer-contact p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 0.5rem; }
.footer-contact a { color: var(--text-muted); transition: var(--transition); }
.footer-contact a:hover { color: var(--primary); }

.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #25d366; color: #fff; padding: 0.5rem 1rem;
    border-radius: var(--radius); font-size: 0.8rem; font-weight: 600;
    margin-top: 0.5rem; transition: var(--transition);
}
.btn-whatsapp:hover { background: #1fb855; }

.footer-book p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem; text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }

/* ========================================
   Floating CTA (Mobile)
   ======================================== */
.floating-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
    padding: 0.75rem 1rem; background: rgba(15, 14, 23, 0.95); backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.1);
}
.floating-cta .btn { width: 100%; text-align: center; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .rooms-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }

    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
        height: 100vh; background: var(--dark-light); flex-direction: column;
        padding: 5rem 2rem 2rem; gap: 1.5rem;
        transition: var(--transition); box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.active { right: 0; }
    .nav-link { font-size: 1.1rem; }
    .nav-cta { width: 100%; text-align: center; padding: 0.8rem; }

    .hero h1 { font-size: 2.2rem; }
    .hero-stats { gap: 1rem; }
    .stat-number { font-size: 1.4rem; }

    .why-direct-grid { grid-template-columns: repeat(2, 1fr); }
    .rooms-grid { grid-template-columns: 1fr; }
    .awards-content { grid-template-columns: 1fr; }
    .award-badges { justify-content: center; }
    .facilities-grid { grid-template-columns: 1fr; }
    .sister-content { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }

    .floating-cta { display: block; }
    .footer { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
    .why-direct-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; }
    .guides-grid { grid-template-columns: 1fr; }
}

/* ========================================
   Scroll Reveal Animations
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ========================================
   Focus Styles (Accessibility)
   ======================================== */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.3);
}

.nav-link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 2px;
}

/* ========================================
   Skip Navigation (Accessibility)
   ======================================== */
.skip-nav {
    position: absolute;
    top: -4rem;
    left: 1rem;
    z-index: 10000;
    background: var(--primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-nav:focus {
    top: 1rem;
}

/* ========================================
   Reduced Motion
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ========================================
   Floating WhatsApp Widget
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    background: #1ebe5c;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
    width: 24px;
    height: 24px;
    fill: #fff;
    flex-shrink: 0;
}
.whatsapp-float-text {
    display: inline;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px; /* above the floating book now button */
        left: 16px;
        padding: 0.7rem;
        border-radius: 50%;
    }
    .whatsapp-float-text {
        display: none;
    }
}

/* ========================================
   About Page
   ======================================== */
.about-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
}

.about-hero .hero-content {
    padding: 2rem 1.5rem;
    max-width: 600px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.awards-highlight {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.award-banner {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 209, 102, 0.08);
    border: 2px solid rgba(255, 209, 102, 0.2);
    border-radius: var(--radius-lg);
}

.award-large-badge {
    background: linear-gradient(135deg, rgba(255, 209, 102, 0.2), rgba(233, 69, 96, 0.1));
    border: 1px solid rgba(255, 209, 102, 0.3);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
}

.award-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
}

.award-years {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 0.5rem;
}

.award-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(255,255,255,0.06);
    transform: translateY(-4px);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.about-mission {
    background: var(--bg);
}

.about-sister {
    background: var(--dark-light);
}

.about-trust {
    background: var(--bg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
}

.trust-stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.trust-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

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

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

    .about-hero {
        min-height: 60vh;
    }
}

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

    .award-years {
        font-size: 2rem;
    }
}

/* ========================================
   Facilities Page
   ======================================== */
.facilities-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
}

.facilities-hero .hero-content {
    padding: 2rem 1.5rem;
    max-width: 700px;
}

.facilities-section {
    background: var(--bg);
}

.facility-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.facility-detail.reverse {
    direction: rtl;
}

.facility-detail.reverse > * {
    direction: ltr;
}

.facility-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    height: 400px;
}

.facility-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.facility-info > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.facility-features {
    margin-bottom: 2rem;
}

.facility-features h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.feature-list li {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

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

.amenity-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.amenity-item:hover {
    background: rgba(255,255,255,0.03);
    transform: translateY(-2px);
}

.amenity-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

.amenity-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.amenity-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

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

    .facility-detail.reverse {
        direction: ltr;
    }

    .facility-image img {
        height: 250px;
    }

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

    .facilities-hero {
        min-height: 60vh;
    }
}

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

    .facility-info > p {
        font-size: 1rem;
    }
}

/* ========================================
   Tours Page
   ======================================== */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--radius-lg);
}

.tours-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
}

.tours-hero .hero-content {
    padding: 2rem 1.5rem;
    max-width: 700px;
}

.tours-section {
    background: var(--bg);
}

.tour-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.tour-detail.reverse {
    direction: rtl;
}

.tour-detail.reverse > * {
    direction: ltr;
}

.tour-image {
    width: 100%;
    border-radius: var(--radius-lg);
}

.tour-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.tour-info > p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tour-features {
    margin-bottom: 2rem;
}

.tour-features h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.tour-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.tour-card:hover {
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.tour-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tour-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.tour-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.trust-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.tours-booking {
    background: var(--bg);
}

.booking-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.booking-method {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.method-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.booking-method h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.booking-method p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

    .tour-detail.reverse {
        direction: ltr;
    }

    .tour-image {
        min-height: 250px;
    }

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

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

    .booking-methods {
        grid-template-columns: 1fr;
    }

    .tours-hero {
        min-height: 60vh;
    }
}

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

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

    .tour-info > p {
        font-size: 1rem;
    }
}

/* ========================================
   Contact Page
   ======================================== */
.contact-hero {
    min-height: 70vh;
    background: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
}

.contact-hero .hero-content {
    padding: 2rem 1.5rem;
    max-width: 700px;
}

.contact-info-section {
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(233, 69, 96, 0.3);
    transform: translateY(-4px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.contact-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.contact-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--text);
    text-decoration: underline;
}

.contact-map {
    background: var(--dark-light);
}

.map-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.how-to-get-here {
    background: var(--dark-light);
}

.transport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.transport-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.transport-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.transport-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.option {
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
}

.option strong {
    color: var(--text);
    display: block;
    margin-bottom: 0.5rem;
}

.option p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.getting-around {
    background: rgba(255, 209, 102, 0.08);
    border: 1px solid rgba(255, 209, 102, 0.2);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.getting-around h3 {
    font-size: 1.2rem;
    color: var(--text);
}

.faq-section {
    background: var(--bg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.faq-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-header:hover {
    background: rgba(255,255,255,0.03);
}

.faq-header h3 {
    font-size: 1rem;
    margin: 0;
    color: var(--text);
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-content {
    display: none;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-content.open {
    display: block;
}

.faq-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

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

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

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

    .contact-hero {
        min-height: 60vh;
    }
}

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

/* ========================================
   Pub Crawl Page
   ======================================== */
.pubcrawl-hero {
    min-height: 90vh;
    background: linear-gradient(135deg, #0f0e17 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
}

.pubcrawl-hero .hero-overlay {
    opacity: 0.5;
}

.pubcrawl-hero .hero-content {
    padding: 2rem 1.5rem;
    max-width: 700px;
}

/* Video Container (Pub Crawl) */
.crawl-video { background: var(--bg); }

/* Free Banner */
.free-banner {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.15), rgba(255, 209, 102, 0.1));
    padding: 4rem 0;
}

.free-banner-content {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.free-badge-large {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(255, 209, 102, 0.15);
    border: 2px solid rgba(255, 209, 102, 0.3);
    padding: 1.5rem 2.5rem;
    border-radius: var(--radius-lg);
    white-space: nowrap;
    letter-spacing: 3px;
}

.free-banner-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.free-banner-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(233, 69, 96, 0.3);
}

.step-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Gallery Grid */
.crawl-gallery { background: var(--bg); }

.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

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

.gallery-large {
    grid-row: 1 / 3;
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
}

/* Schedule */
.schedule-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.schedule-days {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.day-card {
    flex: 1;
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.25);
    border-radius: var(--radius-lg);
}

.day-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.day-time {
    font-size: 0.9rem;
    color: var(--accent);
    font-weight: 600;
}

.crawl-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
}

.detail-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-size: 0.95rem;
}

.detail-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Why Pub Crawl Grid */
.crawl-why { background: var(--bg); }

.why-crawl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-crawl-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.why-crawl-card:hover {
    background: rgba(255,255,255,0.04);
    transform: translateY(-4px);
}

.why-crawl-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.why-crawl-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}

.why-crawl-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Pre-game / Happy Hours */
.pregame-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.pregame-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.pregame-text > p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.happy-hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hh-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 209, 102, 0.06);
    border: 1px solid rgba(255, 209, 102, 0.15);
    border-radius: var(--radius);
}

.hh-item strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--accent);
    min-width: 120px;
}

.hh-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pub Crawl Responsive */
@media (max-width: 768px) {
    .free-banner-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .free-badge-large {
        font-size: 2.5rem;
        padding: 1rem 2rem;
    }

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

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

    .gallery-large {
        grid-row: auto;
    }

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

    .schedule-days {
        flex-direction: column;
    }

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

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

    .pubcrawl-hero {
        min-height: 80vh;
    }
}

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

    .why-crawl-grid {
        grid-template-columns: 1fr;
    }

    .hh-item {
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .hh-item strong {
        min-width: unset;
    }
}

/* ========================================
   Guides Page
   ======================================== */
.guides-hero { padding-top: 120px; padding-bottom: 3rem; background: var(--bg); }
.guide-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.guide-full-card {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    min-height: 280px; display: flex; align-items: flex-end;
    transition: var(--transition); border: 1px solid rgba(255,255,255,0.06);
}
.guide-full-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.guide-full-bg { position: absolute; inset: 0; }
.guide-full-content { position: relative; padding: 2rem; width: 100%; }
.guide-full-content h3 { font-size: 1.6rem; margin-bottom: 0.25rem; }
.guide-full-content p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 1rem; max-width: 400px; }
.guide-tag { display: inline-block; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 0.5rem; }
.guide-featured { grid-column: 1 / -1; min-height: 350px; }

.guide-section { padding: 4rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.guide-section-header { margin-bottom: 2rem; }
.guide-section-header h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.guide-section-header p { color: var(--text-muted); font-size: 1rem; }
.guide-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 2rem; }
.highlight-card {
    background: var(--bg-card); padding: 1.5rem; border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
}
.highlight-card h4 { font-size: 1rem; margin-bottom: 0.5rem; }
.highlight-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; }
.guide-cta {
    background: rgba(233, 69, 96, 0.1); border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: var(--radius-lg); padding: 2rem; text-align: center; margin-top: 2rem;
}
.guide-cta h3 { margin-bottom: 0.5rem; }
.guide-cta p { color: var(--text-muted); margin-bottom: 1rem; }

/* Destination Banners */
.guide-banner {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}
.banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
.banner-emoji {
    font-size: 3rem;
    line-height: 1;
}
.banner-tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.85);
    background: rgba(0,0,0,0.3);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

@media (max-width: 768px) {
    .guide-full-grid { grid-template-columns: 1fr; }
    .guide-highlights { grid-template-columns: 1fr; }
    .guide-banner { height: 150px; }
    .banner-emoji { font-size: 2.5rem; }
}

/* ========================================
   404 Page
   ======================================== */
.error-icon { font-size: 6rem; margin-bottom: 1rem; display: block; }
.error-title { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1rem; }
.error-description { color: var(--text-muted); font-size: 1.2rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ========================================
   Book Page
   ======================================== */
.book-embed { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.book-embed iframe { height: 800px; width: 100%; border: none; }
.trust-signals { display: flex; justify-content: center; gap: 3rem; margin-top: 2rem; flex-wrap: wrap; }
