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

:root {
    --gold: #b8902a;
    --gold-light: #e8c97a;
    --gold-pale: #f5ead0;
    --gold-deep: #7a5c10;
    --cream: #faf6ee;
    --ink: #1a1410;
    --ink-soft: #3d2f22;
    --muted: #7a6a58;
    --border: rgba(184, 144, 42, 0.2);
    --white: #ffffff;
    --bg-section: #f7f2e8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    font-size: 16px;
}

/* ── NAV ── */
:root {
    --maroon: #6b1a1a;
    --maroon-dark: #4a1010;
}

.img {
    width: 100%;
    display: block;
}

nav {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

/* Sticky state — added by JS after 500px scroll */
nav.nav-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.nav-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2.5rem;
}

/* Logo area */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo-icon {
    width: 52px;
    height: 52px;
    /* border-radius: 50%; */
    /* border: 2px solid var(--gold); */
    /* background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gold-light) 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.nav-logo-icon svg {
    width: 26px;
    height: 26px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.nav-logo-sub {
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    list-style: none;
}

.nav-links a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: #444;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    position: relative;
    line-height: 140%;
}

.nav-links a:hover {
    color: var(--maroon);
    background: rgba(107, 26, 26, 0.05);
}

.nav-links a.active {
    color: var(--maroon);
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--maroon);
    border-radius: 2px;
}

/* CTA button */
.nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
    background: var(--maroon) !important;
    color: #fff !important;
    padding: 0.75rem 1.8rem !important;
    border-radius: 6px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    transition: background 0.2s !important;
    margin-left: 30px;
}

.nav-cta:hover {
    background: var(--maroon-dark) !important;
}

.nav-cta-heart {
    font-size: 0.9rem;
    color: #f9a8a8;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

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

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: #fff;
    gap: 0.25rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #444;
    text-decoration: none;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

@media (max-width: 1100px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ── HERO ── */
.hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 4rem;
}

/* Spacer div shown when nav becomes fixed so page doesn't jump */
.nav-spacer {
    display: none;
    height: 80px;
}

.nav-spacer.active {
    display: block;
}

.hero-content {
    padding: 1rem 0 3rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.75rem;
    font-weight: 500;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 300;
    font-style: italic;
    color: var(--muted);
    margin-bottom: 1.75rem;
    letter-spacing: 0.02em;
}

.hero-desc {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-align: justify;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #000;
}

.btn-ghost {
    color: var(--ink);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: left;
    border-right: 1px solid #efdcad;
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-item:last-child {
    border-right: none;
    padding-right: none;
    display: block;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.25rem;
    display: block;
    font-weight: 400;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-frame {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-img-frame::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: -1.5rem;
    bottom: -1.5rem;
    left: 1.5rem;
    border: 1px solid var(--gold);
    border-radius: 2px;
    z-index: 0;
}

.hero-img-placeholder {
    position: relative;
    z-index: 1;
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #e8d9bc 0%, #d4c09a 50%, #c4a870 100%);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 2rem;
}

.hero-img-inner {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='%23b8902a' stroke-width='0.5' stroke-dasharray='4,8' opacity='0.3'/%3E%3C/svg%3E");
    opacity: 1;
}

.hero-img-caption {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(26, 20, 16, 0.7);
    padding: 1.25rem 1.5rem;
    border-top: 2px solid var(--gold);
    width: 100%;
}

.hero-img-caption strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--white);
    display: block;
    letter-spacing: 0.03em;
}

.hero-img-caption span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-top: 0.25rem;
    display: block;
}

.hero-decor-quote {
    position: absolute;
    top: -1rem;
    left: -2rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* ── TICKER ── */
.ticker-bar {
    background: #6b1a1a;
    padding: 0.65rem 0;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    will-change: transform;
}

.ticker-item {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 3rem;
    flex-shrink: 0;
}

.ticker-dot {
    color: rgb(184 144 42);
    margin-right: 3rem;
}

@media (max-width: 768px) {
    .audio-cards {
        grid-template-columns: 1fr 1fr !important;
    }

    .lb-share-panel {
        right: -231% !important;
    }

    .ticker-track {
        animation-duration: 12s;
    }

    .ticker-item {
        font-size: 0.68rem;
        letter-spacing: 0.1em;
        padding: 0 1.1rem;
    }

    .ticker-dot {
        margin-right: 1.1rem;
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── SECTION COMMONS ── */
section {
    padding: 6rem 0;
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.2;
}

.section-title em {
    font-style: italic;
    color: var(--gold);
}

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-box {
    background: linear-gradient(160deg, #d4c09a, #c4a870 60%, #b8902a);
    aspect-ratio: 4/5;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}

.about-img-box::after {
    content: 'Photo';
    position: absolute;
}

.about-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    z-index: 2;
}

.about-accent-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    display: block;
}

.about-accent-text {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 0.2rem;
    display: block;
}

.about-content {
    padding: 2rem 0;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
    margin: 1.5rem 0 2rem;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.highlight-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 0.55rem;
    flex-shrink: 0;
}

/* ── BOOKS ── */
.books-section {
    background: var(--bg-section);
}

.books-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.25rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    text-align: left;
}

.books-header .btn-ghost {
    margin-top: 0.35rem;
}

.books-slider-wrap {
    position: relative;
}

.books-slider {
    overflow: hidden;
    padding-bottom: 1rem;
}

.books-slider .swiper-slide {
    height: auto;
}

.book-card {
    background: var(--white);
    border-radius: 2px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid var(--border);
    height: 100%;
}

.book-card:hover {
    transform: translateY(-6px);
}

.book-cover {
    aspect-ratio: 3 / 4;
    display: flex;
    align-items: flex-end;
    position: relative;
    padding: 0;
}

.book-cover-bg {
    position: relative;
    inset: 0;
}

.book-info {
    position: relative;
    z-index: 1;
    padding: 1rem 1.1rem 1.25rem;
    border-top: 2px solid var(--gold);
}

.book-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 0.3rem;
}

.book-lang {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.books-slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.books-slider-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(61, 47, 34, 0.08);
}

.books-slider-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 144, 42, 0.5);
    color: var(--gold);
}

.books-slider-btn.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ── WORKS / LEGACY ── */
.legacy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
}

/* ── LEGACY ITEMS — base ── */
.legacy-item {
    background: var(--cream);
    padding: 2.5rem;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
    position: relative;
    overflow: hidden;
    --legacy-accent: #6b1f1c;
    --legacy-accent-soft: rgba(107, 31, 28, 0.12);
    --legacy-accent-glow: rgba(107, 31, 28, 0.2);
}

/* ── CREAM cards (even) — hover ── */
.legacy-item:nth-child(even):hover {
    background: #f7efe9;
    transform: translateY(-6px);
}

/* ── MAROON cards (odd) ── */
.legacy-item:nth-child(odd) {
    background: var(--maroon);
}

.legacy-item:nth-child(odd):hover {
    background: var(--maroon-dark);
    transform: translateY(-6px);
}

/* ── ICON ── */
.legacy-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #f4e8e4 0%, #e4c8bf 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.35rem;
    font-size: 1.45rem;
    color: var(--legacy-accent);
    box-shadow: 0 12px 24px var(--legacy-accent-glow);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

/* Maroon card icon keeps same soft background */
.legacy-item:nth-child(odd) .legacy-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
    color: #f4d0cc;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.legacy-icon i {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.legacy-item:hover .legacy-icon {
    transform: translateY(-6px) scale(1.08) rotate(-4deg);
    box-shadow: 0 16px 30px rgba(107, 31, 28, 0.3);
}

.legacy-item:nth-child(odd):hover .legacy-icon {
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.35);
}

