/* ==========================================================================
   LUMINATUS — Glassmorphism Dark Theme
   ========================================================================== */

:root {
    --logo-purple: #7E74D4;
    --logo-gold: #F2C478;
    --dark-bg: #07080D;
    --text-light: #E0E2F0;
    --glass-bg: rgba(10, 12, 20, 0.65);
    --glass-border: rgba(126, 116, 212, 0.2);
    --gold-glow: rgba(242, 196, 120, 0.3);
    --purple-glow: rgba(126, 116, 212, 0.3);
    --section-alt-bg: rgba(10, 12, 20, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Zalando Sans Expanded', sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
}

h1 { font-size: 3.5rem; font-weight: 400; letter-spacing: 2px; }
h2 { font-size: 2.6rem; font-weight: 400; }
h3 { font-size: 1.4rem; font-weight: 500; }
h4 { font-size: 1rem; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }

a {
    color: var(--logo-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
}

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

/* ==========================================================================
   NAVIGATION
   ========================================================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0.8rem 4rem 0.8rem;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

nav.scrolled {
    align-items: center;
    padding: 0.4rem 4rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.logo-container {
    flex-shrink: 0;
}

.logo-container img {
    height: 100px;
    transition: all 0.4s ease;
}

.logo-container img:hover {
    transform: scale(1.03);
}

nav.scrolled .logo-container img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding-bottom: 0.5rem;
}

nav.scrolled .nav-links {
    padding-bottom: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--logo-purple), var(--logo-gold));
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

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

/* --- Hamburger --- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.nav-overlay.visible {
    display: block;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.btn-primary {
    background: transparent;
    color: #fff;
    border: 1px solid var(--logo-purple);
    box-shadow: 0 0 15px var(--purple-glow);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--logo-purple), rgba(126, 116, 212, 0.5));
    z-index: -1;
    transition: width 0.4s ease;
}

.btn-primary:hover::before {
    width: 100%;
}

.btn-primary:hover {
    color: #fff;
    box-shadow: 0 0 25px rgba(126, 116, 212, 0.8);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--logo-gold);
    border: 1px solid var(--logo-gold);
}

.btn-secondary:hover {
    color: var(--logo-gold);
    background: rgba(242, 196, 120, 0.1);
    box-shadow: 0 0 20px rgba(242, 196, 120, 0.5);
    transform: translateY(-2px);
}

.btn-full {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   HERO — Full-screen (homepage)
   ========================================================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    z-index: -2;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(7,8,13,0.2) 0%, rgba(7,8,13,0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--logo-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    letter-spacing: 4px;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: #B0B5D1;
    font-weight: 300;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   PAGE HERO — Shorter hero for inner pages
   ========================================================================== */
.page-hero {
    position: relative;
    height: 40vh;
    min-height: 300px;
    padding-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(126,116,212,0.15) 0%, rgba(7,8,13,1) 50%, rgba(242,196,120,0.1) 100%);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(126,116,212,0.08) 0%, transparent 60%),
                radial-gradient(circle at 70% 50%, rgba(242,196,120,0.06) 0%, transparent 60%);
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.3s;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, var(--logo-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 300;
    letter-spacing: 3px;
}

.page-hero-content p {
    font-size: 1.05rem;
    color: #B0B5D1;
    font-weight: 300;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    padding: 6rem 4rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.6rem;
    color: var(--logo-purple);
    margin-bottom: 1rem;
    font-weight: 400;
}

.section-header.gold h2 {
    color: var(--logo-gold);
}

.section-header p {
    font-size: 1.05rem;
    color: #B0B5D1;
    max-width: 600px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--logo-gold);
    margin-bottom: 1rem;
}

/* ==========================================================================
   GRID LAYOUTS
   ========================================================================== */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
    justify-content: center;
}

/* ==========================================================================
   CARDS — Glass morphism
   ========================================================================== */
.card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(242,196,120,0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--logo-gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 20px rgba(242, 196, 120, 0.2);
}

.card:hover::before {
    opacity: 1;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card h3 {
    color: #fff;
    margin-bottom: 0.75rem;
}

.card p {
    color: #B0B5D1;
    font-size: 0.95rem;
}

.card-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    border-radius: 15px 15px 0 0;
    margin: -2rem -2rem 1.5rem -2rem;
}

.card-body {
    position: relative;
    z-index: 1;
}

.card-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--logo-gold);
    border: 1px solid rgba(242, 196, 120, 0.3);
    border-radius: 20px;
}

.card-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--logo-gold);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-link:hover {
    color: #fff;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .section-label {
    display: block;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--logo-purple);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #B0B5D1;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.about-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    opacity: 0.9;
}

/* --- Tenets --- */
.tenets-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.tenet-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.tenet-card:hover {
    border-color: var(--logo-purple);
    box-shadow: 0 0 20px var(--purple-glow);
}

