/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=Cinzel:wght@400;500;600;700;800;900&family=Lato:wght@300;400;700&display=swap');

/* ===== VARIABLES ===== */
:root {
    --forest: #1a3728;
    --forest-mid: #234a38;
    --forest-light: #2f6349;
    --gold: #c9a84c;
    --gold-light: #f0d080;
    --gold-pale: #f7e9bb;
    --cream: #fdf6e3;
    --charcoal: #1c1c1c;
    --ivory: #fffef8;
    --shadow-gold: rgba(201, 168, 76, 0.35);
    --shadow-forest: rgba(26, 55, 40, 0.6);
    --cross-color: rgba(201, 168, 76, 0.08);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--forest);
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
    animation: bodyReveal 1.8s ease-out;
}

@keyframes bodyReveal {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== PARTICLES ===== */
#particles-container {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ===== CANVAS ===== */
#celebrationCanvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
}

/* ===== SECTION BASE ===== */
.section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    z-index: 2;
}

.dark-section {
    background: linear-gradient(160deg, #111e17 0%, var(--forest-mid) 50%, #111e17 100%);
}

.section-container {
    max-width: 1300px;
    width: 100%;
    position: relative;
    z-index: 3;
}

/* ===== HERO SECTION ===== */
#hero {
    background: radial-gradient(ellipse at 50% 30%, #23442f 0%, var(--forest) 60%, #0e1f14 100%);
    overflow: hidden;
}

/* Cross background pattern */
.cross-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--cross-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--cross-color) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.radial-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 160%;
    height: 160%;
    background: radial-gradient(circle at 50% 40%, rgba(201, 168, 76, 0.12) 0%, transparent 60%);
    animation: glowPulse 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

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

/* Presec Badge */
.presec-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 3rem;
    border: 2px solid var(--gold);
    border-radius: 4px;
    background: rgba(201, 168, 76, 0.08);
    backdrop-filter: blur(10px);
    gap: 0.2rem;
    animation: badgeFloat 4s ease-in-out infinite;
}

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

.presec-label {
    font-family: 'Cinzel', serif;
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: var(--gold);
    font-weight: 700;
}

.presec-sub {
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gold-pale);
    letter-spacing: 2px;
}

/* Hero Title */
.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.4rem, 7vw, 6.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease infinite;
}

.name-line {
    font-size: 1.1em;
    text-shadow: none;
    margin-top: 0.15em;
    line-height: 1.1;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Moo Tag */
.moo-tag {
    display: inline-block;
}

.moo-inner {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-style: italic;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 6px;
    position: relative;
    padding: 0 1rem;
}

.moo-inner::before,
.moo-inner::after {
    content: '';
    position: absolute;
    bottom: -4px;
    width: 40%;
    height: 1px;
    background: var(--gold);
    opacity: 0.6;
}

.moo-inner::before { left: 0; }
.moo-inner::after { right: 0; }

.hero-sub {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-style: italic;
    color: var(--gold-pale);
    opacity: 0.85;
    letter-spacing: 2px;
}

.from-block {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--cream);
    opacity: 0.6;
}

.scroll-hint {
    margin-top: 1rem;
    animation: scrollBounce 2.5s ease-in-out infinite;
    opacity: 0.5;
}

.scroll-arrow {
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}

.scroll-hint p {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-pale);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(12px); opacity: 0.85; }
}

/* ===== GALLERY SECTION ===== */
#gallery {
    padding: 8rem 2rem;
}

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

.eyebrow {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 9vw, 7rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.1em;
}