.legacy-item:hover .legacy-icon i {
    animation: legacyIconPop 0.65s ease;
}

@keyframes legacyIconPop {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    40% {
        transform: scale(1.2) rotate(8deg);
        opacity: 0.9;
    }

    70% {
        transform: scale(0.96) rotate(-6deg);
    }

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

/* ── NAME ── */
.legacy-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 0.65rem;
    transition: transform 0.3s ease, color 0.3s ease, letter-spacing 0.3s ease;
}

/* Maroon card name: white */
.legacy-item:nth-child(odd) .legacy-name {
    color: #ffffff;
}

/* Cream card hover name */
.legacy-item:nth-child(even):hover .legacy-name {
    color: var(--legacy-accent);
    transform: translateX(6px);
    letter-spacing: 0.02em;
}

/* Maroon card hover name stays white, just shifts */
.legacy-item:nth-child(odd):hover .legacy-name {
    color: #ffffff;
    transform: translateX(6px);
    letter-spacing: 0.02em;
}

/* ── DESC ── */
.legacy-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
    font-weight: 300;
    transition: transform 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}

/* Maroon card desc: soft white */
.legacy-item:nth-child(odd) .legacy-desc {
    color: rgba(255, 255, 255, 0.72);
}

/* Cream card hover desc */
.legacy-item:nth-child(even):hover .legacy-desc {
    color: var(--ink-soft);
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Maroon card hover desc: brighter white */
.legacy-item:nth-child(odd):hover .legacy-desc {
    color: rgba(255, 255, 255, 0.88);
    transform: translateY(-2px);
}

/* ── READ MORE LINK ── */
.legacy-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.35rem;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(107, 31, 28, 0.24);
    background: rgba(255, 255, 255, 0.55);
    color: var(--ink);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

/* Maroon card link: white border, white text */
.legacy-item:nth-child(odd) .legacy-link {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* Cream card link hover */
.legacy-item:nth-child(even) .legacy-link:hover {
    background: var(--legacy-accent);
    color: var(--white);
    border-color: var(--legacy-accent);
    transform: translateX(3px);
}

/* Maroon card link hover: solid white bg, maroon text */
.legacy-item:nth-child(odd) .legacy-link:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    transform: translateX(3px);
}

.legacy-link i {
    font-size: 0.8rem;
}

/* ── QUOTE BANNER ── */
.quote-banner {
    background:
        radial-gradient(circle at 20% 30%, rgba(184, 144, 42, 0.1) 0%, transparent 24%),
        radial-gradient(circle at 80% 70%, rgba(107, 31, 28, 0.18) 0%, transparent 30%),
        linear-gradient(135deg, #241813 0%, #18100d 52%, #221510 100%);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(184, 144, 42, 0.12);
    border-bottom: 1px solid rgba(184, 144, 42, 0.12);
}

.quote-banner::before,
.quote-banner::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.7;
}

.quote-banner::before {
    left: 0;
    background: linear-gradient(41deg, rgba(232, 201, 122, 0.14), transparent 179%), repeating-linear-gradient(207deg, rgba(232, 201, 122, 0.14) 0 1px, transparent 1px 9px);
    mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
}

.quote-banner::after {
    right: 0;
    background:
        linear-gradient(270deg, rgba(232, 201, 122, 0.14), transparent 72%),
        repeating-linear-gradient(180deg,
            rgba(232, 201, 122, 0.14) 0 1px,
            transparent 1px 9px);
    mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
}

.quote-banner .container {
    position: relative;
    /* max-width: 1080px; */
}

.quote-panel {
    position: relative;
    padding: 3.75rem 3rem;
    border-radius: 28px;
    border: 1px solid rgba(232, 201, 122, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
        rgba(18, 12, 9, 0.4);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 28px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
}

.quote-panel::before,
.quote-panel::after {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(232, 201, 122, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.quote-panel::before {
    top: -48px;
    left: -36px;
}

.quote-panel::after {
    right: -42px;
    bottom: -56px;
}

.quote-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 17rem;
    font-weight: 600;
    color: #fff;
    opacity: 0.025;
    pointer-events: none;
    white-space: nowrap;
}

.quote-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.quote-kicker::before,
.quote-kicker::after {
    content: "";
    width: 32px;
    height: 1px;
    background: rgba(232, 201, 122, 0.75);
}

.quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    line-height: 0.6;
    color: rgba(232, 201, 122, 0.26);
    margin-bottom: 0.6rem;
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.85rem, 3.2vw, 2.85rem);
    font-weight: 400;
    font-style: italic;
    color: var(--white);
    line-height: 1.45;
    margin: 0 auto 1.9rem;
    position: relative;
    text-wrap: balance;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
}

.quote-attr {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
}

.quote-divider {
    width: 72px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(232, 201, 122, 0.15), var(--gold), rgba(232, 201, 122, 0.15));
    margin: 1.4rem auto 1.1rem;
}

/* ── AWARDS ── */
.awards-section {
    background: linear-gradient(180deg, #fbf7ef 0%, #f7f1e5 100%);
    padding: 5rem 0;
}

.awards-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.5fr);
    gap: 2.5rem;
    align-items: start;
}

.awards-copy {
    display: flex;
    flex-direction: column;
}

.awards-copy .section-title {
    margin-bottom: 1.25rem;
}

.awards-copy-text {
    font-size: 0.96rem;
    color: var(--muted);
    line-height: 1.9;
    font-weight: 300;
    max-width: 30rem;
}

.awards-portrait {
    margin-top: 2rem;
    position: relative;
    border: 1px solid rgba(184, 144, 42, 0.24);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(245, 234, 208, 0.75));
    padding: 1rem;
}

.awards-portrait::before {
    content: '';
    position: absolute;
    inset: 14px;
    border: 1px solid rgba(184, 144, 42, 0.16);
    pointer-events: none;
}

.awards-portrait-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: linear-gradient(180deg, #efe3ca, #d7b77b);
}

.awards-portrait-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.awards-portrait-caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
}

.awards-portrait-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--ink);
}

.awards-portrait-sub {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
}

.awards-list {
    position: sticky;
    top: 160px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    background: rgba(255, 252, 246, 0.78);
    box-shadow: 0 18px 40px rgba(122, 92, 16, 0.05);
}

.awards-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--border);
    border-top: 1px solid var(--border);
}

.awards-summary-item {
    background: rgba(255, 248, 235, 0.96);
    padding: 1.2rem 1.25rem;
}

.awards-summary-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #6b1a1a;
    margin-bottom: 0.25rem;
    font-weight: 800;
}

.awards-summary-label {
    display: block;
    font-size: 13px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 400;
}

.award-row {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.1rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.25s ease, transform 0.25s ease;
}

.award-row:last-child {
    border-bottom: none;
}

.award-row:hover {
    background: rgba(245, 234, 208, 0.72);
}

.award-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
    width: 72px;
}

.award-name {
    font-size: 1.08rem;
    font-weight: 500;
    color: #6b1a1a;
    margin-bottom: 0.35rem;
}

.award-org {
    font-size: 0.92rem;
    color: var(--muted);
    font-weight: 300;
}

.award-badge {
    background: var(--gold-pale);
    color: #6b1a1a;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 0.9rem;
    border-radius: 2px;
    font-weight: 600;
    white-space: nowrap;
}

/* ── AUDIO / STORIES ── */
.stories-section {
    background: var(--ink);
}

.stories-section .section-title {
    color: var(--white);
}

.stories-section .section-label {
    color: var(--gold-light);
}

.stories-section .section-label::before {
    background: var(--gold-light);
}