.tenet-icon {
    font-size: 2rem;
    color: var(--logo-gold);
    margin-bottom: 1rem;
}

.tenet-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--logo-purple);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.tenet-card h3 {
    color: #fff;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.tenet-card p {
    color: #B0B5D1;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==========================================================================
   VIDEO LIBRARY
   ========================================================================== */

/* --- Filter Bar --- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--logo-purple);
    color: #fff;
}

.filter-btn.active {
    background: linear-gradient(90deg, var(--logo-purple), rgba(126, 116, 212, 0.6));
    border-color: var(--logo-purple);
    color: #fff;
    box-shadow: 0 0 15px var(--purple-glow);
}

/* --- Video Card --- */
.video-card {
    padding: 0 !important;
    text-align: left;
    cursor: pointer;
}

.video-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background: #111;
}

.video-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
    transform: scale(1.05);
}

.video-thumb-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(126,116,212,0.2), rgba(242,196,120,0.1));
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(126, 116, 212, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    opacity: 0;
    backdrop-filter: blur(4px);
}

.video-card:hover .play-btn {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

.video-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(7, 8, 13, 0.7);
    color: var(--logo-gold);
    border: 1px solid rgba(242, 196, 120, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
}

.video-info h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.video-info h3 a:hover {
    color: var(--logo-gold);
}

.video-speaker {
    font-size: 0.85rem;
    color: var(--logo-gold);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.video-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==========================================================================
   LUMINARIES
   ========================================================================== */
.luminary-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.luminary-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(126,116,212,0.2), rgba(242,196,120,0.15));
}

.luminary-card:hover .luminary-avatar {
    border-color: var(--logo-gold);
    box-shadow: 0 0 20px var(--gold-glow);
}

.luminary-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luminary-avatar .avatar-placeholder {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.luminary-role {
    font-size: 0.8rem;
    color: var(--logo-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.luminary-specialty {
    font-size: 0.85rem;
    color: #888;
}

/* ==========================================================================
   BOOKING / FORMS
   ========================================================================== */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-bottom-color: var(--logo-purple);
    box-shadow: 0 2px 0 0 var(--logo-purple);
}

.form-group select {
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%237E74D4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    padding-right: 2rem;
}

.form-group select option {
    background: var(--dark-bg);
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(224, 226, 240, 0.3);
}

.form-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #888;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.visible {
    display: block;
}

.form-success i {
    font-size: 3rem;
    color: var(--logo-gold);
    margin-bottom: 1rem;
}

.form-success h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.form-success p {
    color: #B0B5D1;
}

/* ==========================================================================
   HI.EVENTS WIDGET EMBED
   ========================================================================== */
.hievents-widget-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hievents-widget-container iframe {
    display: block;
    width: 100%;
    min-height: 400px;
    border: none;
}

/* ==========================================================================
   VIDEO DETAIL PAGE
   ========================================================================== */
.video-detail {
    max-width: 900px;
    margin: 0 auto;
}

.video-player {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #111;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.video-player iframe,
.video-player video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-player-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(126,116,212,0.15), rgba(242,196,120,0.08));
    color: rgba(255,255,255,0.3);
    gap: 1rem;
}

.video-player-placeholder i {
    font-size: 4rem;
}

.video-player-placeholder p {
    font-size: 0.9rem;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.video-meta .video-badge {
    position: static;
}

.video-meta .video-speaker {
    margin: 0;
}

.video-meta .video-duration {
    font-size: 0.85rem;
    color: #888;
}

.video-body {
    color: #B0B5D1;
    line-height: 1.8;
    font-size: 1rem;
}

.video-body p {
    margin-bottom: 1rem;
}

/* ==========================================================================
   LUMINARY DETAIL PAGE
   ========================================================================== */
.luminary-detail {
    max-width: 800px;
    margin: 0 auto;
}

.luminary-detail-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.luminary-detail-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--logo-gold);
    box-shadow: 0 0 30px var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(126,116,212,0.2), rgba(242,196,120,0.15));
}

.luminary-detail-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luminary-detail-avatar .avatar-placeholder {
    font-size: 4rem;
    color: rgba(255,255,255,0.3);
}

.luminary-detail-info h2 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.luminary-detail-info .luminary-role {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.luminary-detail-info .luminary-specialty {
    font-size: 0.9rem;
}

.luminary-detail-body {
    color: #B0B5D1;
    line-height: 1.8;
    font-size: 1rem;
}

.luminary-detail-body p {
    margin-bottom: 1rem;
}

/* ==========================================================================
   RETREAT DETAIL PAGE
   ========================================================================== */
.retreat-detail {
    max-width: 900px;
    margin: 0 auto;
}

.retreat-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.retreat-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #B0B5D1;
    font-size: 0.95rem;
}

