/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Book-cover matched palette: charcoal sky, bronze, antique gold, parchment */
    --primary-bg: #141922;
    --secondary-bg: #232d3d;
    --burnt-orange: #8d5a2c;
    --deep-sunset: #b77a35;
    --accent-gold: #d4b24f;
    --highlight-gold: #ebd28b;
    --accent-olive: #6a6b4a;
    --text-primary: #eadfcb;
    --heading-color: #f4ebd9;
    --card-bg: #2e394b;
    --footer-bg: #0d121a;

    /* Legacy mappings to new palette */
    --cover-dark: var(--primary-bg);
    --cover-deep-brown: var(--secondary-bg);
    --cover-warm-brown: var(--card-bg);
    --cover-slate: #1f2735;
    
    --accent-bronze: var(--burnt-orange);
    --accent-amber: var(--highlight-gold);
    --accent-cream: var(--text-primary);
    --accent-terracotta: var(--deep-sunset);
    
    --earth-brown: var(--secondary-bg);
    --earth-taupe: var(--card-bg);
    --earth-sand: #a58962;
    --earth-warm: #ba965f;
    
    --book-burgundy: var(--burnt-orange);
    --book-wine: var(--deep-sunset);
    --book-rust: var(--burnt-orange);
    
    --warm-white: var(--text-primary);
    --warm-beige: #dcccb0;
    --warm-gray: #a9977a;
    --warm-cream: #efe2cc;
    
    --primary-dark: var(--primary-bg);
    --primary-brown: var(--secondary-bg);
    --primary-accent: var(--accent-gold);
    --primary-warm: var(--deep-sunset);
    
    --storm-dark: var(--primary-bg);
    --storm-blue: var(--secondary-bg);
    --storm-gray: #1f2735;
    --lightning-gold: var(--accent-gold);
    --lightning-yellow: var(--highlight-gold);
    --thunder-blue: var(--burnt-orange);
    --rain-silver: var(--warm-gray);
    --cloud-white: var(--warm-white);
    --shadow-black: #000000;

    /* Professional Accent Colors */
    --accent-blue: var(--accent-olive);
    --accent-gray: #364152;

    /* Base Colors */
    --pure-white: #f4ebd9;
    --off-white: var(--text-primary);
    --light-gray: #d6c8af;
    --medium-gray: #b49f82;
    --dark-gray: #2a3343;

    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;

    /* Spacing */
    --header-height: 80px;
    --section-padding: 100px 0;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.6s ease;
    --transition-slow: 1s ease;

    /* Shadows */
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.4);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-heavy: 0 20px 60px rgba(0, 0, 0, 0.8);
    --storm-glow: 0 0 30px rgba(212, 178, 79, 0.4);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-secondary);
    background: radial-gradient(120% 160% at 10% 0%, #b77a35 0%, #232d3d 45%, #0d121a 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

@media screen and (max-width: 968px) {

    body {
        background-attachment: scroll;
    }
}

/* Container Classes - Fixed Implementation */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.container {
    width: 100%;
    padding: 30px 30px !important;

}

.navbar {
    margin-top: 20px !important;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #141922;
    background-image: radial-gradient(circle at center, #2b3648 0%, #141922 68%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    overflow: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.loading-orbital {
    position: relative;
    width: 140px;
    height: 140px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 30px rgba(212, 178, 79, 0.35));
}

.orbit-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(212, 178, 79, 0.35);
}

.orbit-ring-1 {
    transform: rotate(0deg);
    animation: orbitSpin 10s linear infinite;
}

.orbit-ring-2 {
    inset: 12px;
    border-color: rgba(183, 122, 53, 0.45);
    animation: orbitSpinReverse 7s linear infinite;
}

.orbit-ring-3 {
    inset: 24px;
    border-color: rgba(235, 210, 139, 0.5);
    animation: orbitSpin 5s linear infinite;
}

.loading-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(235, 210, 139, 0.95) 0%, rgba(183, 122, 53, 0.85) 65%, rgba(20, 25, 34, 0.95) 100%);
    box-shadow: 0 0 30px rgba(212, 178, 79, 0.55), inset 0 0 18px rgba(20, 25, 34, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: corePulse 2.2s ease-in-out infinite;
}

.core-symbol {
    font-size: 1.4rem;
    color: #1a2332;
    font-weight: 700;
    animation: symbolFloat 2.6s ease-in-out infinite;
}

.loading-logo h1 {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--highlight-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 0 28px rgba(0, 0, 0, 0.95), 0 0 50px rgba(232, 168, 92, 0.35);
    margin-bottom: 0.6rem;
    opacity: 0;
    animation: fadeInUp 1s ease 0.5s forwards;
}

.loading-bar {
    width: clamp(200px, 50vw, 300px);
    height: 4px;
    background: #232d3d;
    border-radius: 2px;
    margin: 0.8rem auto 0.2rem;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(to right, #d4b24f, #b77a35);
    width: 0%;
    animation: loadingProgress 3s ease forwards;
    box-shadow: 0 0 15px rgba(212, 178, 79, 0.6);
    position: relative;
}

.loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    right: -22px;
    width: 22px;
    height: 100%;
    background: linear-gradient(90deg, rgba(235, 210, 139, 0), rgba(235, 210, 139, 0.95));
    filter: blur(1px);
}

.loading-text {
    color: #eadfcb;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 0.16em;
    opacity: 0;
    animation: fadeInUp 1.2s ease 1.1s forwards;
}

/* Subtle dust particles in preloader */
.loading-dust {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.loading-dust span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(235, 210, 139, 0.28);
    box-shadow: 0 0 10px rgba(212, 178, 79, 0.45);
    opacity: 0;
    animation: dustFloat 8s linear infinite;
}

.loading-dust span:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.loading-dust span:nth-child(2) {
    top: 35%;
    right: 10%;
    animation-delay: 2s;
}

.loading-dust span:nth-child(3) {
    bottom: 25%;
    left: 30%;
    animation-delay: 4s;
}

.loading-dust span:nth-child(4) {
    bottom: 15%;
    right: 25%;
    animation-delay: 6s;
}

.loading-dust span:nth-child(5) {
    top: 10%;
    left: 50%;
    animation-delay: 1s;
}

.loading-dust span:nth-child(6) {
    bottom: 40%;
    right: 45%;
    animation-delay: 3s;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    display: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    box-shadow: 0 0 12px rgba(201, 169, 97, 0.9);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--accent-gold);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    opacity: 0.6;
}

/* Header - Fixed Navbar Styling */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: var(--header-height);
    background: rgba(20, 25, 34, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(232, 168, 92, 0.35);
    z-index: 1000;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.header.scrolled {
    background: rgba(13, 18, 26, 0.97);
    box-shadow: 0 6px 28px rgba(0, 0, 0, 0.9);
    border-bottom-color: rgba(232, 168, 92, 0.5);
}

.header .container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.nav-brand {
    display: flex;
    flex-direction: column;
    z-index: 1002;
}

.brand-text {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1;
    margin-bottom: 2px;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 0 0 12px rgba(201, 169, 97, 0.5);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all var(--transition-fast);
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-amber), var(--accent-terracotta));
    transition: width var(--transition-fast);
    box-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
    text-shadow: 0 0 14px rgba(0, 0, 0, 0.9);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--heading-color);
    transition: all var(--transition-fast);
}

.nav-close {
    display: none;
    font-size: 2rem;
    color: var(--heading-color);
    cursor: pointer;
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1002;
}

/* Hero Section - Improved Responsive Layout */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: #0d121a;
    overflow: hidden;
    padding-top: var(--header-height);
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none;
    z-index: 1;
    pointer-events: none;
}

/* Image Background */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    pointer-events: none;
}