.title-rule {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.title-rule span:first-child,
.title-rule span:last-child {
    display: block;
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.title-rule span:nth-child(2) {
    color: var(--gold);
    font-size: 1rem;
}

/* Photo Showcase */
.photo-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.photo-frame {
    position: relative;
    width: 380px;
    height: 480px;
    padding: 1.5rem;
    background: linear-gradient(145deg, var(--forest-mid), var(--forest));
    border-radius: 6px;
    box-shadow:
        0 30px 80px var(--shadow-forest),
        inset 0 0 40px rgba(201, 168, 76, 0.06);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-frame:hover {
    transform: translateY(-16px) scale(1.03);
}

/* Corner decorations */
.corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.8;
}

.corner.tl { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.corner.tr { top: 10px; right: 10px; border-width: 2px 2px 0 0; }
.corner.bl { bottom: 10px; left: 10px; border-width: 0 0 2px 2px; }
.corner.br { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }

.photo-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.rev-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
    filter: sepia(0.15) brightness(1.05) contrast(1.05);
}

.photo-frame:hover .rev-photo {
    transform: scale(1.08);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(26,55,40,0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.photo-frame:hover .photo-overlay {
    transform: translateY(0);
}

.photo-caption {
    font-family: 'EB Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: var(--gold-light);
    text-align: center;
    font-weight: 600;
}

.frame-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--gold), transparent, var(--gold));
    border-radius: 8px;
    opacity: 0;
    z-index: -1;
    filter: blur(18px);
    transition: opacity 0.5s ease;
}

.photo-frame:hover .frame-glow {
    opacity: 0.5;
}

/* Center Crest */
.center-crest {
    display: flex;
    align-items: center;
    justify-content: center;
}

.crest-outer {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-pale), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 60px var(--shadow-gold),
        0 0 120px rgba(201, 168, 76, 0.15);
    animation: crestSpin 25s linear infinite;
}

.crest-inner {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--forest-mid), var(--forest));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    animation: crestSpin 25s linear infinite reverse;
}

@keyframes crestSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.crest-icon {
    font-size: 2.4rem;
    color: var(--gold);
    line-height: 1;
}

.crest-text {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 3px;
}

/* ===== LEGACY / GRATITUDE CARDS ===== */
#legacy {
    background: linear-gradient(180deg, var(--forest) 0%, #0d1f14 100%);
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 70%, rgba(201,168,76,0.06), transparent 60%);
    pointer-events: none;
}

.chapter-marker {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.ch-num {
    font-family: 'Cinzel', serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--gold), transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
}

.ch-name {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
}

.chapter-marker.light .ch-num {
    opacity: 0.5;
    background: linear-gradient(135deg, var(--gold-light), transparent);
    -webkit-background-clip: text;
    background-clip: text;
}

.chapter-marker.light .ch-name {
    color: var(--gold-light);
}

.content-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3.5rem;
    letter-spacing: 0.03em;
}

.light-title {
    background: linear-gradient(135deg, var(--cream), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
}

/* Legacy Cards Grid */
.legacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.legacy-card {
    padding: 2.5rem 2rem;
    background: rgba(201, 168, 76, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.18);
    border-radius: 6px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.legacy-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.legacy-card:hover {
    background: rgba(201, 168, 76, 0.09);
    transform: translateY(-6px);
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 20px 50px var(--shadow-forest);
}

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

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--gold);
    display: block;
}

.legacy-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.legacy-card p {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--cream);
    opacity: 0.88;
}

/* ===== PERSONAL TRIBUTE ===== */
#tribute-personal {
    padding: 8rem 2rem;
}