.stories-desc {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 150%;
    color: #ccc;
    font-weight: 300;
    max-width: 640px;
}

.audio-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.audio-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    padding: 1.5rem;
    transition: background 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.audio-card:hover {
    background: rgba(184, 144, 42, 0.1);
    border-color: rgba(184, 144, 42, 0.3);
}

.audio-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184, 144, 42, 0.08), transparent 55%);
    pointer-events: none;
}

.audio-type {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.75rem;
    display: block;
}

.audio-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.audio-meta {
    font-size: 16px;
    color: #ccc;
    font-weight: 300;
}

.audio-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.audio-link {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s ease;
}

.audio-link:hover {
    color: var(--gold-light);
}

.audio-play {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-light);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.audio-play:hover {
    color: #fff;
}

.play-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid var(--gold);
    margin-left: 2px;
}

.audio-modal {
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(11, 8, 6, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.audio-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.audio-modal-dialog {
    width: min(960px, 100%);
    background: #130d09;
    border: 1px solid rgba(184, 144, 42, 0.22);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
    border-radius: 4px;
    overflow: hidden;
    transform: translateY(18px) scale(0.98);
    transition: transform 0.28s ease;
}

.audio-modal.is-open .audio-modal-dialog {
    transform: translateY(0) scale(1);
}

.audio-modal-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.1rem 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.audio-modal-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.45rem;
}

.audio-modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    line-height: 1.1;
    color: #fff;
}

.audio-modal-meta {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.audio-modal-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(184, 144, 42, 0.28);
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.audio-modal-close:hover {
    background: #6b1a1a;
    border-color: #6b1a1a;
    transform: scale(1.05);
}

.audio-modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}

.audio-modal-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.audio-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 1.1rem 1.1rem;
    flex-wrap: wrap;
}

.audio-modal-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    max-width: 560px;
}

.audio-modal-open {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.audio-modal-open:hover {
    color: #fff;
}

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    width: 100%;
}

.gallery-thumb-fill {
    width: 100%;
    height: 100%;
    transition: transform 0.4s;
}

.gallery-thumb:hover .gallery-thumb-fill {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 20, 16, 0);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-thumb:hover .gallery-overlay {
    background: rgb(107 26 26 / 58%);
}