/* Video Overlay for better text readability */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.9) 0%,
        rgba(20, 25, 34, 0.9) 28%,
        rgba(20, 25, 34, 0.58) 55%,
        rgba(20, 25, 34, 0.16) 80%,
        rgba(20, 25, 34, 0) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Image Overlay for better text readability */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245, 237, 224, 0.3) 0%, rgba(237, 229, 216, 0.2) 50%, rgba(232, 221, 208, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Hero Content - Better Responsive Grid */
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    min-height: 70vh;
}

.hero-text {
    width: 100%;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
}

.subtitle-line {
    width: clamp(30px, 8vw, 50px);
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-amber), transparent);
    box-shadow: 0 0 12px rgba(201, 169, 97, 0.7);
}

.subtitle-text {
    color: var(--heading-color);
    font-size: clamp(0.8rem, 2vw, 1rem);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.title-word {
    display: block;
    position: relative;
    color: var(--heading-color);
    -webkit-text-stroke: 1px rgba(183, 122, 53, 0.65);
    text-stroke: 1px rgba(183, 122, 53, 0.65);
    text-shadow: 
        0 0 24px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(0, 0, 0, 1);
    opacity: 0;
    transform: translateY(100px);
}

/* Glitch Effect */
.glitch-effect {
    position: relative;
}

.glitch-effect::before,
.glitch-effect::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-effect::before {
    animation: glitch-1 2s infinite;
    color: var(--burnt-orange);
    z-index: -1;
}

.glitch-effect::after {
    animation: glitch-2 2s infinite;
    color: var(--accent-gold);
    z-index: -2;
}

.hero-tagline {
    margin-bottom: 2rem;
    opacity: 0;
}

.tagline-text {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--heading-color);
    font-style: italic;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.2),
        0 0 15px rgba(255, 255, 255, 0.1);
}

/* Typewriter Effect */
.typewriter-text {
    border-right: 2px solid rgba(255, 255, 255, 0.4);
    animation: typewriter 3s steps(22) 1s forwards, blink 1s infinite;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.hero-description {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 3rem;
    opacity: 0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    gap: clamp(1rem, 4vw, 2rem);
    margin-bottom: 3rem;
    opacity: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: var(--lightning-gold);
    line-height: 1;
    text-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
}

.stat-label {
    font-size: clamp(0.7rem, 1.5vw, 0.85rem);
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    flex-wrap: wrap;
}

/* Hero Visual - Better Responsive Layout */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.book-container {
    position: relative;
    opacity: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Survivor Silhouette */
.survivor-silhouette {
    position: absolute;
    top: clamp(-60px, -8vw, -80px);
    left: clamp(-30px, -4vw, -40px);
    z-index: 1;
    opacity: 0.6;
}

.silhouette-figure {
    width: clamp(45px, 6vw, 60px);
    height: clamp(120px, 16vw, 160px);
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 70%,
            transparent 100%);
    clip-path: polygon(40% 0%, 60% 0%, 65% 15%, 70% 25%,
            75% 35%, 80% 50%, 75% 65%, 70% 80%,
            60% 90%, 55% 100%, 45% 100%, 40% 90%,
            30% 80%, 25% 65%, 20% 50%, 25% 35%,
            30% 25%, 35% 15%);
    animation: silhouette-sway 4s ease-in-out infinite;
}

.silhouette-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(201, 169, 97, 0.3) 0%,
            transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
}

/* 3D Book Scene - Improved Responsive */
.book-3d-scene {
    position: relative;
    perspective: 1000px;
}

.book-3d {
    position: relative;
    width: clamp(200px, 25vw, 320px);
    height: clamp(260px, 32vw, 420px);
    transform-style: preserve-3d;
    transition: transform var(--transition-medium);
    cursor: pointer;
}

.book-3d:hover {
    transform: rotateY(-15deg) rotateX(5deg) scale(1.05);
}

.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--storm-blue);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 35px rgba(201, 169, 97, 0.3);
}

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

.book-lightning-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 0%,
            rgba(201, 169, 97, 0.2) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.book-3d:hover .book-lightning-overlay {
    opacity: 1;
}

.book-spine {
    position: absolute;
    right: -20px;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(to right, var(--storm-gray), var(--storm-blue));
    transform: rotateY(90deg);
    transform-origin: left;
}

.book-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--storm-gray);
    transform: translateZ(-20px);
    border-radius: 8px;
}

.book-storm-aura {
    position: absolute;
    top: clamp(-30px, -4vw, -40px);
    left: clamp(-30px, -4vw, -40px);
    right: clamp(-30px, -4vw, -40px);
    bottom: clamp(-30px, -4vw, -40px);
    background: radial-gradient(circle,
            rgba(139, 90, 90, 0.2) 0%,
            transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity var(--transition-medium);
    animation: storm-aura 4s ease-in-out infinite;
}

/* Storm Elements */
.storm-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.storm-element {
    position: absolute;
    color: var(--lightning-gold);
    font-size: clamp(1rem, 2vw, 1.2rem);
    opacity: 0.4;
    animation: storm-float 6s ease-in-out infinite;
}

.thunder-icon {
    top: 15%;
    left: -8%;
    animation-delay: 0s;
}

.wind-icon {
    top: 55%;
    right: -8%;
    animation-delay: 2s;
}

.cloud-icon {
    bottom: 15%;
    left: 8%;
    animation-delay: 4s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--medium-gray);
    opacity: 0;
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-text {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.scroll-arrow {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--lightning-gold);
}

/* Audio Controls */
.audio-controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
}

.audio-btn {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background: rgba(201, 169, 97, 0.2);
    border: 1px solid var(--lightning-gold);
    border-radius: 50%;
    color: var(--lightning-gold);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    cursor: pointer;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.audio-btn:hover {
    background: var(--lightning-gold);
    color: var(--storm-dark);
    transform: scale(1.1);
}

/* Buttons - Improved Responsive */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border: none;
    border-radius: 50px;
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 1rem);
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--transition-fast);
    z-index: 1;
    min-width: 120px;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-bg);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.9), 0 0 38px rgba(232, 168, 92, 0.5);
    font-weight: 700;
    border: 1px solid rgba(201, 169, 97, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 1), 0 0 46px rgba(194, 74, 29, 0.7);
    background: var(--deep-sunset);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-gold);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 22px rgba(201, 169, 97, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.25), rgba(212, 165, 116, 0.25));
    color: var(--accent-gold);
    border-color: var(--accent-amber);
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(201, 169, 97, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--warm-white);
    border: 2px solid rgba(201, 169, 97, 0.6);
    box-shadow: 0 0 18px rgba(201, 169, 97, 0.2);
}

.btn-outline:hover {
    background: rgba(201, 169, 97, 0.15);
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    box-shadow: 0 0 28px rgba(201, 169, 97, 0.4);
}

/* Storm Buttons */
.storm-btn {
    position: relative;
    overflow: hidden;
}

.btn-lightning {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(201, 169, 97, 0.5),
            rgba(212, 165, 116, 0.4),
            transparent);
    transition: left 0.6s ease;
    box-shadow: 0 0 25px rgba(201, 169, 97, 0.6);
}

.storm-btn:hover .btn-lightning {
    left: 100%;
}

/* Section Styles - Improved Responsive */
.section {
    padding: clamp(60px, 10vw, 100px) 0;
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    background: var(--primary-bg);
}

.section:nth-child(even) {
    background: var(--secondary-bg);
    position: relative;
}

.section:nth-child(even)::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.4), rgba(212, 165, 116, 0.3), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 8vw, 5rem);
}

.section-subtitle {
    display: block;
    color: var(--accent-gold);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 18px rgba(201, 169, 97, 0.5);
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 2rem;
    line-height: 1.2;
    text-shadow: 0 0 28px rgba(0, 0, 0, 0.9);
    background: none;
    -webkit-background-clip: border-box;
    -webkit-text-fill-color: var(--heading-color);
    background-clip: border-box;
}

.section-line {
    width: clamp(60px, 15vw, 100px);
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--highlight-gold), var(--accent-gold), transparent);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 18px rgba(232, 168, 92, 0.7);
}