.tribute-blocks {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.trib-block {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2.5rem;
    background: rgba(255,255,255,0.03);
    border-radius: 6px;
    border-left: 4px solid var(--gold);
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.trib-block:hover {
    background: rgba(255,255,255,0.07);
    transform: translateX(8px);
    box-shadow: 0 10px 40px var(--shadow-forest);
}

.trib-num {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    min-width: 64px;
}

.trib-body h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.trib-body p {
    font-family: 'EB Garamond', serif;
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--cream);
    opacity: 0.9;
}

/* Tribute Quote */
.tribute-quote {
    max-width: 800px;
    margin: 0 auto;
    padding: 3.5rem 3rem;
    background: linear-gradient(135deg, var(--gold), #a07c2f);
    border-radius: 8px;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 80px var(--shadow-gold);
}

.quote-mark {
    position: absolute;
    top: -15px;
    left: 25px;
    font-family: Georgia, serif;
    font-size: 7rem;
    color: rgba(255,255,255,0.15);
    line-height: 1;
}

.quote-text {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.4rem, 3.5vw, 2.2rem);
    font-weight: 600;
    font-style: italic;
    color: var(--forest);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.quote-attr {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--forest-mid);
    opacity: 0.75;
}

/* ===== VIDEO SECTION ===== */
#creed-video {
    background: linear-gradient(135deg, #0e1a12 0%, var(--forest) 100%);
}

.video-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.video-desc {
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gold-pale);
    margin-bottom: 3rem;
    opacity: 0.85;
    line-height: 1.8;
}

.video-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 30px 80px var(--shadow-forest);
    border: 1px solid rgba(201, 168, 76, 0.25);
}

.video-wrapper video {
    width: 100%;
    display: block;
    border-radius: 10px;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, var(--forest-mid), #0d1b10);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.placeholder-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.play-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.5;
}

.placeholder-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    letter-spacing: 2px;
}

.placeholder-sub {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.45;
}

.placeholder-sub code {
    background: rgba(201,168,76,0.15);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.85rem;
    color: var(--gold-light);
}

/* ===== FINAL TRIBUTE ===== */
#final-tribute {
    background: radial-gradient(ellipse at 50% 50%, #1c3d28 0%, #0b1710 100%);
    overflow: hidden;
}

.tribute-bg-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(201, 168, 76, 0.12), transparent 65%);
    animation: finalPulse 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes finalPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.final-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

.crown-badge {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, var(--forest-mid), var(--forest));
    box-shadow: 0 0 60px var(--shadow-gold);
    animation: crownPulse 4s ease-in-out infinite;
    font-size: 3rem;
    color: var(--gold);
}

@keyframes crownPulse {
    0%, 100% { box-shadow: 0 0 30px var(--shadow-gold); }
    50% { box-shadow: 0 0 80px var(--shadow-gold), 0 0 120px rgba(201,168,76,0.15); }
}

.final-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.2rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.final-line {
    display: block;
    background: linear-gradient(135deg, var(--gold-pale), var(--gold), var(--gold-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s ease infinite;
}

.main-name {
    font-size: 1.1em;
    margin-top: 0.1em;
}

.final-message {
    max-width: 760px;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.final-message p {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    line-height: 1.95;
    color: var(--cream);
    opacity: 0.9;
}

.highlight-line {
    color: var(--gold-pale) !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem) !important;
}

.final-sig {
    margin-top: 1rem;
}

.sig-label {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--cream);
    opacity: 0.6;
    margin-bottom: 0.6rem;
}

.sig-name {
    font-family: 'EB Garamond', serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sig-deco {
    display: flex;
    gap: 2rem;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
}

.sig-deco span {
    animation: twinkle 3s ease-in-out infinite;
}

.sig-deco span:nth-child(2) { animation-delay: 1s; }
.sig-deco span:nth-child(3) { animation-delay: 2s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.4); }
}

.final-date {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.55;
}

/* ===== MUSIC TOGGLE ===== */
.music-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #8a6820);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--shadow-gold);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.music-toggle:hover {
    transform: scale(1.12);
    box-shadow: 0 15px 40px var(--shadow-gold);
}

.music-icon {
    font-size: 1.6rem;
}

/* ===== AOS OVERRIDES ===== */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .photo-showcase {
        flex-direction: column;
    }

    .photo-frame {
        width: 90%;
        max-width: 380px;
    }

    .center-crest {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section { padding: 4rem 1.5rem; }

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

    .trib-block {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
    }

    .trib-num {
        font-size: 2.5rem;
    }

    .tribute-quote {
        padding: 2.5rem 2rem;
    }

    .chapter-marker {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}
