* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'GothicLeaf';

    src: url('fonts/GothicLeaf.ttf') format('truetype');

    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;

    background:url("images/bg_texture.jpg");

    background-size: cover;
    background-position: center top;
    background-attachment: fixed;

    color: #f5d28a;
    font-family: 'Cinzel', Georgia, serif;
}

.page {
    width: min(1200px, 94%);
    margin: 20px auto;
    padding: 24px;
    border: 1px solid #8a5d1f;
    background:
        radial-gradient(circle at top, rgba(150, 80, 20, 0.22), transparent 35%),
        linear-gradient(180deg, #0b0704, #050403);
    box-shadow: 0 0 35px rgba(201, 128, 34, 0.18);
}

.gold-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, #b88736, transparent);
    margin: 20px 0;
}

button,
.buy-button {
    background: linear-gradient(#d7a94f, #8e5c1c);
    color: #140b03;
    border: 1px solid #f0c46b;
    padding: 10px 18px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.button:hover {
    filter: brightness(1.08);

    box-shadow:
        0 0 18px rgba(255,190,80,.25);
}

.section-title {
    text-align: center;
    font-size: 64px;
    margin-top: 40px;
    margin-bottom: 10px;

    background: linear-gradient(#f5d28a, #c89b4a, #8e5c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 8px rgba(255,170,50,.25),
        0 0 25px rgba(255,140,0,.15);

    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: #c89b4a;
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 18px;
}

.title-true-story {
    text-align: center;

    margin-top: 12px;
    margin-bottom: 10px;

    color: #c89b4a;

    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;

    opacity: .85;

    text-shadow:
        0 0 10px rgba(255,170,50,.15);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    border: 1px solid #8a5d1f;
    padding: 30px;
    text-align: center;
    background:
        linear-gradient(180deg,
        rgba(80,40,10,.22),
        rgba(10,6,3,.95));
    box-shadow:
        0 0 20px rgba(255,170,50,.12);
    
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    
    border-color: rgba(220,170,70,.6);

    box-shadow:
        0 0 30px rgba(255,170,50,.08),
        inset 0 0 20px rgba(255,170,50,.05);
}

.product-icon {
    font-size: 54px;
    margin-bottom: 20px;
    color: #d6a54c;
}

.price {
    font-size: 42px;
    margin: 20px 0;
    color: #ffcf73;
}

.sample-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.sample-card {
    border: 1px solid rgba(184,135,54,.35);

    background:
        linear-gradient(
            180deg,
            rgba(45,18,6,.88),
            rgba(18,8,2,.96)
        );

    padding: 24px;
    position: relative;

    min-height: 190px;

    display: flex;
    align-items: center;

    box-shadow:
        inset 0 0 25px rgba(255,170,50,.05),
        0 0 25px rgba(0,0,0,.35);

    transition: .25s;
}

.sample-card:hover {
    border-color: rgba(214,165,76,.6);

    box-shadow:
        inset 0 0 25px rgba(255,170,50,.08),
        0 0 30px rgba(255,170,50,.10);
}

.sample-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,210,120,.6),
            transparent
        );
}

.sample-card h3 {
    font-size: 20px;
    letter-spacing: .5px;
    text-transform: uppercase;

    margin-bottom: 18px;

    color: #f0c46b;

    text-shadow:
        0 0 12px rgba(255,190,90,.18);
}

.sample-card audio {
    width: 100%;

    filter:
        sepia(.8)
        saturate(.8)
        brightness(.92);

    opacity: .88;
}

.narration-sample {
   
      width: auto;
    min-width: 0;
    margin: 0;
}

.hero-image img,
.hero-cover {
    width: 620px !important;
    max-width: none !important;
    height: auto;

    filter:
        drop-shadow(0 0 40px rgba(201,154,74,.42))
        drop-shadow(0 18px 30px rgba(0,0,0,.65));

    transition: .25s;
}



.hero-cover:hover {
    transform: scale(1.02);
}

.video-loading {
    text-align: center;
    font-size: 24px;
    margin: 50px auto;
    color: #f5d28a;
}