.about .section-line {
    background: linear-gradient(90deg, transparent, var(--accent-olive), transparent);
    box-shadow: 0 0 16px rgba(94, 107, 60, 0.7);
}

/* About Section - Improved Responsive */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
    /* gap: 20px !important; */
    padding: 80px 100px !important;
    width: 100%;
}

.about-image {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    transform: perspective(1000px) rotateY(-3deg);
    transition: transform var(--transition-medium);
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 0 30px rgba(201, 169, 97, 0.2);
}

.image-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 40px rgba(201, 169, 97, 0.3);
}

.author-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    transition: transform var(--transition-medium);
}

/* .image-container img {
    object-fit: cover !important;
    background-repeat: no-repeat !important;
    overflow: hidden !important;
    padding-top: 30px !important;
     padding-bottom: 30px !important;
} */

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    border-radius: 20px;
    pointer-events: none;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 90, 90, 0.25), rgba(201, 169, 97, 0.25));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid rgba(201, 169, 97, 0.4);
    border-radius: 25px;
    opacity: 0.6;
    transition: opacity var(--transition-medium);
    pointer-events: none;
}

.image-container:hover .image-frame {
    opacity: 0.8;
    border-color: rgba(201, 169, 97, 0.6);
}

.floating-quotes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.quote-item {
    position: absolute;
    background: rgba(20, 10, 7, 0.95);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 10px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    max-width: clamp(150px, 25vw, 200px);
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-fast);
    border: 1px solid var(--lightning-gold);
}

.quote-item:nth-child(1) {
    top: 20%;
    right: clamp(-40px, -5vw, -50px);
}

.quote-item:nth-child(2) {
    bottom: 30%;
    left: clamp(-40px, -5vw, -50px);
}

.image-container:hover .quote-item {
    opacity: 1;
    transform: translateY(0);
}

.about-text {
    width: 100%;
}

.about-name {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.about-role {
    margin-bottom: 2rem;
}

.role-text {
    color: var(--lightning-gold);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 1px;
}

.about-description {
    margin-bottom: 3rem;
}

.description-text {
    color: var(--text-primary);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-achievements {
    margin-bottom: 3rem;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(59, 35, 24, 0.96);
    border-radius: 15px;
    border-left: 4px solid var(--accent-olive);
    transition: all var(--transition-fast);
}

.achievement-item:hover {
    background: rgba(139, 90, 90, 0.25);
    transform: translateX(10px);
}

.achievement-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(45deg, var(--thunder-blue), var(--lightning-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--storm-dark);
    flex-shrink: 0;
}

.achievement-text h4 {
    color: var(--pure-white);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
}

.achievement-text p {
    color: var(--medium-gray);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.signature {
    text-align: center;
}

.signature-img {
    max-width: clamp(150px, 25vw, 200px);
    height: auto;
    opacity: 0.8;
}

/* Books Section - Improved Responsive */
.books-content {
    width: 100%;
}

.book-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: center;
    width: 100%;
}

/* About Author & Book section backgrounds */
.section.about {
    background: var(--secondary-bg);
}

/* Book series & roadmap — matches About band (secondary-bg) */
.section.book-series {
    background: var(--secondary-bg);
}

.series-byline {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--accent-gold);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 0.5rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.series-mission {
    font-family: var(--font-primary);
    font-size: clamp(1.15rem, 2.8vw, 1.45rem);
    font-style: italic;
    color: var(--heading-color);
    margin-top: 1rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.45;
}

.series-overlap-note {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 1.25rem 1.5rem;
    background: rgba(46, 57, 75, 0.65);
    border: 1px solid rgba(212, 178, 79, 0.35);
    border-radius: 14px;
    border-left: 4px solid var(--accent-gold);
}

.series-overlap-note p {
    color: var(--text-primary);
    font-size: clamp(0.95rem, 1.9vw, 1.05rem);
    line-height: 1.75;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.series-overlap-note .fa-book-open {
    color: var(--accent-gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.series-volumes {
    list-style: none;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.series-volume-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.35rem 1.5rem;
    background: rgba(20, 25, 34, 0.55);
    border-radius: 14px;
    border: 1px solid rgba(106, 107, 74, 0.45);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.series-volume-card:hover {
    border-color: rgba(212, 178, 79, 0.45);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.series-volume-num {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    min-width: 2.25rem;
    text-align: center;
    padding-top: 0.15rem;
}

.series-volume-title {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    font-weight: 700;
    color: var(--heading-color);
    margin: 0 0 0.5rem;
    line-height: 1.35;
}

.series-volume-desc {
    color: var(--text-primary);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    line-height: 1.7;
    margin: 0;
}

.series-collab {
    color: var(--highlight-gold);
    font-weight: 500;
}

.series-whats-next {
    margin-top: clamp(3rem, 8vw, 4.5rem);
    padding-top: clamp(2rem, 5vw, 3rem);
    border-top: 1px solid rgba(212, 178, 79, 0.2);
}

.series-whats-next-header {
    margin-bottom: 2.5rem;
}

.series-whats-next-title {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
}

.series-next-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.25rem, 4vw, 2rem);
    max-width: 900px;
    margin: 0 auto;
}

.series-next-card {
    padding: 1.75rem 1.5rem;
    background: rgba(46, 57, 75, 0.5);
    border-radius: 14px;
    border: 1px solid rgba(212, 178, 79, 0.25);
    text-align: center;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.series-next-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 178, 79, 0.5);
}

.series-next-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--burnt-orange), var(--deep-sunset));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--heading-color);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.series-next-card-title {
    font-family: var(--font-primary);
    font-size: clamp(1.1rem, 2.2vw, 1.3rem);
    color: var(--heading-color);
    margin: 0 0 0.65rem;
}

.series-next-card-text {
    color: var(--text-primary);
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .series-next-grid {
        grid-template-columns: 1fr;
    }

    .series-volume-card {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .series-volume-num {
        text-align: left;
    }
}

.section.books {
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--primary-bg) 60%, var(--footer-bg) 100%);
}

/* Second books band: upcoming title — same palette, subtle separation */
.section.books.upcoming-book {
    border-top: 1px solid rgba(212, 178, 79, 0.28);
    box-shadow: inset 0 24px 48px rgba(0, 0, 0, 0.12);
}

/* Genesis Reframed preview spread card */
.section.books.upcoming-book .genesis-preview-card {
    width: fit-content;
    max-width: min(clamp(260px, 58vw, 480px), 100%);
    margin: clamp(1.5rem, 3.5vw, 2rem) auto 0;
    padding: 0;
    border: none;
    background: transparent;
}

.section.books.upcoming-book .genesis-preview-card-inner {
    position: relative;
    width: fit-content;
    max-width: 100%;
    line-height: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 178, 79, 0.35);
    border-left: 3px solid var(--accent-gold);
    background: transparent;
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.section.books.upcoming-book .genesis-preview-card-inner::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(212, 178, 79, 0.06) 0%,
        transparent 22%,
        transparent 78%,
        rgba(0, 0, 0, 0.12) 100%
    );
    z-index: 1;
}