.gallery-overlay span {
    color: white;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-thumb:hover .gallery-overlay span {
    opacity: 1;
}

/* ── CONTACT ── */
.contact-section {
    background: var(--bg-section);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 140px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    color: var(--ink);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.contact-info {
    padding-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--gold);
}

.contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-val {
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 400;
}

.contact-val a {
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 400;
    text-decoration: none;
}

.social-row {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* ── FOOTER ── */
footer {
    overflow: hidden;
    background: #2c0a0a;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.6fr 2.4fr 1.3fr;
    gap: 3rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 3rem 2rem 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    /* border-radius: 50%; */
    /* border: 2px solid var(--gold); */
    /* background: linear-gradient(135deg, rgba(184, 144, 42, 0.2), rgba(184, 144, 42, 0.08)); */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-logo-icon svg {
    width: 28px;
    height: 28px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
}

.footer-logo-sub {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}


.footer-tagline {
    font-size: 16px;
    line-height: 140%;
    color: #ccc;
    font-weight: 300;
    max-width: 260px;
}

.footer-socials {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.footer-social-btn:hover {
    background: var(--maroon);
    border-color: var(--maroon);
    color: #fff;
}

.footer-col-title {
    font-family: 'Cormorant Garamond', sans-serif;
    font-size: 27px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
    display: flex;
    /* flex-direction: column; */
    gap: 0.6rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 16px;
    color: #ccc;
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 48%;
}

.footer-links a::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f105';
    color: var(--gold);
    font-size: 1rem;
    line-height: 140%;
}

.footer-links a:hover {
    color: var(--gold);
}

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

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(184, 144, 42, 0.15);
    border: 1px solid rgba(184, 144, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    color: var(--gold);
}

.footer-contact-text {
    font-size: 16px;
    color: #ccc;
    line-height: 140%;
    font-weight: 300;
    margin: 0;
}

.footer-contact-text a {
    color: #ccc;
    text-decoration: none;
}

.footer-newsletter-desc {
    font-size: 16px;
    color: #ccc;
    line-height: 140%;
    margin-bottom: 1rem;
    font-weight: 300;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    overflow: hidden;
}

.footer-newsletter-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    padding: 0.75rem 1rem;
    font-size: 0.83rem;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    outline: none;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form button {
    background: var(--maroon);
    border: none;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-newsletter-form button:hover {
    background: var(--maroon-dark);
}

.footer-bottom-bar {
    overflow: hidden;
    background: rgb(29 4 4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.1rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-copy {
    font-size: 16px;
    color: #ccc;
}

.footer-made {
    font-size: 16px;
    color: #ccc;
}

.footer-made a {
    color: var(--gold);
    text-decoration: none;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 560px) {
    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 6rem 2rem 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-img-frame {
        max-width: 360px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-img-wrap {
        max-width: 400px;
    }

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

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

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

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* .banner-swiper {
                height: 500px;
            } */

    .banner-content {
        position: relative !important;
    }

    .banner-swiper {
        background: #6b1a1a !important;
    }

    .banner-swiper .swiper-button-prev {
        right: 15px !important;
        top: 45% !important;
    }

    .banner-swiper .swiper-button-next {
        right: 15px !important;
        top: 53% !important;
    }

    .banner-swiper .swiper-button-prev,
    .banner-swiper .swiper-button-next {
        display: flex !important;
    }

    .banner-btn-solid,
    .banner-btn-outline {
        font-size: 0.68rem !important;
        padding: 0.35rem 0.9rem !important;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        padding: 3rem 0;
        overflow: hidden;
    }

    .hero-content {
        padding: 1rem 0 1rem !important;
    }

    .hero {
        padding: 3rem 2rem 3rem !important;
    }

    .awards-section {
        padding: 3rem 0 !important;
    }

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

    .stat-item {
        width: 100%;
        border-right: none;
        padding-right: none;
    }

    .stat-item:last-child {
        display: flex !important;
    }

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

    .quote-banner {
        padding: 3rem 0;
    }

    .quote-banner::before,
    .quote-banner::after {
        width: 72px;
        opacity: 0.45;
    }

    .quote-panel {
        padding: 2.5rem 1.4rem;
        border-radius: 22px;
    }

    .quote-panel::before,
    .quote-panel::after {
        width: 88px;
        height: 88px;
    }

    .quote-panel::before {
        top: -30px;
        left: -24px;
    }

    .quote-panel::after {
        right: -26px;
        bottom: -34px;
    }

    .quote-bg-text {
        font-size: 9rem;
    }

    .quote-kicker {
        gap: 0.55rem;
        font-size: 0.66rem;
        letter-spacing: 0.16em;
    }

    .quote-kicker::before,
    .quote-kicker::after {
        width: 20px;
    }

    .quote-mark {
        font-size: 4.1rem;
    }

    .quote-text {
        font-size: clamp(1.45rem, 6vw, 2rem);
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .quote-attr {
        font-size: 0.68rem;
        letter-spacing: 0.14em;
    }

    .awards-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .awards-copy {
        position: static;
    }

    .awards-portrait {
        max-width: 420px;
    }

    .awards-summary {
        grid-template-columns: 1fr;
    }

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

    .award-badge {
        display: none;
    }

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

    .gallery-grid .gallery-thumb[style*="grid-column:1"],
    .gallery-grid .gallery-thumb[style*="grid-row:1 / span 4"] {
        grid-column: 1 / span 2 !important;
        grid-row: auto !important;
    }

    .gallery-grid .gallery-thumb {
        grid-column: auto !important;
        grid-row: auto !important;
    }

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

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

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

    .books-header {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {

    #legacy {
        padding: 3rem 0 0;
    }

    .container {
        padding: 0 1.25rem;
    }

    .nav-inner {
        padding: 1rem 1.25rem;
    }

    .hero {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-decor-quote {
        font-size: 8rem;
    }

    .audio-cards {
        grid-template-columns: 1fr !important;
    }

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

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

    .books-slider-nav {
        margin-top: 1.4rem;
    }

    .books-slider-btn {
        width: 46px;
        height: 46px;
    }

    .legacy-item {
        padding: 1.75rem 1.25rem;
    }

    .award-row {
        padding: 1.25rem 1rem;
    }

    .award-year {
        width: auto;
        font-size: 1.6rem;
    }

    .awards-portrait-caption {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── BANNER SLIDER ── */
/* ── BANNER SWIPER ── */
.banner-swiper {
    position: relative;
    width: 100%;
    background: var(--ink);
    border-bottom: 4px solid #b8902a;
    overflow: hidden;
}

/* Each slide: height = image's natural height */
.banner-swiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* Image drives height — display block, full width, auto height */
.banner-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 0;
    transition: transform 8s ease;
    object-position: center top;
}

/* Ken-Burns scale on active slide */
.banner-swiper .swiper-slide-active img {
    transform: scale(1.06);
}

/* Gradient overlay sits on top of image */
.banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top,
            rgba(26, 20, 16, 0.90) 0%,
            rgba(26, 20, 16, 0.20) 55%,
            transparent 100%);
    pointer-events: none;
}

/* Content anchored to the bottom of the slide */
.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 2.5rem 8rem 3.5rem;
}

.banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 0.85rem;
}

.banner-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.banner-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.75rem);
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.banner-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.banner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s;
}

.banner-link:hover {
    color: var(--white);
    border-color: var(--white);
}

/* Action buttons */
.banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.banner-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: var(--maroon, #6b1a1a);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 0.75rem 1.6rem;
    border-radius: 6px;
    border: 2px solid var(--maroon, #6b1a1a);
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    white-space: nowrap;
}

.banner-btn-solid:hover {
    background: #4a1010;
    border-color: #4a1010;
    transform: translateY(-2px);
}

.banner-btn-solid .btn-arrow {
    font-size: 1rem;
    transition: transform 0.2s;
}

.banner-btn-solid:hover .btn-arrow {
    transform: translateX(4px);
}

.banner-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    padding: 0.75rem 1.6rem;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(6px);
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
    white-space: nowrap;
}

.banner-btn-outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

.banner-btn-outline .btn-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    padding-left: 2px;
    flex-shrink: 0;
}

/* ── Swiper nav arrows ── */
.banner-swiper .swiper-button-prev,
.banner-swiper .swiper-button-next {
    width: 44px;
    height: 44px;
    background: rgba(26, 20, 16, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    border-radius: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s, border-color 0.2s;
}


.banner-swiper .swiper-button-prev {
    left: unset;
    right: 50px;
    top: 43%;
}

.banner-swiper .swiper-button-next {
    left: unset;
    right: 50px;
    top: 50%;
}

.banner-swiper .swiper-button-prev::after,
.banner-swiper .swiper-button-next::after {
    display: none;
}

.banner-swiper .swiper-button-prev i,
.banner-swiper .swiper-button-next i {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 700;
    transition: color 0.2s;
}

.banner-swiper .swiper-button-prev:hover,
.banner-swiper .swiper-button-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.banner-swiper .swiper-button-prev:hover i,
.banner-swiper .swiper-button-next:hover i {
    color: #6b1a1a;
}

/* ── Swiper pagination bullets ── */
.banner-swiper .swiper-pagination {
    bottom: 1.25rem;
}

.banner-swiper .swiper-pagination-bullet {
    width: 28px;
    height: 2px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition: background 0.3s, width 0.3s;
}

.banner-swiper .swiper-pagination-bullet-active {
    width: 44px;
    background: var(--gold);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .banner-content {
        padding: 2rem 4rem 3rem;
    }
}

@media (max-width: 768px) {
    .banner-content {
        padding: 2rem 2rem 3rem;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-swiper .swiper-button-prev,
    .banner-swiper .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .banner-swiper .swiper-button-prev::after,
    .banner-swiper .swiper-button-next::after {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {

    .banner-swiper .swiper-button-prev,
    .banner-swiper .swiper-button-next {
        display: none;
    }
}

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

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

.hero-content>* {
    animation: fadeUp 0.7s ease both;
}

.hero-eyebrow {
    animation-delay: 0.1s;
}

.hero-title {
    animation-delay: 0.22s;
}

.hero-subtitle {
    animation-delay: 0.32s;
}

.hero-desc {
    animation-delay: 0.42s;
}

.hero-actions {
    animation-delay: 0.52s;
}

.hero-stats {
    animation-delay: 0.62s;
}

/* ── GALLERY ── */
.gallery-thumb {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border);
    background: #1a1410;
}

.gallery-thumb-fill {
    width: 100%;
    height: 100%;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-thumb:hover .gallery-thumb-fill {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 20, 16, 0.82) 0%, rgba(26, 20, 16, 0.18) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem 1.1rem;
    gap: 0.35rem;
}

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

.gallery-overlay-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(184, 144, 42, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}

.lb-popup-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
    transform-origin: center center;
    cursor: zoom-in;
}

.lb-tn-fill img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb:hover .gallery-overlay-zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-overlay-zoom svg {
    width: 20px;
    height: 20px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-overlay span {
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.year-badge {
    color: #ffffff;
}

.gallery-overlay-line {
    width: 22px;
    height: 1.5px;
    background: #b8902a;
    position: relative;
    z-index: 1;
}

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

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

    .audio-cards {
        grid-template-columns: 1fr;
    }

    .audio-modal {
        padding: 1rem;
    }

    .audio-modal-topbar {
        padding: 1rem 1rem 0.85rem;
    }

    .audio-modal-title {
        font-size: 1.35rem;
    }

    .audio-modal-footer {
        padding: 0.85rem 1rem 1rem;
    }
}

/* ── LIGHTBOX ── */
.lb-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 8, 0.96);
    z-index: 9000;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lb-backdrop.lb-open {
    opacity: 1;
    pointer-events: all;
}

.lb-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.92) translateY(24px);
    transition: transform 0.4s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.35s ease;
    opacity: 0;
}

.lb-backdrop.lb-open .lb-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.lb-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid rgba(184, 144, 42, 0.25);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
    max-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
}

.lb-swatch {
    min-width: 560px;
    min-height: 400px;
    max-width: 80vw;
    max-height: 72vh;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.lb-image-wrap.lb-zoomed .lb-swatch {
    transform: scale(1.02);
    cursor: grab;
}

.lb-image-wrap.lb-zoomed {
    touch-action: none;
}

.lb-image-wrap.lb-zoomed .lb-popup-img {
    cursor: grab;
}

.lb-image-wrap.lb-dragging .lb-popup-img {
    cursor: grabbing;
}

.lb-topbar {
    position: absolute;
    top: -3.5rem;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.25rem;
}

.lb-counter {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Outfit', sans-serif;
}

.lb-topbar-actions {
    display: flex;
    gap: 0.4rem;
}

.lb-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(184, 144, 42, 0.3);
    background: rgba(26, 20, 16, 0.6);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
    outline: none;
}

.lb-btn:hover {
    background: #b8902a;
    border-color: #b8902a;
    color: #fff;
    transform: scale(1.08);
}

.lb-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lb-btn-close {
    border-color: rgba(107, 26, 26, 0.45);
}

.lb-btn-close:hover {
    background: #6b1a1a;
    border-color: #6b1a1a;
}

.lb-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(184, 144, 42, 0.35);
    background: rgba(26, 20, 16, 0.7);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    outline: none;
    backdrop-filter: blur(4px);
}

.lb-nav-btn:hover {
    background: #b8902a;
    border-color: #b8902a;
    transform: translateY(-50%) scale(1.1);
}

.lb-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lb-prev {
    left: -4rem;
}

.lb-next {
    right: -4rem;
}

.lb-caption-bar {
    width: 100%;
    padding: 0.85rem 0.25rem 0;
}

.lb-caption-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #fff;
}

.lb-caption-sub {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e8c97a;
    margin-top: 0.2rem;
    font-family: 'Outfit', sans-serif;
}

.lb-thumbstrip {
    display: flex;
    gap: 0.4rem;
    margin-top: 0.85rem;
    padding: 0.35rem;
    background: rgba(26, 20, 16, 0.5);
    border-radius: 4px;
    border: 1px solid rgba(184, 144, 42, 0.12);
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
}

.lb-thumbstrip::-webkit-scrollbar {
    display: none;
}

.lb-tn {
    width: 52px;
    height: 40px;
    border-radius: 2px;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    flex-shrink: 0;
    opacity: 0.5;
    transition: border-color 0.2s, opacity 0.2s;
}

.lb-tn.lb-tn-active {
    border-color: #b8902a;
    opacity: 1;
}

.lb-tn:hover {
    opacity: 0.85;
}

.lb-tn-fill {
    width: 100%;
    height: 100%;
}

.lb-share-panel {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    right: 0;
    background: #1a1410;
    border: 1px solid rgba(184, 144, 42, 0.25);
    border-radius: 8px;
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 20;
}

.lb-share-panel.lb-share-open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lb-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.5rem 0.65rem;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.2s, border-color 0.2s;
    text-decoration: none;
}