.main-video {
    display: none;
    width: 100%;
    max-width: 720px;
    margin: 30px auto;
    border: 1px solid #8a5d1f;
    border-radius: 8px;
    box-shadow: 0 0 35px rgba(255,170,50,.18);
    background: black;
}

.footer {
    text-align:center;
    padding:40px 20px;
    color:#9b6a24;
    font-size:14px;
    opacity:.8;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(255,170,50,.25);
}

.page {
    width: min(1200px, 94%);
    margin: 20px auto;
    padding: 24px;
    border: 1px solid #8a5d1f;
    background:
    radial-gradient(circle at top, rgba(150, 80, 20, 0.22), transparent 35%),
    linear-gradient(180deg, #0b0704, #050403);
    background-size: cover;
    background-position: center top;
    box-shadow: 0 0 35px rgba(201, 128, 34, 0.18);
}

.page::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: url('images/orchestra-left.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom left;
    opacity: 0.08;
    pointer-events: none;
}

.page::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: url('images/choir-right.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    opacity: 0.06;
    pointer-events: none;
}

.shipping-note {
    text-align: center;
    max-width: 700px;
    margin: 20px auto 30px auto;
    line-height: 1.6;
    color: #c99a4a;
    font-size: 15px;
    opacity: .9;
}

.hero-description {
    font-size: 22px;
    line-height: 1.9;
    color: #f3d08a;
    text-align: center;

    text-shadow:
        0 0 12px rgba(255,180,80,.12);

    letter-spacing: .3px;

    max-width: 620px;
    margin: auto;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: .5px;
}

.hero-panel {
    display: grid;
    grid-template-columns: 58% 42%;
    gap: 20px;
    align-items: center;
}

.hero-product {
    text-align: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cover {
    width: 720px;
    max-width: 100%;
    height: auto;

    filter:
        drop-shadow(0 0 40px rgba(201,154,74,.42))
        drop-shadow(0 18px 30px rgba(0,0,0,.65));
}        drop-shadow(0 18px 30px rgba(0,0,0,.65));


.hero-cover:hover {
    transform: scale(1.025);
}

.hero-copy {
    width: 100%;
    min-width: 0;
     text-align: left;
    padding: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(45,18,6,.88),
            rgba(20,8,2,.94)
        );

    border: 1px solid rgba(201,154,74,.18);
}

.hero-kicker {
    color: #d8aa55;
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 22px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.65;
     text-align: left;
}

.hero-description.small {
    font-size: 20px;
    line-height: 1.75;
    color: #e8bd70;
}

.hero-description::first-letter {

    float: left;

    font-family: 'GothicLeaf', serif;

    font-size: 82px;
    line-height: .78;

    margin-right: 12px;
    margin-top: 10px;

    color: #ffcf73;

    text-shadow:
        0 0 12px rgba(255,190,90,.28),
        0 0 28px rgba(255,140,40,.18);
}

@media (max-width: 850px) {
    .hero-panel {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 22px;
    }

    .hero-copy {
        border-left: 0;
        border-top: 1px solid rgba(184, 135, 54, .35);
    }

    .hero-cover {
        width: 480px;
    }
}

.hero-credits {
    margin: 24px auto 30px auto;
    text-align: center;
    font-size: 18px;
    letter-spacing: .5px;
    max-width: 700px;
}

.credit-line {
    margin: 6px 0;
}

.credit-label {
    color: #a8792f;
    font-size: 13px;
    letter-spacing: 2px;
    display: block;
    opacity: .8;
    text-transform: uppercase;
}

.credit-value {
    font-size: 20px;
    color: #f3d08a;
    text-shadow: 0 0 10px rgba(255,170,50,.18);
}

.credit-value em {
    font-style: normal;
    color: #cfa45a;
    font-size: 14px;
    margin-left: 6px;
}

.credit-sub {
    margin-top: 10px;
    font-size: 14px;
    color: #c89b4a;
    letter-spacing: 2px;
    opacity: .75;
}

.title-ornament {
    width: 260px;
    height: 2px;
    margin: 18px auto 0 auto;

    background: linear-gradient(90deg,
        transparent,
        #c89b4a,
        transparent);

    box-shadow: 0 0 10px rgba(255,170,50,.25);
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -30px;

    width: 700px;
    height: 220px;

    background: radial-gradient(circle,
        rgba(255,140,0,.12),
        transparent 70%);

    z-index: -1;
    pointer-events: none;
}

.section-title {
    position: relative;
    text-align: center;
    font-size: 64px;
    margin: 0;

    background: linear-gradient(#f5d28a, #c89b4a, #8e5c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 0 6px rgba(255,170,50,.2),
        0 0 20px rgba(255,140,0,.15);

    letter-spacing: 3px;
    line-height: 1.15;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow:
            0 0 8px rgba(255,170,50,.25),
            0 0 25px rgba(255,140,0,.15);
    }
    50% {
        text-shadow:
            0 0 12px rgba(255,200,80,.35),
            0 0 35px rgba(255,140,0,.25);
    }
}

.title-block {
    position: relative;
    padding: 40px 20px 30px 20px;
    margin-bottom: 20px;

    border: 1px solid rgba(200,150,60,.25);

    background:
        radial-gradient(circle at top,
            rgba(255,170,50,.08),
            transparent 40%),
        linear-gradient(
            180deg,
            rgba(20,10,4,.9),
            rgba(8,5,2,.95)
        );

    box-shadow:
        inset 0 0 40px rgba(255,140,0,.08),
        0 0 25px rgba(255,140,0,.08);
}

.title-block::before {
    content: "";
    position: absolute;
    inset: 0;

    border: 1px solid rgba(255,180,80,.12);

    box-shadow:
        inset 0 0 20px rgba(255,170,50,.12),
        0 0 10px rgba(255,140,0,.08);

    pointer-events: none;
}

.custom-audio {
    display: flex;
    align-items: center;
    gap: 18px;
     width: 100%;
    padding: 18px;
    border: 1px solid #8a5d1f;

    background:
        linear-gradient(
            180deg,
            rgba(70,30,5,.55),
            rgba(20,8,2,.92)
        );

    box-shadow:
        inset 0 0 25px rgba(255,170,50,.06),
        0 0 20px rgba(0,0,0,.45);
}

.play-btn {
    width: 56px;
    height: 56px;
    border-radius: 6px;
    border: 1px solid #d6a54c;

    background:
        linear-gradient(#d7a94f, #8e5c1c);

    color: #1a0d03;
    font-size: 22px;
    cursor: pointer;

    flex-shrink: 0;

    box-shadow:
        0 0 18px rgba(255,190,90,.18);
}

.play-btn:hover {
    transform: scale(1.05);
}

.audio-meta {
    flex: 1;
}

.track-name {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: .5px;
}

.progress-shell {
    width: 100%;
    height: 8px;
    border-radius: 20px;

    background: rgba(255,255,255,.08);
    overflow: hidden;

    margin-bottom: 10px;
}

.progress-fill {
    width: 0%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            #d6a54c,
            #ffdd9b
        );

    box-shadow:
        0 0 12px rgba(255,210,120,.5);
}

.time-display {
    font-size: 15px;
    color: #c89b4a;
}

.footer-quote {
    margin-top: 18px;

    font-size: 13px;
    letter-spacing: 4px;
    text-transform: uppercase;

    color: rgba(220,175,90,.38);

    text-align: center;

    text-shadow:
        0 0 12px rgba(255,180,70,.10),
        0 0 30px rgba(255,140,30,.04);

    opacity: .72;

    position: relative;
}

.footer-quote::before,
.footer-quote::after {
    content: "";

    display: inline-block;

    width: 60px;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(210,170,90,.35),
            transparent
        );

    margin: 0 14px;

    vertical-align: middle;
}