.section.books.upcoming-book .genesis-preview-card:hover .genesis-preview-card-inner {
    border-color: rgba(212, 178, 79, 0.55);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(212, 178, 79, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.section.books.upcoming-book .genesis-preview-card img {
    display: block;
    width: auto;
    max-width: clamp(260px, 58vw, 480px);
    height: auto;
    max-height: clamp(200px, 42vw, 320px);
    object-fit: contain;
    object-position: center;
}

/* Author research card — about section */
.section.about .author-research-card {
    max-width: 860px;
    margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
    padding: clamp(0.9rem, 2vw, 1.15rem) clamp(1.35rem, 3.2vw, 2rem);
    text-align: center;
    background: rgba(20, 25, 34, 0.55);
    border: 1px solid rgba(212, 178, 79, 0.35);
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.section.about .author-research-card:hover {
    border-color: rgba(212, 178, 79, 0.5);
    box-shadow:
        0 10px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.author-research-card-title {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 2.1vw, 1.35rem);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.25;
    margin: 0 auto 0.5rem;
    max-width: 36ch;
}

.author-research-card-divider {
    width: clamp(36px, 8vw, 52px);
    height: 2px;
    margin: 0 auto 0.65rem;
    background: linear-gradient(90deg, transparent, rgba(212, 178, 79, 0.55), transparent);
    border-radius: 2px;
}

.author-research-card-lead {
    font-family: var(--font-secondary);
    font-size: clamp(0.88rem, 1.55vw, 0.95rem);
    line-height: 1.55;
    color: var(--text-primary);
    margin: 0 auto 0.65rem;
    max-width: 100%;
}

.author-research-card-body {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
}

.author-research-card-body p {
    font-family: var(--font-secondary);
    font-size: clamp(0.8rem, 1.4vw, 0.875rem);
    line-height: 1.52;
    color: var(--warm-gray);
    margin: 0 0 0.45rem;
}

.author-research-card-body p:last-child {
    margin-bottom: 0;
}

@media (min-width: 720px) {
    .author-research-card-body {
        column-count: 2;
        column-gap: clamp(1.25rem, 3vw, 1.75rem);
    }

    .author-research-card-body p {
        break-inside: avoid;
        margin-bottom: 0.5rem;
    }
}

/* Book highlights — home page */
.book-highlights-section {
    position: relative;
    background: var(--secondary-bg);
    border-top: 1px solid rgba(212, 178, 79, 0.22);
    border-bottom: 1px solid rgba(212, 178, 79, 0.22);
    overflow: hidden;
    max-width: 100%;
}

.book-highlights-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 55% at 50% -20%, rgba(183, 122, 53, 0.18), transparent 55%),
        radial-gradient(ellipse 70% 50% at 100% 100%, rgba(141, 90, 44, 0.12), transparent 50%),
        radial-gradient(ellipse 60% 45% at 0% 80%, rgba(212, 178, 79, 0.08), transparent 45%);
}

.book-highlights-section .section-header {
    position: relative;
    z-index: 1;
}

.book-highlights-section .section-subtitle {
    color: var(--accent-gold);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: clamp(0.8rem, 1.6vw, 0.95rem);
}

.book-highlights-section .section-title {
    color: var(--heading-color);
}

.book-highlights-lead {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: -0.5rem auto 2.75rem;
    text-align: center;
    font-family: var(--font-secondary);
    font-size: clamp(0.95rem, 1.9vw, 1.08rem);
    line-height: 1.75;
    color: var(--text-primary);
    opacity: 0.92;
}

.book-highlights-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.1rem, 3vw, 1.75rem);
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 0.25rem;
}

.bh-card {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    cursor: zoom-in;
    text-align: left;
    font: inherit;
    color: inherit;
    background: transparent;
    border-radius: 14px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.bh-card:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

.bh-card:focus:not(:focus-visible) {
    outline: none;
}

.bh-card-inner {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(212, 178, 79, 0.28);
    background: rgba(20, 25, 34, 0.45);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.bh-card:hover .bh-card-inner,
.bh-card:focus-visible .bh-card-inner {
    border-color: rgba(212, 178, 79, 0.5);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(212, 178, 79, 0.15);
}

.bh-card:hover,
.bh-card:focus-visible {
    transform: translateY(-6px);
}

.bh-card img {
    display: block;
    width: 100%;
    height: clamp(200px, 32vw, 320px);
    object-fit: cover;
    transition: transform 0.55s ease;
}

.bh-card:hover img,
.bh-card:focus-visible img {
    transform: scale(1.04);
}

.bh-img-author-focus {
    object-position: center 18%;
}

.bh-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    font-family: var(--font-secondary);
    font-size: clamp(0.78rem, 1.5vw, 0.88rem);
    color: var(--accent-gold);
    background: rgba(13, 18, 26, 0.72);
    border-top: 1px solid rgba(212, 178, 79, 0.2);
}

.bh-card-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.08) 50%, transparent 65%);
    transform: translateX(-120%);
    transition: transform 0.65s ease;
}

.bh-card:hover .bh-card-shine,
.bh-card:focus-visible .bh-card-shine {
    transform: translateX(120%);
}

.bh-lightbox {
    border: none;
    padding: 0;
    max-width: min(92vw, 980px);
    width: 100%;
    background: transparent;
}

.bh-lightbox::backdrop {
    background: rgba(8, 10, 14, 0.88);
    backdrop-filter: blur(6px);
}

.bh-lightbox-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(212, 178, 79, 0.35);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
}

.bh-lightbox-wrap img {
    display: block;
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    background: #0d121a;
}

.bh-lightbox-close {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 178, 79, 0.45);
    border-radius: 50%;
    background: rgba(13, 18, 26, 0.85);
    color: var(--accent-gold);
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.bh-lightbox-close:hover {
    background: rgba(212, 178, 79, 0.15);
    border-color: rgba(212, 178, 79, 0.65);
}

@media (max-width: 640px) {
    .book-highlights-grid {
        grid-template-columns: 1fr;
    }
}

/* Our Mission & Our Goals cards — home page */
.section.our-mission-wrap,
.section.our-goals-wrap,
.section.mission-goals-wrap {
    background: var(--primary-bg);
    position: relative;
}

.section.our-mission-wrap::before,
.section.our-goals-wrap::before {
    display: none;
}

.section.our-mission-wrap {
    border-top: 1px solid rgba(212, 178, 79, 0.18);
    padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.section.our-goals-wrap {
    padding-top: 0;
    padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
    border-bottom: 1px solid rgba(212, 178, 79, 0.18);
}

.section.our-mission-wrap .mission-goals-card,
.section.our-goals-wrap .mission-goals-card,
.section.mission-goals-wrap .mission-goals-card {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(0.9rem, 2vw, 1.15rem) clamp(1.35rem, 3.2vw, 2rem);
    text-align: center;
    background: rgba(20, 25, 34, 0.55);
    border: 1px solid rgba(212, 178, 79, 0.35);
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.section.our-mission-wrap .mission-goals-card:hover,
.section.our-goals-wrap .mission-goals-card:hover,
.section.mission-goals-wrap .mission-goals-card:hover {
    border-color: rgba(212, 178, 79, 0.5);
    box-shadow:
        0 10px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.our-goals-card .mission-goals-list {
    margin-top: 0.25rem;
}

.mission-goals-note {
    font-family: var(--font-secondary);
    font-size: clamp(0.8rem, 1.4vw, 0.875rem);
    line-height: 1.6;
    color: var(--warm-gray);
    margin: 0 auto 0.5rem;
    max-width: 720px;
}

.mission-goals-list {
    list-style: none;
    margin: 0.5rem auto 0;
    padding: 0;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem 1.25rem;
    text-align: left;
}

.mission-goals-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-family: var(--font-secondary);
    font-size: clamp(0.78rem, 1.35vw, 0.86rem);
    line-height: 1.52;
    color: var(--text-primary);
}

.mission-goal-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--deep-sunset));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--heading-color);
    border: 1px solid rgba(212, 178, 79, 0.35);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.mission-goals-list li:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 520px;
    justify-self: center;
    width: 100%;
}

@media (max-width: 720px) {
    .mission-goals-list {
        grid-template-columns: 1fr;
    }

    .mission-goals-list li:nth-child(5) {
        max-width: none;
    }
}

/* Author research, mission & goals — books page */
.section.author-mission-wrap {
    background: var(--secondary-bg);
    border-top: 1px solid rgba(212, 178, 79, 0.22);
}

.section.author-mission-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 178, 79, 0.4), transparent);
}

