/* V5B: BOLD PREMIUM - Black/gold, commanding presence, knowledge authority */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
nav ul, nav ol, footer ul, footer ol { list-style: none !important; padding-left: 0 !important; margin: 0 !important; }
nav li, footer li { list-style: none !important; }

body {
    font-family: 'Outfit', -apple-system, sans-serif;
    background: #0e0e0e;
    color: #d4d4d4;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
a { color: #d4a853; text-decoration: none; transition: 0.2s; }
a:hover { color: #e8c36a; }
img { max-width: 100%; height: auto; }

/* ---- Header ---- */
.site-header {
    background: #0e0e0e;
    border-bottom: 1px solid rgba(212,168,83,0.12);
    position: sticky; top: 0; z-index: 100;
}
.header-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 32px;
    display: flex; align-items: center; justify-content: space-between; height: 80px;
}
.logo-text {
    font-size: 1.5rem; font-weight: 900; color: #fff;
    letter-spacing: 0.06em; text-transform: uppercase;
}
.site-logo img { height: 44px; }
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a, .site-nav ul { display: flex; align-items: center; gap: 36px; }
.site-nav a {
    color: rgba(255,255,255,0.45); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.12em;
}
.site-nav a:hover { color: #d4a853; }
.nav-sign-in {
    border: 1.5px solid #d4a853; color: #d4a853 !important;
    padding: 8px 22px; border-radius: 4px;
}
.nav-sign-in:hover { background: #d4a853; color: #0e0e0e !important; }
.mobile-nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-nav-toggle span { display: block; width: 26px; height: 1.5px; background: #d4a853; margin: 6px 0; }

/* ---- Hero ---- */
.hero {
    padding: 140px 32px 120px;
    text-align: center;
    background: #0e0e0e;
    position: relative; overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 900px; height: 900px;
    background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 60%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(212,168,83,0.25) 50%, transparent 95%);
}
.hero-inner { max-width: 850px; margin: 0 auto; position: relative; z-index: 1; }
.hero h1 {
    font-size: 4.5rem; font-weight: 900; line-height: 1.05;
    letter-spacing: -0.03em; color: #fff; margin-bottom: 12px;
    text-transform: none;
}
.hero h1::after {
    content: '';
    display: block;
    width: 80px; height: 4px;
    background: linear-gradient(90deg, #d4a853, #e8c36a);
    margin: 28px auto 0;
    border-radius: 2px;
}
.hero-description {
    font-size: 1.25rem; color: rgba(255,255,255,0.4);
    margin-bottom: 48px; line-height: 1.7; font-weight: 400;
}
.hero-cta { display: flex; gap: 18px; justify-content: center; }

/* ---- Buttons ---- */
.btn {
    display: inline-block; padding: 16px 36px; border-radius: 4px;
    font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.1em; transition: all 0.25s; cursor: pointer; border: none;
}
.btn-primary {
    background: linear-gradient(135deg, #d4a853 0%, #c49540 100%);
    color: #0e0e0e;
    box-shadow: 0 4px 24px rgba(212,168,83,0.2);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 36px rgba(212,168,83,0.35);
    color: #0e0e0e;
}
.btn-secondary {
    background: transparent; color: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-outline { background: transparent; color: #d4a853; border: 2px solid #d4a853; }
.btn-outline:hover { background: #d4a853; color: #0e0e0e; }

/* ---- Post Feed ---- */
.post-feed { max-width: 1240px; margin: 0 auto; padding: 90px 32px 100px; }
.feed-header { margin-bottom: 48px; }
.feed-header h2 {
    font-size: 1.8rem; font-weight: 800; color: #fff;
    text-transform: uppercase; letter-spacing: 0.06em;
    display: flex; align-items: center; gap: 16px;
}
.feed-header h2::before {
    content: ''; display: inline-block;
    width: 32px; height: 3px;
    background: linear-gradient(90deg, #d4a853, #e8c36a);
    border-radius: 2px;
}
.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 28px; }

/* ---- Post Card ---- */
.post-card {
    background: #161616;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 10px; overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    position: relative;
}
.post-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #d4a853, #e8c36a);
    opacity: 0; transition: opacity 0.25s;
}
.post-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212,168,83,0.2);
    box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.post-card:hover::before { opacity: 1; }
.post-card-image { width: 100%; height: 210px; object-fit: cover; }
.post-card-content { padding: 28px; }
.post-card-tag {
    display: inline-block; font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.14em;
    color: #d4a853; background: rgba(212,168,83,0.08);
    padding: 5px 12px; border-radius: 3px; margin-bottom: 14px;
    border: 1px solid rgba(212,168,83,0.15);
}
.post-card-title { font-size: 1.3rem; font-weight: 800; line-height: 1.3; margin-bottom: 10px; }
.post-card-title a { color: #fff; }
.post-card-title a:hover { color: #d4a853; }
.post-card-excerpt { color: rgba(255,255,255,0.38); font-size: 0.92rem; line-height: 1.65; margin-bottom: 18px; }
.post-card-meta {
    display: flex; gap: 18px; font-size: 0.76rem;
    color: rgba(255,255,255,0.22); text-transform: uppercase;
    letter-spacing: 0.06em; font-weight: 500;
}

/* ---- Footer ---- */
.site-footer {
    background: #090909;
    border-top: 1px solid rgba(212,168,83,0.08);
    padding: 70px 32px 0;
    color: rgba(255,255,255,0.4);
}
.footer-inner {
    max-width: 1240px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    gap: 56px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-brand h3 {
    color: #fff; font-size: 1.2rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px;
}
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-nav h4, .footer-subscribe h4 {
    color: #d4a853; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 20px;
}
.footer-nav a {
    display: block; color: rgba(255,255,255,0.35);
    font-size: 0.9rem; margin-bottom: 10px; font-weight: 500;
}
.footer-nav a:hover { color: #d4a853; }
.footer-subscribe p { font-size: 0.9rem; margin-bottom: 18px; line-height: 1.7; }
.footer-bottom {
    max-width: 1240px; margin: 0 auto;
    display: flex; justify-content: space-between;
    padding: 24px 0; font-size: 0.76rem;
    color: rgba(255,255,255,0.18); font-weight: 500;
    letter-spacing: 0.02em;
}
.footer-bottom a { color: rgba(255,255,255,0.25); }
.footer-bottom a:hover { color: #d4a853; }

/* ---- Pagination ---- */
.pagination { display: flex; justify-content: center; gap: 20px; margin-top: 56px; }
.pagination a {
    padding: 12px 24px; border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px; color: #d4d4d4; font-weight: 600;
    font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em;
}
.pagination a:hover { border-color: rgba(212,168,83,0.3); color: #d4a853; }

/* ---- Post Content (for articles) ---- */
.post-full { max-width: 780px; margin: 0 auto; padding: 60px 24px 80px; }
.post-header { margin-bottom: 40px; text-align: center; }
.post-tag { display: inline-block; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #d4a853; margin-bottom: 16px; }
.post-title { font-size: 3rem; font-weight: 900; line-height: 1.15; letter-spacing: -0.02em; color: #fff; margin-bottom: 20px; }
.post-meta { display: flex; align-items: center; justify-content: center; gap: 16px; color: rgba(255,255,255,0.3); font-size: 0.85rem; }
.post-meta-author { display: flex; align-items: center; gap: 8px; }
.author-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(212,168,83,0.3); }
.post-feature-image { margin: 0 0 40px; border-radius: 10px; overflow: hidden; }
.post-feature-image img { width: 100%; }
.post-content { font-size: 1.08rem; line-height: 1.85; color: rgba(255,255,255,0.7); }
.post-content h2 { font-size: 1.7rem; font-weight: 800; margin: 52px 0 18px; color: #fff; }
.post-content h3 { font-size: 1.35rem; font-weight: 700; margin: 40px 0 14px; color: #fff; }
.post-content p { margin-bottom: 24px; }
.post-content ul, .post-content ol { margin-bottom: 24px; padding-left: 24px; }
.post-content li { margin-bottom: 8px; }
.post-content blockquote {
    border-left: 3px solid #d4a853; padding: 18px 28px;
    margin: 36px 0; background: rgba(212,168,83,0.04);
    border-radius: 0 10px 10px 0; font-style: italic;
    color: rgba(255,255,255,0.55);
}
.post-content pre {
    background: #1a1a1a; color: #e2e8f0; padding: 24px;
    border-radius: 10px; overflow-x: auto; margin: 36px 0;
    font-size: 0.9rem; border: 1px solid rgba(255,255,255,0.06);
}
.post-content code { background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 4px; font-size: 0.9em; }
.post-content pre code { background: none; padding: 0; }
.post-content img { border-radius: 10px; margin: 36px 0; }
.post-content a { color: #d4a853; text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { color: #e8c36a; }
.post-comments { margin-top: 60px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ---- Pages ---- */
.page-full { max-width: 780px; margin: 0 auto; padding: 60px 24px 80px; }
.tag-header, .author-header { text-align: center; padding: 70px 24px 40px; max-width: 700px; margin: 0 auto; }
.tag-header h1, .author-header h1 { font-size: 2.4rem; font-weight: 900; color: #fff; }
.tag-description, .author-bio { color: rgba(255,255,255,0.45); margin-top: 12px; font-size: 1.05rem; }
.author-profile-image { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin-bottom: 16px; border: 3px solid rgba(212,168,83,0.3); }

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero { padding: 90px 20px 70px; }
    .hero h1 { font-size: 2.8rem; }
    .hero-description { font-size: 1.05rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .post-grid { grid-template-columns: 1fr; }
    .post-title { font-size: 2rem; }
    .site-nav { display: none; }
    .site-nav.active {
        display: flex; flex-direction: column;
        position: absolute; top: 80px; left: 0; right: 0;
        background: #0e0e0e; padding: 24px;
        border-top: 1px solid rgba(212,168,83,0.1);
    }
    .mobile-nav-toggle { display: block; }
    .footer-inner { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- Booking Page ---- */
.booking-page .post-header { text-align: center; margin-bottom: 2rem; }
.booking-subtitle { color: #a0a0a0; font-size: 1.15rem; margin-top: 0.75rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cal-embed-wrapper {
    max-width: 1000px; margin: 2rem auto 0; min-height: 600px;
    background: #161616; border-radius: 12px; padding: 1.5rem;
    border: 1px solid rgba(212,168,83,0.1);
}