.lb-share-btn:hover {
    background: rgba(184, 144, 42, 0.15);
    border-color: rgba(184, 144, 42, 0.35);
}

.lb-share-btn svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.75);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lb-share-btn span {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Outfit', sans-serif;
}

.lb-zoom-toast {
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(184, 144, 42, 0.9);
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

.lb-zoom-toast.lb-toast-show {
    opacity: 1;
}

@media (max-width: 1400px) {
    .nav-links li:last-child a {
        padding: 0.7rem 0.95rem !important;
    }

    .nav-links a {
        font-size: 14px !important;
        padding: 0.4rem 0.45rem !important;
    }

    .nav-logo-name {
        font-size: 1.3rem !important;
    }

    .nav-logo-sub {
        font-size: 0.56rem !important;
    }
}

@media (max-width: 768px) {

    .lb-backdrop {
        align-items: center !important;
    }

    .lb-prev {
        left: -2.5rem;
    }

    .lb-next {
        right: -2.5rem;
    }

    .lb-nav-btn {
        width: 38px;
        height: 38px;
    }

    .lb-swatch {
        min-width: unset !important;
        width: 70vw !important;
        min-height: fit-content !important;
    }

    .lb-thumbstrip {
        display: none;
    }
}

/* ── BOOK PAGE ── */
.book-page {
    --book-bg: #f1e6d4;
    --book-bg-soft: #e2d3bd;
    --book-border: rgba(92, 52, 20, 0.24);
    --book-gold: #8a551f;
    --book-gold-dark: #4f2b12;
    --book-gold-light: #a87333;
    --book-gold-fade: rgba(92, 52, 20, 0.1);
    --book-ink: #1a0f09;
    --book-muted: #5f4630;
    --book-text: #342315;
    --book-player-surface: #fffaf2;
    --book-player-surface-strong: #f5ead6;
    --book-player-shadow: rgba(39, 21, 9, 0.24);
    --book-player-overlay: rgba(39, 21, 9, 0.24);
    --book-serif: 'Cormorant Garamond', serif;
    --book-sans: 'Outfit', sans-serif;
    background: var(--book-bg);
    color: var(--book-text);
    font-family: var(--book-sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.01em;
    margin: 0;
}

.book-page,
.book-page * {
    box-sizing: border-box;
}

.book-page a {
    color: var(--book-gold);
    text-decoration: none;
    transition: color 0.22s ease;
}

.book-page a:hover {
    color: var(--book-gold-dark);
}

.book-banner {
    position: relative;
    overflow: hidden;
    background: #1f1710;
    padding: 0;
}

.book-banner.is-fallback-banner {
    min-height: 320px;
    background:
        radial-gradient(circle at top right, rgba(184, 144, 42, 0.22), transparent 25%),
        linear-gradient(135deg, #2d2117 0%, #1d140e 55%, #24170f 100%);
}

.book-banner-image {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
}

.book-banner-overlay {
    position: absolute;
    inset: 0;
    background: #0000007a;
}

.book-banner-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.book-banner-breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 247, 235, 0.72);
}

.book-banner-breadcrumb a,
.book-banner-breadcrumb span {
    color: inherit;
}

.book-banner-breadcrumb a:hover {
    color: #fff7eb;
}

.book-banner-title {
    margin: 0;
    font-family: var(--book-serif);
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    font-weight: 300;
    line-height: 1.04;
    color: #fff7eb;
    text-shadow: 0 14px 42px rgba(0, 0, 0, 0.28);
}

.book-intro {
    max-width: 1500px;
    margin: 0 auto;
    padding: 68px 48px 64px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 80px;
    align-items: start;
}

.book-kicker {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--book-gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.book-kicker::before {
    content: '';
    width: 26px;
    height: 1px;
    background: var(--book-gold);
}

.book-intro h1 {
    font-family: var(--book-serif);
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 300;
    line-height: 1;
    color: var(--book-ink);
    margin: 0 0 6px;
}

.book-intro h1 em {
    font-style: italic;
    color: var(--book-gold);
}

.book-author {
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--book-muted);
    margin-bottom: 24px;
    font-weight: 500;
    line-height: 1.7;
}

.book-desc {
    font-size: 1rem;
    color: var(--book-text);
    line-height: 1.85;
    margin: 0 0 8px;
    max-width: 640px;
    border-left: 3px solid var(--book-gold);
    padding-left: 18px;
    font-weight: 400;
}

.book-rule {
    width: 48px;
    height: 1px;
    background: var(--book-gold);
    margin: 28px 0;
    opacity: 0.5;
}

.book-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.book-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: rgba(255, 247, 232, 0.52);
    border: 1px solid var(--book-border);
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1.45;
    color: var(--book-gold-dark);
}

.book-chip svg {
    width: 10px;
    height: 10px;
    fill: var(--book-gold);
    flex-shrink: 0;
}

.book-meta {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
    border: 1px solid var(--book-border);
    width: 400px;
    overflow: hidden;
    justify-content: space-between;
}

.book-meta-item {
    padding: 14px 22px;
    border-right: 1px solid var(--book-border);
    text-align: center;
    width: 34%;
}

.book-meta-item:last-child {
    border-right: none;
}

.book-meta-val {
    font-family: var(--book-serif);
    font-size: 2rem;
    color: var(--book-gold);
    font-weight: 600;
    line-height: 1;
}

.book-meta-key {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--book-muted);
    margin-top: 6px;
    font-weight: 400;
}

.book-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--book-gold), var(--book-gold-dark));
    color: #fff !important;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1.3;
    transition: transform 0.22s ease, background 0.22s ease;
    border: none;
    cursor: pointer;
}