.author-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(2rem, 5vw, 3.5rem);
    max-width: 1140px;
    margin: 0 auto;
    align-items: start;
}

.mission-panel {
    text-align: center;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.mission-panel-title {
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.35;
    margin: 0 auto 1.25rem;
    max-width: 28ch;
}

.mission-panel-divider {
    width: clamp(48px, 12vw, 72px);
    height: 2px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(90deg, transparent, rgba(212, 178, 79, 0.55), transparent);
    border-radius: 2px;
}

.mission-panel-lead {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 1.9vw, 1.12rem);
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0 auto 1.5rem;
    max-width: 520px;
}

.mission-panel-body {
    max-width: 520px;
    margin: 0 auto;
}

.mission-panel-body p {
    font-family: var(--font-secondary);
    font-size: clamp(0.88rem, 1.6vw, 0.98rem);
    line-height: 1.75;
    color: var(--warm-gray);
    margin: 0 0 1.1rem;
}

.mission-panel-body p:last-child {
    margin-bottom: 0;
}

.section.our-goals {
    background: var(--primary-bg);
    border-top: 1px solid rgba(212, 178, 79, 0.18);
}

.our-goals-header {
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.our-goals-title {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: clamp(1.1rem, 3vw, 1.75rem);
    max-width: 1100px;
    margin: 0 auto;
}

.goal-card {
    grid-column: span 2;
    text-align: center;
    padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1rem, 2.5vw, 1.35rem);
    background: rgba(46, 57, 75, 0.55);
    border: 1px solid rgba(212, 178, 79, 0.28);
    border-radius: 14px;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.goal-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 178, 79, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.goal-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.goal-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.goal-icon {
    width: clamp(52px, 10vw, 64px);
    height: clamp(52px, 10vw, 64px);
    margin: 0 auto 1.15rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--deep-sunset));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    color: var(--heading-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 178, 79, 0.35);
}

.goal-text {
    font-family: var(--font-secondary);
    font-size: clamp(0.9rem, 1.7vw, 1rem);
    line-height: 1.65;
    color: var(--text-primary);
    margin: 0;
}

@media (max-width: 900px) {
    .author-mission-grid {
        grid-template-columns: 1fr;
        gap: clamp(2.5rem, 6vw, 3.5rem);
    }

    .mission-panel + .mission-panel {
        padding-top: clamp(1.5rem, 4vw, 2.5rem);
        border-top: 1px solid rgba(212, 178, 79, 0.15);
    }

    .goals-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .goal-card,
    .goal-card:nth-child(4),
    .goal-card:nth-child(5) {
        grid-column: 1;
    }
}

@media (min-width: 601px) and (max-width: 900px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
    }

    .goal-card,
    .goal-card:nth-child(4),
    .goal-card:nth-child(5) {
        grid-column: auto;
    }

    .goal-card:last-child:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 360px;
        justify-self: center;
        width: 100%;
    }
}

.book-showcase--reverse {
    grid-template-columns: 1fr 1fr;
}

.book-showcase--reverse .book-display {
    order: 2;
}

.book-showcase--reverse .book-info {
    order: 1;
}

.upcoming-book-display {
    position: relative;
}

.upcoming-book-ribbon {
    position: absolute;
    top: clamp(0.5rem, 2vw, 1.25rem);
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    z-index: 6;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--burnt-orange) 100%);
    color: var(--storm-dark);
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: clamp(0.65rem, 1.4vw, 0.78rem);
    padding: 0.5rem 1.35rem;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.book-badge--upcoming {
    background: linear-gradient(45deg, rgba(212, 178, 79, 0.95), var(--lightning-gold));
    color: var(--storm-dark);
    box-shadow: 0 0 20px rgba(212, 178, 79, 0.35);
}

.book-title--long {
    font-size: clamp(1.35rem, 3.2vw, 2rem);
    line-height: 1.25;
}

.book-upcoming-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1.75rem;
}

.upcoming-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    font-family: var(--font-secondary);
    font-size: clamp(0.78rem, 1.5vw, 0.88rem);
    color: var(--accent-gold);
    background: rgba(20, 25, 34, 0.55);
    border: 1px solid rgba(212, 178, 79, 0.3);
}

.upcoming-meta-pill i {
    opacity: 0.9;
    font-size: 0.85em;
}

.book-description-note {
    font-style: italic;
    color: var(--medium-gray) !important;
    font-size: clamp(0.92rem, 1.8vw, 1rem) !important;
}

.btn-upcoming-soon {
    cursor: not-allowed;
    opacity: 0.88;
}

.btn-upcoming-soon:disabled {
    pointer-events: none;
}

.btn-upcoming-soon:disabled:hover .btn-lightning {
    opacity: 0;
}

.books .section-title,
.book-title {
    color: var(--highlight-gold);
    -webkit-text-fill-color: var(--highlight-gold);
}

.book-subtitle {
    color: var(--accent-gold);
}

.book-description p {
    color: var(--text-primary);
}

.book-display {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.book-3d-container {
    position: relative;
    perspective: 1000px;
}

.book-3d-wrapper {
    position: relative;
    width: clamp(250px, 30vw, 350px);
    height: clamp(320px, 38vw, 450px);
    transform-style: preserve-3d;
    transition: transform var(--transition-medium);
    cursor: pointer;
}

.book-3d-wrapper:hover {
    transform: rotateY(-20deg) rotateX(5deg) scale(1.05);
}

.book-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--storm-blue);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--storm-glow);
}

.book-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.book-spine-3d {
    position: absolute;
    right: -25px;
    top: 0;
    width: 25px;
    height: 100%;
    background: linear-gradient(to right, var(--storm-gray), var(--storm-blue));
    transform: rotateY(90deg);
    transform-origin: left;
}

.book-back-3d {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--storm-gray);
    transform: translateZ(-25px);
    border-radius: 10px;
}

.book-glow-effect {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3) 0%, transparent 70%);
    border-radius: 20px;
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.book-3d-wrapper:hover+.book-glow-effect {
    opacity: 1;
}

.book-info {
    width: 100%;
}