.retreat-features li i {
    color: var(--logo-gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.retreat-body {
    color: #B0B5D1;
    line-height: 1.8;
    font-size: 1rem;
}

.retreat-body p {
    margin-bottom: 1rem;
}

.retreat-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

/* ==========================================================================
   FEATURED SECTIONS (homepage)
   ========================================================================== */
.featured-banner {
    background: linear-gradient(135deg, rgba(126,116,212,0.1) 0%, rgba(7,8,13,0.8) 50%, rgba(242,196,120,0.08) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 4rem;
    text-align: center;
    margin: 0 4rem;
}

.featured-banner h2 {
    color: var(--logo-gold);
    margin-bottom: 1rem;
}

.featured-banner p {
    color: #B0B5D1;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--logo-gold);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item p {
    color: #B0B5D1;
}

.contact-item a {
    color: var(--logo-gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: rgba(3, 4, 8, 0.8);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-family: 'Zalando Sans Expanded', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 400;
    font-style: italic;
    color: var(--logo-gold);
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

.footer-col h4 {
    color: var(--logo-purple);
    margin-bottom: 1.5rem;
    font-size: 0.8rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #888;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--logo-gold);
}

.footer-col ul li a i {
    margin-right: 0.5rem;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-social a {
    color: #888;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--logo-gold);
    transform: translateY(-2px);
}

.footer-note {
    font-size: 0.8rem;
    color: #666;
    margin-top: 1rem;
    line-height: 1.6;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 1.5rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #666;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* --- Scroll Reveal --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal for cards within a grid */
.grid-container .reveal:nth-child(1) { transition-delay: 0ms; }
.grid-container .reveal:nth-child(2) { transition-delay: 100ms; }
.grid-container .reveal:nth-child(3) { transition-delay: 200ms; }
.grid-container .reveal:nth-child(4) { transition-delay: 300ms; }
.grid-container .reveal:nth-child(5) { transition-delay: 400ms; }
.grid-container .reveal:nth-child(6) { transition-delay: 500ms; }

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--logo-gold); }
.text-purple { color: var(--logo-purple); }
.text-muted { color: #888; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }
.max-w-narrow { max-width: 700px; margin-left: auto; margin-right: auto; }

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

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

@media (max-width: 768px) {
    nav {
        align-items: center;
        padding: 0.5rem 2rem;
    }

    .logo-container img {
        height: 70px;
    }

    nav.scrolled {
        padding: 0.4rem 2rem;
    }

    nav.scrolled .logo-container img {
        height: 45px;
    }

    /* Hamburger visible */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        flex-direction: column;
        background: rgba(7, 8, 13, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 6rem 2rem 2rem;
        gap: 0;
        z-index: 999;
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        animation: slideIn 0.3s ease forwards;
    }

    .nav-links.open li:nth-child(1) { animation-delay: 0.05s; }
    .nav-links.open li:nth-child(2) { animation-delay: 0.1s; }
    .nav-links.open li:nth-child(3) { animation-delay: 0.15s; }
    .nav-links.open li:nth-child(4) { animation-delay: 0.2s; }
    .nav-links.open li:nth-child(5) { animation-delay: 0.25s; }
    .nav-links.open li:nth-child(6) { animation-delay: 0.3s; }
    .nav-links.open li:nth-child(7) { animation-delay: 0.35s; }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-links a {
        font-size: 1rem;
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid rgba(126, 116, 212, 0.1);
    }

    /* Hero */
    .hero h1 {
        font-size: 2.6rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .page-hero {
        height: 30vh;
        min-height: 250px;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    /* Sections */
    .section {
        padding: 4rem 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Grids */
    .grid-container {
        grid-template-columns: 1fr;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

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

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-visual {
        order: -1;
    }

    .about-image {
        max-width: 280px;
    }

    /* Tenets */
    .tenets-grid {
        grid-template-columns: 1fr;
    }

    /* Retreat features */
    .retreat-features {
        grid-template-columns: 1fr;
    }

    /* Luminary detail */
    .luminary-detail-header {
        flex-direction: column;
        text-align: center;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 0.7rem;
    }

    /* Featured banner */
    .featured-banner {
        margin: 0 2rem;
        padding: 3rem 2rem;
    }

    /* Forms */
    .form-container {
        padding: 2rem;
    }

    /* Buttons */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .hero h1 {
        font-size: 2.2rem;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    nav {
        padding: 0.4rem 1rem;
    }

    .logo-container img {
        height: 50px;
    }

    .section {
        padding: 3rem 1.5rem;
    }

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

    .featured-banner {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }

    .filter-bar {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.4rem 1rem;
        font-size: 0.7rem;
    }
}