.book-download-btn:hover {
    background: var(--book-gold-dark);
    transform: translateY(-2px);
}

.book-download-btn svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
}

.book-cover-col {
    position: relative;
    padding-top: 4px;
}

.book-cover-frame {
    position: relative;
}

.book-cover-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(154, 111, 46, 0.6);
    z-index: 0;
}

.book-cover-frame::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: -12px;
    width: 50%;
    height: 50%;
    border: 1px solid rgba(154, 111, 46, 0.6);
    z-index: 0;
}

.book-cover-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    display: block;
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.13);
}

.book-cover-caption {
    margin-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--book-muted);
    font-weight: 400;
    line-height: 1.6;
}

.book-divider {
    max-width: 1500px;
    margin: -4px auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    overflow: hidden;
}

.book-divider .line {
    flex: 0 0 100%;
    height: 3px;
    background: rgb(184 144 42);
    border-radius: 95px;
}

.book-divider .diamond {
    width: 7px;
    height: 7px;
    background: var(--book-gold);
    transform: rotate(45deg);
    flex-shrink: 0;
}

.book-stories-section {
    padding: 60px 0 100px;
    background:
        radial-gradient(circle at 12% 0%, rgba(138, 85, 31, 0.12), transparent 30%),
        linear-gradient(180deg, #e5d5bd 0%, #d8c5aa 100%);
    border-top: 1px solid var(--book-border);
}

.book-collection-section {
    padding: 50px 0 80px;
    background: linear-gradient(180deg, #eadcc7 0%, #dfceb5 100%);
}

.inner-head {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3.5vw, 2.75rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
}

.book-collection-shell {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px;
}

.book-collection-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.book-collection-header h2 {
    margin: 0;
    font-family: var(--book-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--book-ink);
    line-height: 1.15;
}

.book-collection-header h2 em {
    color: var(--book-gold);
    font-style: italic;
}

.book-collection-count {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5c4728;
    font-weight: 600;
}

.book-collection-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.book-collection-card {
    background: rgba(255, 248, 235, 0.9);
    border: 1px solid rgba(92, 52, 20, 0.18);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(84, 58, 22, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.book-collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(84, 58, 22, 0.12);
    border-color: rgba(154, 111, 46, 0.24);
}

.book-collection-card-media {
    display: block;
    aspect-ratio: 4 / 4.8;
    background: linear-gradient(160deg, #f2e3cc 0%, #e4c694 100%);
    overflow: hidden;
}

.book-collection-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.book-collection-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    font-family: var(--book-serif);
    font-size: 1.6rem;
    line-height: 1.2;
    color: rgba(84, 58, 22, 0.82);
}

.book-collection-card-body {
    padding: 20px 20px 22px;
}

.book-collection-card-body h3 {
    margin: 0 0 16px;
    font-family: var(--book-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--book-ink);
    line-height: 1.18;
}

.book-collection-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--book-gold), var(--book-gold-dark));
    color: #fff !important;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 12px 24px rgba(154, 111, 46, 0.18);
}

.book-collection-card-link:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(154, 111, 46, 0.24);
}

.book-stories-header {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.book-stories-header h2 {
    font-family: var(--book-serif);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--book-ink);
    margin: 0;
    line-height: 1.2;
}

.book-stories-header h2 em {
    font-style: italic;
    color: var(--book-gold);
}

.book-stories-count {
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--book-muted);
    padding-bottom: 4px;
    font-weight: 500;
}

.book-stories-table-wrap {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 48px;
}

.book-stories-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.book-stories-table col.book-col-num {
    width: 58px;
}

.book-stories-table col.book-col-title {
    width: 22%;
}

.book-stories-table col.book-col-sindhi {
    width: 22%;
}

.book-stories-table col.book-col-voice {
    width: 240px;
}

.book-stories-table col.book-col-actions {
    width: 230px;
}

.book-stories-table thead tr {
    border-bottom: 2px solid var(--book-gold-dark);
}

.book-stories-table thead th {
    padding: 10px 14px 12px;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--book-gold-dark);
    text-align: left;
    white-space: nowrap;
}

.book-stories-table thead th.book-th-actions {
    text-align: right;
}

.book-stories-table tbody tr {
    border-bottom: 1px solid var(--book-border);
    transition: background 0.18s ease;
    position: relative;
}

.book-stories-table tbody tr:hover {
    background: rgba(92, 52, 20, 0.075);
}

.book-stories-table tbody tr.is-now-playing {
    background: rgba(92, 52, 20, 0.11);
}

.book-stories-table tbody tr td:first-child {
    box-shadow: inset 3px 0 0 transparent;
    transition: box-shadow 0.2s ease;
}

.book-stories-table tbody tr:hover td:first-child,
.book-stories-table tbody tr.is-now-playing td:first-child {
    box-shadow: inset 3px 0 0 var(--book-gold);
}

.book-stories-table td {
    padding: 18px 14px;
    vertical-align: middle;
}

.book-td-num {
    font-family: var(--book-serif);
    font-size: 24px;
    color: var(--book-gold-light);
    font-weight: 600;
    white-space: nowrap;
}

.book-story-row.is-now-playing .book-td-num::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--book-gold);
    margin-left: 8px;
    animation: book-pulse-dot 1.2s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes book-pulse-dot {

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

    50% {
        opacity: 0.4;
        transform: scale(0.6);
    }
}

.book-td-title h3 {
    font-family: var(--book-serif);
    font-size: 1.45rem;
    color: var(--book-ink);
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    max-width: 26ch;
}

.book-td-title small {
    display: block;
    font-size: 0.88rem;
    color: var(--book-muted);
    font-weight: 400;
    margin-top: 6px;
    letter-spacing: 0.03em;
    line-height: 1.6;
}

.book-td-voice {
    font-size: 0.95rem;
    color: var(--book-muted);
    line-height: 1.65;
}

.book-td-sindhi {
    font-size: 1rem;
    color: var(--book-ink);
    line-height: 1.7;
    font-weight: 500;
}

.book-td-actions {
    text-align: right;
    white-space: nowrap;
}

.book-row-actions {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.book-btn-preview,
.book-btn-full,
.book-btn-download {
    border-radius: 2px;
}

.book-btn-preview {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    border: 1px solid var(--book-gold-light);
    background: transparent;
    color: var(--book-gold);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.book-btn-preview:hover {
    background: var(--book-gold-fade);
    border-color: var(--book-gold);
}

.book-btn-preview svg,
.book-btn-full svg {
    width: 11px;
    height: 11px;
    fill: currentColor;
}

.book-preview-label {
    font-size: 0.68rem;
    color: var(--book-muted);
    margin-left: 1px;
}

.book-btn-full {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--book-gold), var(--book-gold-dark));
    color: #fff;
    border: 1px solid var(--book-gold);
    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.18s ease;
    white-space: nowrap;
}

.book-btn-full:hover {
    background: var(--book-gold-dark);
    border-color: var(--book-gold-dark);
}

.book-btn-download {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border: 1px solid var(--book-border);
    background: transparent;
    color: var(--book-gold-dark);
    cursor: pointer;
    transition: all 0.18s ease;
}

.book-btn-download:hover {
    border-color: var(--book-gold);
    color: var(--book-gold);
}

.book-btn-download svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.book-audio-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(44, 28, 12, 0.24);
    backdrop-filter: blur(10px) saturate(1.02);
    -webkit-backdrop-filter: blur(10px) saturate(1.02);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.book-audio-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.book-audio-overlay.is-open .book-audio-player {
    transform: translateY(0);
}