.book-badge {
    display: inline-block;
    background: linear-gradient(45deg, var(--thunder-blue), var(--lightning-gold));
    color: var(--storm-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.book-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-shadow: 1px 1px 5px rgba(201, 169, 97, 0.2);
    background: linear-gradient(135deg, #ebd28b 0%, #d4b24f 50%, #b77a35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.book-subtitle {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 2rem;
    text-shadow: 0 0 18px rgba(201, 169, 97, 0.6);
}

.book-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stars {
    color: var(--accent-gold);
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
    filter: drop-shadow(0 0 6px rgba(201, 169, 97, 0.4));
}

.rating-text {
    color: var(--medium-gray);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.book-description {
    margin-bottom: 2rem;
}

.book-description p {
    color: var(--light-gray);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
}

.book-details {
    margin-bottom: 3rem;
}

.detail-item {
    display: flex;
    margin-bottom: 0.5rem;
}

.detail-label {
    font-weight: 600;
    color: var(--lightning-gold);
    min-width: clamp(80px, 15vw, 100px);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.detail-value {
    color: var(--light-gray);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.book-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Journey Section - Improved Responsive */
.journey-timeline {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--thunder-blue), var(--lightning-gold));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
    margin-left: auto;
    margin-right: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 20px;
    height: 20px;
    background: var(--lightning-gold);
    border: 4px solid var(--storm-dark);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.marker-inner {
    width: 100%;
    height: 100%;
    background: var(--lightning-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.timeline-content {
    width: 45%;
    background: rgba(139, 90, 90, 0.15);
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 15px;
    border: 1px solid rgba(139, 90, 90, 0.3);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
}

.timeline-content:hover {
    background: rgba(139, 90, 90, 0.25);
    transform: translateY(-5px);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
}

.timeline-date {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--lightning-gold);
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--pure-white);
    margin-bottom: 1rem;
}

.timeline-text {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

/* Art Gallery Section - Improved Responsive */
.gallery-slider {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-track {
    display: flex;
    transition: transform var(--transition-medium);
}

.gallery-card {
    min-width: 100%;
    padding: clamp(0.8rem, 2vw, 1.2rem);
    background: linear-gradient(135deg, #253043 0%, #2e394b 50%, #364152 100%);
    border-radius: 15px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
    opacity: 0.7;
    transform: scale(0.95);
    transition: all var(--transition-medium);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08), 0 0 20px rgba(201, 169, 97, 0.12);
}

.gallery-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(201, 169, 97, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 30px rgba(201, 169, 97, 0.2);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: clamp(280px, 35vw, 380px);
    border-radius: 12px;
    overflow: hidden;
    background: #1f2735;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform var(--transition-medium);
}

.gallery-card.active .gallery-image {
    transform: scale(1.01);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: clamp(2rem, 4vw, 3rem);
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Testimonials Section - Improved Responsive */
.testimonials-slider {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-medium);
}

.testimonial-card {
    min-width: 100%;
    padding: clamp(2rem, 5vw, 3rem);
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid rgba(232, 168, 92, 0.4);
    backdrop-filter: blur(10px);
    text-align: center;
    opacity: 0.8;
    transform: scale(0.95);
    transition: all var(--transition-medium);
    box-shadow: 0 14px 46px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 0, 0, 0.8);
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: rgba(244, 194, 122, 0.8);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 1), 0 0 55px rgba(232, 168, 92, 0.35);
}

.testimonial-quote {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--highlight-gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 1);
}

.testimonial-text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.9);
}

.testimonial-rating {
    color: var(--highlight-gold);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 2rem;
    text-shadow: 0 0 12px rgba(201, 169, 97, 0.6);
    filter: drop-shadow(0 0 6px rgba(201, 169, 97, 0.4));
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.author-avatar {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--lightning-gold);
    flex-shrink: 0;
}

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

.author-name {
    color: var(--heading-color);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    color: var(--medium-gray);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.gallery-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.gallery-btn {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background: rgba(201, 169, 97, 0.25);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    font-size: clamp(1rem, 2vw, 1.2rem);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 0 18px rgba(201, 169, 97, 0.3);
}

.gallery-btn:hover {
    background: var(--accent-gold);
    color: var(--cover-dark);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.7);
}

.gallery-dots {
    display: flex;
    gap: 1rem;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.2);
}

.gallery-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.6);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.testimonial-btn {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background: rgba(201, 169, 97, 0.25);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    font-size: clamp(1rem, 2vw, 1.2rem);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 0 18px rgba(201, 169, 97, 0.3);
}

.testimonial-btn:hover {
    background: var(--accent-gold);
    color: var(--cover-dark);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.7);
}

.testimonial-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(201, 169, 97, 0.3);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 0 10px rgba(201, 169, 97, 0.2);
}

.dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.6);
}

/* Contact Section - Improved Responsive */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 3rem);
    align-items: start;
    width: 100%;
}

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

.section.art-gallery {
    background: linear-gradient(135deg, #8d5a2c 0%, #232d3d 55%, #141922 100%);
}

.contact-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--heading-color);
    text-shadow: 1px 1px 5px rgba(201, 169, 97, 0.2);
    margin-bottom: 1.5rem;
}

.contact-description {
    color: var(--text-primary);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
    text-shadow: none;
    margin-bottom: 3rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(59, 35, 24, 0.95);
    border-radius: 15px;
    transition: all var(--transition-fast);
    border: 1px solid rgba(94, 107, 60, 0.6);
}

.contact-item:hover {
    background: rgba(201, 169, 97, 0.25);
    transform: translateX(10px);
    box-shadow: 0 0 22px rgba(201, 169, 97, 0.3);
}

.contact-icon {
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    background: linear-gradient(135deg, var(--burnt-orange), var(--deep-sunset));
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: var(--heading-color);
    flex-shrink: 0;
}

.contact-text-info h4 {
    color: var(--heading-color);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.contact-text-info p {
    color: var(--text-primary);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    background: rgba(201, 169, 97, 0.25);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: clamp(1rem, 2vw, 1.2rem);
    transition: all var(--transition-fast);
    box-shadow: 0 0 18px rgba(201, 169, 97, 0.3);
}

.social-link:hover {
    background: var(--accent-gold);
    color: var(--cover-dark);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.7);
}