.custom-audio {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
    padding: 18px;
    border: 1px solid #8a5d1f;
    background: linear-gradient(180deg, rgba(70,30,5,.55), rgba(20,8,2,.92));
    box-shadow: inset 0 0 25px rgba(255,170,50,.06), 0 0 20px rgba(0,0,0,.45);
}

.play-btn {
    width: 56px;
    height: 56px;
    border-radius: 10px;
    border: 1px solid #d6a54c;
    background: linear-gradient(#d7a94f, #8e5c1c);
    color: #1a0d03;
    font-size: 22px;
    cursor: pointer;
    flex-shrink: 0;
}

.audio-meta {
    flex: 1;
}

.track-name {
    font-size: 24px;
    line-height: 1.2;
    letter-spacing: .5px;
    color: #f5d28a;
}

.progress-shell {
    width: 100%;
    height: 8px;
    border-radius: 20px;
    background: rgba(255,255,255,.08);
    overflow: hidden;
    margin-top: 12px;
    margin-bottom: 8px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #d6a54c, #ffdd9b);
    box-shadow: 0 0 12px rgba(255,210,120,.5);
}

.time-display {
    font-size: 15px;
    color: #c89b4a;
}

.chapter-panel {
    max-width: 950px;
    margin: 45px auto 20px auto;
    padding: 26px;

    border: 1px solid rgba(184,135,54,.35);

    background:
        linear-gradient(
            180deg,
            rgba(45,18,6,.88),
            rgba(18,8,2,.96)
        );

    box-shadow:
        inset 0 0 25px rgba(255,170,50,.05),
        0 0 25px rgba(0,0,0,.35);
}

.chapter-title {
    text-align: center;
    margin-top: 0;
    margin-bottom: 22px;

    color: #f5d28a;

    font-size: 28px;
    letter-spacing: 2px;
}

.chapter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.chapter-btn {
    width: 100%;

    padding: 14px 16px;

    text-align: left;

    border: 1px solid rgba(184,135,54,.45);

    background:
        linear-gradient(
            180deg,
            rgba(80,40,10,.45),
            rgba(10,6,3,.92)
        );

    color: #f3d08a;

    font-family: inherit;
    font-size: 15px;
    line-height: 1.35;

    cursor: pointer;

    box-shadow:
        inset 0 0 18px rgba(255,170,50,.04);

    transition: .2s;
}

.chapter-btn span {
    display: block;

    margin-bottom: 4px;

    color: #c89b4a;

    font-size: 13px;
    letter-spacing: 1px;
}

.chapter-btn:hover {
    transform: translateY(-2px);

    border-color: rgba(240,196,107,.7);

    box-shadow:
        inset 0 0 22px rgba(255,170,50,.08),
        0 0 22px rgba(255,170,50,.12);
}

.chapter-btn.active-chapter {
    border-color: #f0c46b;

    background:
        linear-gradient(
            180deg,
            rgba(120,65,15,.65),
            rgba(25,10,3,.95)
        );
}

@media (max-width: 700px) {

    body {
        background-attachment: scroll;
    }

    .page {
        width: 96%;
        margin: 8px auto;
        padding: 14px;
    }

    .title-block {
        padding: 26px 12px 22px 12px;
    }

    .section-title {
        font-size: 34px;
        letter-spacing: 1px;
        line-height: 1.15;
    }

    .title-true-story {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .hero-credits {
        font-size: 14px;
        margin: 18px auto 22px auto;
    }

    .credit-value {
        font-size: 16px;
    }

    .hero-panel {
        display: block;
        padding: 16px;
        margin: 28px auto;
    }

    .hero-cover {
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 auto 22px auto;
    }

    .hero-copy {
        padding: 18px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.55;
    }

    .hero-description::first-letter {
        font-size: 56px;
        margin-top: 6px;
    }

    .sample-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sample-card {
        min-height: auto;
        padding: 14px;
    }

    .custom-audio {
        padding: 14px;
        gap: 12px;
    }

    .play-btn {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .track-name {
        font-size: 18px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card {
        padding: 22px 16px;
    }

    .product-icon {
        font-size: 42px;
    }

    .price {
        font-size: 34px;
    }

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

    .chapter-panel {
        padding: 16px;
    }

    .chapter-title {
        font-size: 24px;
    }

    .main-video {
        max-width: 100%;
    }

    .footer-quote::before,
    .footer-quote::after {
        display: none;
    }
}

.track-list {
    max-width: 900px;
    margin: 35px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
    text-align: left;
    color: #f5d28a;
    font-size: 16px;
    line-height: 1.6;
}

.track-list p {
    margin: 0;
}

@media (max-width: 700px) {
    .track-list {
        grid-template-columns: 1fr;
        max-width: 90%;
        font-size: 15px;
    }
}