.book-audio-player {
    width: 100%;
    max-width: 720px;
    background:
        radial-gradient(circle at top right, rgba(200, 164, 106, 0.26), transparent 24%),
        linear-gradient(180deg, #fffdf9 0%, #fbf4e8 50%, #f2e4cf 100%);
    border: 1px solid rgba(154, 111, 46, 0.24);
    border-bottom: none;
    border-radius: 28px 28px 0 0;
    box-shadow: 0 -24px 70px rgba(54, 34, 13, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 0.9, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.book-player-ambient {
    position: absolute;
    top: -90px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200, 164, 106, 0.22) 0%, transparent 72%);
    pointer-events: none;
}

.book-player-close {
    position: absolute;
    top: 14px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(154, 111, 46, 0.18);
    background: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--book-muted);
    font-size: 1.05rem;
    line-height: 1;
    transition: all 0.2s ease;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(84, 58, 22, 0.08);
}

.book-player-close:hover {
    background: #fff;
    color: var(--book-gold-dark);
    border-color: rgba(154, 111, 46, 0.34);
    transform: translateY(-1px);
}

.book-player-handle {
    display: flex;
    justify-content: center;
    padding: 12px 0 0;
}

.book-player-handle-bar {
    width: 38px;
    height: 5px;
    border-radius: 999px;
    background: rgba(154, 111, 46, 0.26);
}

.book-player-top {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 28px 18px;
}

.book-player-artwork {
    width: 84px;
    height: 84px;
    flex-shrink: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(154, 111, 46, 0.16);
    box-shadow: 0 14px 28px rgba(84, 58, 22, 0.12);
    position: relative;
    background: #fff;
}

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

.book-player-artwork-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 52%, rgba(200, 164, 106, 0.18));
    pointer-events: none;
}

.book-player-info {
    flex: 1;
    min-width: 0;
}

.book-player-kicker {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #5f451f;
    margin-bottom: 6px;
    opacity: 1;
}

.book-player-title {
    font-family: var(--book-serif);
    font-size: clamp(1.85rem, 3.8vw, 2.3rem);
    font-weight: 400;
    color: #20160f;
    line-height: 1.08;
    margin-bottom: 7px;
}

.book-player-meta {
    font-size: 0.96rem;
    color: #362818;
    line-height: 1.6;
    font-weight: 600;
}

.book-player-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 28px 20px;
    border: 1px solid rgba(154, 111, 46, 0.24);
    width: calc(100% - 56px);
    overflow: hidden;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 26px rgba(96, 66, 24, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.book-tab-btn {
    padding: 14px 16px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #3b2a18;
    border-right: 1px solid rgba(154, 111, 46, 0.18);
    transition: all 0.18s ease;
    text-shadow: none;
}

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

.book-tab-btn.active {
    background: #a0773a;
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.book-tab-btn:hover:not(.active) {
    background: rgba(154, 111, 46, 0.08);
    color: #2d2115;
}

.book-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    background: rgba(154, 111, 46, 0.14);
    border: 1px solid rgba(154, 111, 46, 0.24);
    border-radius: 20px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4f3818;
    margin: 0 28px 16px;
    font-weight: 600;
}

.book-preview-badge svg {
    width: 10px;
    height: 10px;
    fill: none;
}

.book-progress-area {
    margin: 0 28px 20px;
}

.book-waveform-bar {
    height: 56px;
    background: linear-gradient(180deg, #fffefb, #f4e8d7);
    border: 1px solid rgba(154, 111, 46, 0.2);
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    margin-bottom: 12px;
    touch-action: none;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 20px rgba(84, 58, 22, 0.06);
}

.book-waveform-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(154, 111, 46, 0.3), rgba(200, 164, 106, 0.16));
    transition: width 0.1s linear;
    pointer-events: none;
    border-radius: 14px 0 0 14px;
}

.book-waveform-thumb {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--book-gold-light), var(--book-gold));
    pointer-events: none;
    transition: left 0.1s linear;
    box-shadow: 0 0 10px rgba(200, 164, 106, 0.34);
}

.book-waveform-thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--book-gold);
    box-shadow: 0 6px 16px rgba(154, 111, 46, 0.22);
}

.book-wave-lines {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 8px 10px;
    pointer-events: none;
}

.book-wave-lines span {
    flex: 1;
    border-radius: 2px;
    opacity: 0.95;
}

.book-wave-lines span.is-played {
    background: rgba(154, 111, 46, 0.92);
    opacity: 1;
}

.book-wave-lines span:not(.is-played) {
    background: rgba(206, 186, 154, 0.7);
}

.book-time-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
    color: #2f2114;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.book-player-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 28px;
    margin-bottom: 8px;
}

.book-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #382818;
    transition: color 0.18s ease;
    padding: 6px 0;
    font-weight: 600;
}

.book-nav-btn:hover {
    color: #2d2115;
}

.book-nav-btn svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.book-nav-divider {
    width: 1px;
    height: 20px;
    background: rgba(154, 111, 46, 0.2);
}

.book-player-controls {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px 24px;
    justify-content: center;
}

.book-control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(154, 111, 46, 0.24);
    background: rgba(255, 255, 255, 0.96);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5c421c;
    transition: all 0.18s ease;
    box-shadow: 0 12px 24px rgba(84, 58, 22, 0.1);
}

.book-control-btn:hover {
    border-color: rgba(154, 111, 46, 0.32);
    color: #3b2a16;
    background: #fff;
    transform: translateY(-1px);
}

.book-control-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.book-control-play {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, #b98a45, var(--book-gold-dark));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fffdf8;
    transition: all 0.22s ease;
    box-shadow: 0 14px 34px rgba(154, 111, 46, 0.35), 0 0 0 0 rgba(200, 164, 106, 0.26);
}

.book-control-play:hover {
    transform: scale(1.07);
    box-shadow: 0 16px 38px rgba(154, 111, 46, 0.42), 0 0 0 8px rgba(200, 164, 106, 0.12);
}

.book-control-play.is-playing {
    animation: book-play-pulse 2s ease-in-out infinite;
}

@keyframes book-play-pulse {

    0%,
    100% {
        box-shadow: 0 6px 24px rgba(154, 111, 46, 0.5), 0 0 0 0 rgba(200, 164, 106, 0);
    }

    50% {
        box-shadow: 0 6px 24px rgba(154, 111, 46, 0.5), 0 0 0 8px rgba(200, 164, 106, 0.1);
    }
}

.book-control-play svg {
    width: 22px;
    height: 22px;
    fill: rgb(0 0 0);
    margin-left: 1px;
}

.book-control-play.is-playing .book-icon-play {
    display: none;
}

.book-control-play.is-playing .book-icon-pause {
    display: block !important;
}

.book-icon-pause {
    display: none;
}

.book-player-volume-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(242, 228, 207, 0.42));
}

.book-volume-label {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #43311e;
    flex-shrink: 0;
    font-weight: 600;
}

.book-volume-icon {
    color: #5f451f;
    flex-shrink: 0;
}

.book-volume-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    vertical-align: middle;
}

input[type="range"].book-volume-slider {
    -webkit-appearance: none;
    appearance: none;
    --volume-progress: 100%;
    flex: 1;
    height: 6px;
    background: linear-gradient(to right, var(--book-gold-dark) 0, var(--book-gold-dark) var(--volume-progress), rgba(154, 111, 46, 0.22) var(--volume-progress), rgba(154, 111, 46, 0.22) 100%);
    border-radius: 999px;
    cursor: pointer;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(154, 111, 46, 0.14);
}

input[type="range"].book-volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 3px solid var(--book-gold);
    box-shadow: 0 0 0 4px rgba(200, 164, 106, 0.14), 0 6px 14px rgba(84, 58, 22, 0.14);
    margin-top: -6px;
}