/* Contact Form - Improved Responsive */
.contact-form-container {
    background: linear-gradient(135deg, #232d3d 0%, #141922 60%, #0d121a 100%);
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: 20px;
    border: 1px solid rgba(94, 107, 60, 0.7);
    backdrop-filter: blur(10px);
    width: 100%;
    box-shadow: 0 14px 46px rgba(0, 0, 0, 1), 0 0 40px rgba(0, 0, 0, 0.9);
}

.contact-form {
    width: 100%;
}

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

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

.form-input {
    width: 100%;
    padding: clamp(1rem, 2vw, 1.2rem);
    background: #232d3d;
    border: 1px solid rgba(94, 107, 60, 0.7);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: #232d3d;
    box-shadow: 0 0 26px rgba(232, 168, 92, 0.5), 0 0 40px rgba(0, 0, 0, 0.9);
}

.form-input::placeholder {
    color: var(--medium-gray);
}

.form-textarea {
    resize: vertical;
    min-height: clamp(100px, 15vw, 120px);
}

.form-label {
    position: absolute;
    top: clamp(1rem, 2vw, 1.2rem);
    left: clamp(1rem, 2vw, 1.2rem);
    color: var(--medium-gray);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-input:focus+.form-label,
.form-input:not(:placeholder-shown)+.form-label {
    top: -0.5rem;
    left: 1rem;
    font-size: clamp(0.7rem, 1.5vw, 0.8rem);
    color: var(--lightning-gold);
    background: var(--storm-dark);
    padding: 0 0.5rem;
}

.form-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Footer - Improved Responsive */
.footer {
    background: var(--footer-bg);
    border-top: 2px solid rgba(232, 168, 92, 0.4);
    padding: clamp(3rem, 6vw, 4rem) 0 2rem;
    width: 100%;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.footer-content {
    width: 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    margin-bottom: 3rem;
}

.footer-brand {
    width: 100%;
}

.footer-title {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: var(--accent-gold);
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 12px rgba(201, 169, 97, 0.5);
}

.footer-description {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.footer-social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    width: clamp(40px, 6vw, 45px);
    height: clamp(40px, 6vw, 45px);
    background: rgba(201, 169, 97, 0.25);
    border: 1px solid var(--accent-gold);
    border-radius: 50%;
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    box-shadow: 0 0 18px rgba(201, 169, 97, 0.3);
}

.footer-social-link:hover {
    background: var(--accent-gold);
    color: var(--cover-dark);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(201, 169, 97, 0.7);
}

.footer-newsletter {
    text-align: left;
    width: 100%;
}

.footer-column-title {
    color: var(--pure-white);
    font-size: clamp(1.1rem, 2vw, 1.2rem);
    margin-bottom: 1.5rem;
}

.newsletter-text {
    color: var(--light-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: clamp(0.7rem, 1.5vw, 0.8rem);
    background: rgba(20, 25, 34, 0.85);
    border: 1px solid rgba(94, 107, 60, 0.7);
    border-radius: 8px;
    color: var(--pure-white);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.newsletter-input::placeholder {
    color: var(--medium-gray);
}

.newsletter-btn {
    padding: clamp(0.7rem, 1.5vw, 0.8rem) clamp(0.8rem, 1.8vw, 1rem);
    background: linear-gradient(45deg, var(--burnt-orange), var(--accent-gold));
    border: none;
    border-radius: 8px;
    color: var(--storm-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(232, 168, 92, 0.25);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--medium-gray);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--medium-gray);
    text-decoration: none;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    transition: color var(--transition-fast);
}

.legal-link:hover {
    color: var(--accent-gold);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loadingProgress {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

@keyframes orbitSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes orbitSpinReverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

@keyframes corePulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 30px rgba(212, 178, 79, 0.55), inset 0 0 18px rgba(20, 25, 34, 0.9);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0 0 42px rgba(235, 210, 139, 0.7), inset 0 0 22px rgba(20, 25, 34, 0.95);
    }
}

@keyframes symbolFloat {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-3px);
        opacity: 0.85;
    }
}

@keyframes dustFloat {
    0% {
        transform: translate3d(0, 10px, 0);
        opacity: 0;
    }
    10% {
        opacity: 0.35;
    }
    50% {
        transform: translate3d(-8px, -18px, 0);
        opacity: 0.5;
    }
    90% {
        opacity: 0;
        transform: translate3d(4px, -30px, 0);
    }
    100% {
        opacity: 0;
    }
}

@keyframes lightning-strike {

    0%,
    90%,
    100% {
        opacity: 0;
        transform: scaleY(0);
    }

    5%,
    10% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@keyframes cloud-drift {
    from {
        transform: translateX(-100px);
    }

    to {
        transform: translateX(calc(100vw + 100px));
    }
}

@keyframes rain-fall {
    from {
        transform: translateY(-100vh);
        opacity: 1;
    }

    to {
        transform: translateY(100vh);
        opacity: 0;
    }
}

@keyframes glitch-1 {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(2px, -2px);
    }

    40% {
        transform: translate(2px, 2px);
    }

    60% {
        transform: translate(-2px, -2px);
    }

    80% {
        transform: translate(-2px, 2px);
    }
}

@keyframes typewriter {
    from {
        width: 0;
    }

    to {
        width: 22ch;
    }
}

@keyframes blink {

    0%,
    50% {
        border-color: var(--lightning-gold);
    }

    51%,
    100% {
        border-color: transparent;
    }
}

@keyframes silhouette-sway {

    0%,
    100% {
        transform: rotate(-2deg);
    }

    50% {
        transform: rotate(2deg);
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes storm-aura {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes storm-float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Design - Mobile First Approach */
@media screen and (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }

    .container-fluid {
        padding: 0 15px;
    }

    .hero-content,
    .about-content,
    .book-showcase,
    .contact-content {
        gap: 2rem;
    }

    .nav-list {
        gap: 1.5rem;
    }
}

@media screen and (max-width: 968px) {
    .custom-cursor {
        display: none;
    }

    .nav-brand {
        min-width: 0;
        flex: 1;
        padding-right: 0.75rem;
    }

    .brand-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: clamp(1rem, 4.2vw, 1.35rem);
    }

    /* Full-screen menu: hide fully off-canvas (fixes partial strip / horizontal bleed on mobile) */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 100vw;
        height: 100%;
        min-height: 100vh;
        min-height: 100dvh;
        background: rgba(20, 10, 7, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translate3d(100%, 0, 0);
        visibility: hidden;
        pointer-events: none;
        transition: transform var(--transition-fast), visibility var(--transition-fast);
        z-index: 1001;
        overscroll-behavior: contain;
    }

    .nav-menu.show-menu {
        transform: translate3d(0, 0, 0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-close {
        display: block;
    }

    .hero-content,
    .about-content,
    .book-showcase,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text {
        order: 2;
    }

    .hero-visual {
        order: 1;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

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

    .hero {
        min-height: 100vh;
        min-height: 100dvh;
        padding-top: calc(var(--header-height) + 0.5rem);
        padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
    }

    .hero .container-fluid {
        max-width: 100%;
        padding-left: max(12px, env(safe-area-inset-left, 0px));
        padding-right: max(12px, env(safe-area-inset-right, 0px));
    }

    .hero-content {
        min-height: auto;
        gap: clamp(1.25rem, 4vw, 2rem);
    }

    .hero-subtitle {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 0.5rem;
    }

    .subtitle-text {
        white-space: normal;
        text-align: center;
        letter-spacing: 0.1em;
        max-width: min(100%, 22rem);
    }

    .subtitle-line {
        width: clamp(20px, 10vw, 36px);
    }

    .hero-title {
        line-height: 0.95;
    }

    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 38rem;
    }

    .book-3d-scene {
        max-width: 100%;
    }

    .book-3d {
        width: clamp(175px, 58vw, 280px);
        height: clamp(225px, 74vw, 360px);
    }

    .book-storm-aura {
        top: -12px;
        left: -12px;
        right: -12px;
        bottom: -12px;
    }

    /* Typewriter + nowrap breaks narrow layouts — show full tagline */
    .typewriter-text {
        white-space: normal;
        overflow: visible;
        width: auto !important;
        max-width: 100%;
        border-right: none !important;
        animation: none !important;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .hero-tagline {
        max-width: 100%;
    }

    .timeline-line {
        left: 2rem;
    }

    .timeline-marker {
        left: 2rem;
    }

    .timeline-content {
        width: calc(100% - 4rem);
        margin-left: 4rem;
        text-align: left;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        margin-left: 4rem;
        margin-right: 0;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .achievement-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .quote-item {
        position: static;
        margin-bottom: 1rem;
        opacity: 1;
        transform: none;
    }

    .floating-quotes {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .brand-subtitle {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 10px;
    }

    .container-fluid {
        padding: 0 10px;
    }

    .section {
        padding: 60px 0;
    }

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

    .testimonial-controls,
    .gallery-controls {
        gap: 1rem;
    }
    
    .gallery-slider {
        max-width: 100%;
    }
    
    .gallery-image-wrapper {
        height: clamp(250px, 50vw, 350px);
    }
    
    .gallery-card {
        padding: clamp(0.6rem, 1.5vw, 1rem);
    }

    .book-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .newsletter-input-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter-btn {
        width: 100%;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .brand-subtitle {
        font-size: 0.65rem;
    }
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 8px;
    }

    .container-fluid {
        padding: 0 8px;
    }

    .section {
        padding: 50px 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    .achievement-item {
        padding: 1rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .audio-controls {
        bottom: 1rem;
        right: 1rem;
    }

    .scroll-indicator {
        bottom: 1rem;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .brand-subtitle {
        font-size: 0.6rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 5px;
    }

    .container-fluid {
        padding: 0 5px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .brand-text {
        font-size: 1rem;
    }

    .brand-subtitle {
        font-size: 0.55rem;
    }
}

@media screen and (max-width: 320px) {

    .container,
    .container-fluid {
        padding: 0 5px;
    }

    .section {
        padding: 40px 0;
    }

    .hero-content,
    .about-content,
    .book-showcase,
    .contact-content {
        gap: 1rem;
    }

    .testimonial-card,
    .contact-form-container,
    .achievement-item,
    .contact-item,
    .timeline-content {
        padding: 1rem;
    }
    
    .coming-soon-card {
        padding: clamp(2rem, 4vw, 2.5rem);
        margin: 0 1rem;
    }
    
    .coming-soon-icon {
        font-size: clamp(2.5rem, 5vw, 3rem);
    }
    
    .coming-soon-title {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }
    
    .coming-soon-text {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }

    .brand-text {
        font-size: 0.9rem;
    }

    .brand-subtitle {
        font-size: 0.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

/* High DPI Display Support */
@media screen and (-webkit-min-device-pixel-ratio: 2),
screen and (min-resolution: 192dpi) {

    .book-cover img,
    .author-img,
    .author-avatar img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Responsive Video Background */
@media (max-width: 768px) {
    .hero-video-bg,
    .hero-image-bg {
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-video-overlay,
    .hero-image-overlay {
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(13, 18, 26, 0.65) 45%,
            rgba(13, 18, 26, 0.25) 100%
        );
    }
}

/* Coming Soon Section */
.coming-soon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: clamp(2rem, 5vw, 4rem) 0;
}

.coming-soon-card {
    background: linear-gradient(135deg, #253043 0%, #2e394b 50%, #364152 100%);
    border-radius: 20px;
    border: 2px solid rgba(201, 169, 97, 0.3);
    backdrop-filter: blur(10px);
    padding: clamp(3rem, 6vw, 4rem);
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(201, 169, 97, 0.15);
    transition: all var(--transition-medium);
}

.coming-soon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 0 40px rgba(201, 169, 97, 0.25);
    border-color: rgba(201, 169, 97, 0.5);
}

.coming-soon-icon {
    font-size: clamp(3rem, 6vw, 4rem);
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.coming-soon-title {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--heading-color);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 5px rgba(201, 169, 97, 0.2);
}

.coming-soon-text {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
}

/* Redemption Time LLC page — hero brand image */
.redemption-hero-image-wrap {
    perspective: 1200px;
}

.redemption-hero-image-scene {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: redemption-hero-float 6s ease-in-out infinite;
}

.redemption-hero-image-frame {
    position: relative;
    width: auto;
    max-width: clamp(215px, 27vw, 350px);
    max-height: clamp(255px, 38vh, 410px);
    transform: rotateY(-12deg) rotateX(4deg);
    transform-style: preserve-3d;
    transition: transform var(--transition-medium);
    border-radius: 10px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(6, 10, 18, 0.92), rgba(18, 24, 36, 0.82));
    padding: 3px;
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.5),
        0 0 36px rgba(201, 169, 97, 0.24),
        inset 0 0 0 1px rgba(212, 178, 79, 0.32);
}

.redemption-hero-image-frame img {
    display: block;
    width: 100%;
    height: auto;
    max-height: clamp(249px, 37vh, 404px);
    object-fit: contain;
    object-position: center;
    border-radius: 7px;
}

.redemption-hero-image-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12) 0%,
        transparent 42%,
        transparent 58%,
        rgba(201, 169, 97, 0.18) 100%
    );
    pointer-events: none;
    opacity: 0.85;
    transition: opacity var(--transition-fast);
}

.redemption-hero-image-aura {
    position: absolute;
    inset: clamp(-28px, -4vw, -38px);
    background: radial-gradient(
        ellipse at center,
        rgba(201, 169, 97, 0.22) 0%,
        rgba(139, 90, 90, 0.12) 45%,
        transparent 72%
    );
    border-radius: 24px;
    pointer-events: none;
    animation: storm-aura 4s ease-in-out infinite;
    z-index: -1;
}

.redemption-hero-image-scene:hover .redemption-hero-image-frame {
    transform: rotateY(-6deg) rotateX(2deg) scale(1.03);
}

.redemption-hero-image-scene:hover .redemption-hero-image-shine {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .redemption-hero-image-scene {
        animation: none;
    }

    .redemption-hero-image-frame {
        max-width: clamp(188px, 58vw, 295px);
        max-height: clamp(228px, 46vh, 348px);
        transform: rotateY(-8deg) rotateX(2deg);
    }

    .redemption-hero-image-frame img {
        max-height: clamp(222px, 45vh, 342px);
    }

    .redemption-hero-image-scene:hover .redemption-hero-image-frame {
        transform: rotateY(-8deg) rotateX(2deg) scale(1.02);
    }

    .redemption-hero-image-aura {
        inset: -14px;
    }
}

.section.our-vision-wrap,
.section.redemption-why-wrap {
    background: var(--primary-bg);
    position: relative;
}

.section.our-vision-wrap {
    padding-top: 0;
    padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.section.redemption-why-wrap {
    border-top: 1px solid rgba(212, 178, 79, 0.18);
    padding-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.section.our-vision-wrap .mission-goals-card,
.section.redemption-why-wrap .mission-goals-card {
    max-width: 860px;
    margin: 0 auto;
    padding: clamp(0.9rem, 2vw, 1.15rem) clamp(1.35rem, 3.2vw, 2rem);
    text-align: center;
    background: rgba(20, 25, 34, 0.55);
    border: 1px solid rgba(212, 178, 79, 0.35);
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.section.our-vision-wrap .mission-goals-card:hover,
.section.redemption-why-wrap .mission-goals-card:hover {
    border-color: rgba(212, 178, 79, 0.5);
    box-shadow:
        0 10px 32px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.redemption-section-lead {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 1.9vw, 1.12rem);
    color: var(--warm-gray);
    margin: 1.25rem auto 0;
    max-width: 640px;
    line-height: 1.7;
}

.redemption-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.1rem, 3vw, 1.75rem);
    max-width: 1140px;
    margin: 0 auto;
}

.redemption-service-card {
    text-align: center;
    padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1rem, 2.5vw, 1.35rem);
    background: rgba(46, 57, 75, 0.55);
    border: 1px solid rgba(212, 178, 79, 0.28);
    border-radius: 14px;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.redemption-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 178, 79, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.redemption-service-icon {
    width: clamp(52px, 10vw, 64px);
    height: clamp(52px, 10vw, 64px);
    margin: 0 auto 1.15rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--burnt-orange), var(--deep-sunset));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    color: var(--heading-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(212, 178, 79, 0.35);
}

.redemption-service-title {
    font-family: var(--font-primary);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
    color: var(--heading-color);
    margin: 0 0 1rem;
    line-height: 1.35;
}

.redemption-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.redemption-service-list li {
    position: relative;
    padding-left: 1.1rem;
    margin-bottom: 0.45rem;
    font-family: var(--font-secondary);
    font-size: clamp(0.88rem, 1.6vw, 0.96rem);
    line-height: 1.55;
    color: var(--text-primary);
}

.redemption-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent-gold);
    box-shadow: 0 0 8px rgba(212, 178, 79, 0.6);
}

.redemption-study-list,
.redemption-topics-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    max-width: 1000px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
    text-align: left;
}

.redemption-study-list li,
.redemption-topics-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-family: var(--font-secondary);
    font-size: clamp(0.82rem, 1.45vw, 0.9rem);
    line-height: 1.52;
    color: var(--text-primary);
    padding: 0.65rem 0.85rem;
    background: rgba(46, 57, 75, 0.4);
    border: 1px solid rgba(212, 178, 79, 0.18);
    border-radius: 10px;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.redemption-study-list li:hover,
.redemption-topics-list li:hover {
    border-color: rgba(212, 178, 79, 0.4);
    background: rgba(46, 57, 75, 0.55);
}

.redemption-study-list li:nth-child(11) {
    grid-column: 2;
}

.redemption-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 4vw, 2rem);
    max-width: 960px;
    margin: 0 auto;
}

.redemption-project-card {
    text-align: center;
}

.redemption-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: clamp(2rem, 5vw, 3rem);
}

.redemption-resource-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1.1rem, 3vw, 1.75rem);
    max-width: 1100px;
    margin: 0 auto;
}

.redemption-resource-card {
    grid-column: auto;
}

.redemption-support-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(1.1rem, 3vw, 1.75rem);
    max-width: 1000px;
    margin: 0 auto;
}

.redemption-support-card {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.35rem);
    background: rgba(46, 57, 75, 0.55);
    border: 1px solid rgba(212, 178, 79, 0.28);
    border-radius: 14px;
    transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.redemption-support-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 178, 79, 0.5);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.redemption-support-card .redemption-service-title {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .redemption-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

@media (max-width: 768px) {
    .redemption-study-list,
    .redemption-topics-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .redemption-study-list li:nth-child(11) {
        grid-column: auto;
    }

    .redemption-projects-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .redemption-services-grid,
    .redemption-resource-grid,
    .redemption-support-grid,
    .redemption-study-list,
    .redemption-topics-list {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {

    .custom-cursor,
    .loading-screen,
    .hero-video-bg,
    .hero-video-overlay,
    .nav-toggle,
    .storm-elements {
        display: none !important;
    }

    .hero,
    .section {
        page-break-inside: avoid;
    }

    body {
        background: white !important;
        color: black !important;
    }
}