input[type="range"].book-volume-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    border: 3px solid var(--book-gold);
    box-shadow: 0 0 0 4px rgba(200, 164, 106, 0.14), 0 6px 14px rgba(84, 58, 22, 0.14);
}

input[type="range"].book-volume-slider::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: rgba(154, 111, 46, 0.14);
}

.book-upgrade-prompt {
    margin: 0 28px 20px;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 234, 214, 0.96));
    border: 1px solid rgba(154, 111, 46, 0.22);
    border-radius: 16px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    display: none;
    box-shadow: 0 14px 32px rgba(84, 58, 22, 0.12);
}

.book-upgrade-prompt.is-visible {
    display: flex;
}

.book-upgrade-prompt p {
    font-size: 0.95rem;
    color: #342618;
    line-height: 1.65;
    margin: 0;
    font-weight: 500;
}

.book-upgrade-prompt p strong {
    color: var(--book-gold-dark);
}

.book-unlock-btn {
    flex-shrink: 0;
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--book-gold), var(--book-gold-dark));
    color: #fffdf8;
    border: none;
    cursor: pointer;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.18s ease;
    white-space: nowrap;
}

.book-unlock-btn:hover {
    background: linear-gradient(135deg, #b1813c, #6f4d1d);
}

/* Breadcrumb Container */

.breadcrumb-nav {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0px 10px 16px rgba(0, 0, 0, 0.07);
    border-top: 4px solid #804e1d;
    border-bottom: 3px dotted #804e1d8f;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 25px 0 25px 0;
    margin-bottom: 10px;
    list-style: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Items ke beech ka spacing */
.breadcrumb-item {
    display: flex;
    align-items: center;
}

/* Separator (Slashes / ) */
.breadcrumb-item+.breadcrumb-item::before {
    display: inline-block;
    padding-right: 12px;
    padding-left: 12px;
    color: #8c7662;
    /* Light brown separator */
    content: "/";
}

/* Links (Home, Literary Works) */
.breadcrumb-item a {
    color: #5c2c16;
    /* Dark brown color jo aapke buttons/headings se match kare */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

/* Hover Effect */
.breadcrumb-item a:hover {
    color: #8c1d1d;
    /* Maroon color jo "Contact Us" ya logo se inspired hai */
    text-decoration: underline;
}

/* Active Page (Current page: Book) */
.breadcrumb-item.active {
    color: #8c7662;
    /* Thoda muted brown color takki pata chale ye active page hai */
    font-weight: 500;
}

@media (max-width: 880px) {
    .book-banner-content {
        padding: 32px 20px;
    }

    .book-banner-title {
        font-size: clamp(2.2rem, 9vw, 3.4rem);
    }

    .book-intro {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 44px;
    }

    .book-intro h1 {
        font-size: clamp(2.5rem, 7vw, 3.5rem);
    }

    .book-cover-col {
        max-width: 260px;
        margin: 0 auto;
    }

    .book-divider,
    .book-stories-header,
    .book-stories-table-wrap,
    .book-collection-shell {
        padding-left: 20px;
        padding-right: 20px;
    }

    .book-stories-table col.book-col-title {
        width: auto;
    }

    .book-stories-table col.book-col-sindhi {
        width: auto;
    }

    .book-stories-table col.book-col-voice {
        width: auto;
    }

    .book-stories-table col.book-col-actions {
        width: 170px;
    }

    .book-audio-player {
        border-radius: 24px 24px 0 0;
    }

    .book-player-top {
        padding: 16px 20px;
    }

    .book-player-tabs,
    .book-preview-badge {
        margin-left: 20px;
        margin-right: 20px;
    }

    .book-progress-area {
        margin: 0 20px 16px;
    }

    .book-player-controls {
        padding: 0 20px 20px;
    }

    .book-player-volume-row {
        padding: 0 20px 22px;
    }

    .book-upgrade-prompt {
        margin: 0 20px 16px;
    }

    .book-player-nav-row {
        padding: 0 20px;
    }

    .book-collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .book-banner {
        min-height: 240px;
    }

    .book-banner-breadcrumb {
        gap: 8px;
        font-size: 0.66rem;
        letter-spacing: 0.11em;
    }

    #bookPage .book-stories-table-wrap[data-simple-reveal],
    #bookPage .book-story-row[data-simple-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .book-stories-header {
        padding-bottom: 28px;
    }

    .book-stories-header h2 {
        font-size: clamp(1.75rem, 7vw, 2.4rem);
    }

    .book-stories-table,
    .book-stories-table tbody,
    .book-stories-table tr,
    .book-stories-table td {
        display: block;
        width: 100%;
    }

    .book-stories-table colgroup,
    .book-stories-table thead {
        display: none;
    }

    .book-stories-table tbody {
        display: grid;
        gap: 14px;
    }

    .book-stories-table tbody tr {
        background: rgba(255, 255, 255, 0.36);
        border: 1px solid var(--book-border);
        padding: 10px 0;
    }

    .book-stories-table tbody tr td:first-child,
    .book-stories-table tbody tr:hover td:first-child,
    .book-stories-table tbody tr.is-now-playing td:first-child {
        box-shadow: none;
    }

    .book-stories-table td {
        border: 0;
        padding: 8px 14px;
    }

    .book-td-num {
        font-size: 1.92rem;
        color: var(--book-gold);
    }

    .book-td-title small,
    .book-td-sindhi,
    .book-td-voice {
        display: block;
    }

    .book-td-sindhi,
    .book-td-voice {
        padding-top: 2px;
    }

    .book-td-actions {
        text-align: left;
        padding-top: 12px;
    }

    .book-row-actions {
        flex-wrap: wrap;
    }

    .book-btn-preview,
    .book-btn-full {
        flex: 1 1 140px;
        justify-content: center;
    }

    .book-btn-download {
        justify-content: center;
        min-width: 44px;
    }

    .book-player-title,
    .book-player-meta {
        white-space: normal;
    }

    .book-audio-player {
        max-height: min(88vh, 780px);
        overflow-y: auto;
    }

    .book-player-top {
        align-items: flex-start;
    }

    .book-player-title {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .book-player-nav-row {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .book-nav-btn {
        flex: 1 1 42%;
        justify-content: center;
    }

    .book-player-volume-row {
        align-items: center;
    }

    .book-upgrade-prompt {
        flex-direction: column;
        align-items: flex-start;
    }

    .book-collection-header {
        margin-bottom: 26px;
    }

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

@media (max-width: 520px) {
    .book-meta {
        width: 100%;
        flex-wrap: wrap;
    }

    .book-meta-item {
        flex: 1 1 50%;
        min-width: 120px;
    }

    .book-meta-item:last-child {
        border-top: 1px solid var(--book-border);
    }

    .book-preview-label,
    .book-btn-full span {
        display: none;
    }

    .book-player-top {
        gap: 14px;
        align-items: flex-start;
    }

    .book-player-tabs {
        width: calc(100% - 40px);
    }

    .book-tab-btn {
        flex: 1 1 50%;
        text-align: center;
    }

    .book-player-nav-row {
        gap: 12px;
    }

    .book-nav-divider {
        display: none;
    }

    .book-player-controls {
        gap: 10px;
    }

    .book-player-artwork {
        width: 72px;
        height: 72px;
    }

    .book-player-volume-row {
        gap: 10px;
        flex-wrap: wrap;
    }

    .book-volume-label {
        width: 100%;
        order: 3;
        letter-spacing: 0.12em;
    }

    .book-volume-icon {
        order: 1;
    }

    input[type="range"].book-volume-slider {
        flex: 1 1 0;
        order: 2;
    }
}