:root {
  --ink: #11201e;
  --ink-2: #192d2a;
  --paper: #f5f0e5;
  --paper-2: #e9e0cf;
  --gold: #d6aa4b;
  --gold-light: #f0d791;
  --rust: #9a442e;
  --muted: #66716e;
  --line: rgba(17, 32, 30, .16);
  --white: #fffdf8;
  --serif: "Libre Caslon Display", Georgia, serif;
  --sans: "DM Sans", system-ui, sans-serif;
  --shadow: 0 24px 70px rgba(12, 26, 24, .15);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font: 16px/1.72 var(--sans); }
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; transform: translateY(-180%); background: var(--gold); color: var(--ink); padding: .75rem 1rem; border-radius: 8px; font-weight: 700; }
.skip-link:focus { transform: none; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 780px); margin-inline: auto; }
.eyebrow { margin: 0 0 .8rem; color: var(--rust); font-size: .75rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.on-dark .eyebrow, .hero .eyebrow { color: var(--gold-light); }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.08; }
h1 { font-size: clamp(3.25rem, 8vw, 7.8rem); letter-spacing: -.045em; }
h2 { font-size: clamp(2.35rem, 5vw, 4.75rem); letter-spacing: -.035em; }
h3 { font-size: clamp(1.45rem, 2.6vw, 2.2rem); }
p { margin: 0 0 1.2rem; }
.lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); line-height: 1.62; }
.muted { color: var(--muted); }
.serif { font-family: var(--serif); }
.section { padding: clamp(5rem, 9vw, 9rem) 0; position: relative; }
.section-sm { padding: 3.5rem 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-paper { background: var(--white); }
.section-rule { border-top: 1px solid var(--line); }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr); gap: 2rem; align-items: end; margin-bottom: 3.5rem; }
.section-heading > p { margin: 0; color: var(--muted); }
.on-dark, .on-dark .muted { color: var(--paper); }
.on-dark .muted { opacity: .7; }

.site-header { height: 84px; position: fixed; z-index: 100; inset: 0 0 auto; transition: .3s ease; }
.site-header.scrolled, .site-header.solid { background: rgba(16, 27, 26, .94); backdrop-filter: blur(18px); box-shadow: 0 1px 0 rgba(255,255,255,.1); }
.nav { height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; color: var(--paper); }
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; white-space: nowrap; }
.brand-mark { width: 35px; height: 44px; border: 1px solid rgba(240,215,145,.8); border-radius: 4px 10px 10px 4px; position: relative; }
.brand-mark::after { content: "L"; position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--serif); color: var(--gold-light); font-size: 1.45rem; }
.brand-text { display: grid; line-height: 1.1; }
.brand-text strong { font-family: var(--serif); font-size: 1.18rem; font-weight: 400; }
.brand-text small { color: var(--gold-light); text-transform: uppercase; font-size: .58rem; letter-spacing: .18em; }
.nav-links { list-style: none; display: flex; align-items: center; gap: .25rem; margin: 0; padding: 0; }
.nav-links a, .more-button { display: inline-flex; align-items: center; gap: .35rem; padding: .65rem .7rem; color: rgba(255,255,255,.78); text-decoration: none; font-size: .82rem; font-weight: 600; border: 0; background: transparent; cursor: pointer; }
.nav-links a:hover, .nav-links a.active, .more-button:hover { color: var(--gold-light); }
.nav-cta { border: 1px solid rgba(240,215,145,.65)!important; border-radius: 999px; padding-inline: 1rem!important; color: var(--gold-light)!important; }
.more-wrap { position: relative; }
.more-menu { display: none; position: absolute; right: 0; top: calc(100% + 8px); min-width: 205px; padding: .55rem; border: 1px solid rgba(255,255,255,.12); background: var(--ink-2); box-shadow: var(--shadow); border-radius: 12px; }
.more-wrap.open .more-menu { display: grid; }
.more-menu a { border-radius: 8px; }
.more-menu a:hover { background: rgba(255,255,255,.06); }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(255,255,255,.22); background: transparent; color: white; }

.hero { min-height: 830px; height: 100svh; position: relative; display: flex; align-items: end; color: var(--paper); overflow: hidden; background: var(--ink); }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,18,17,.97) 0%, rgba(8,18,17,.83) 44%, rgba(8,18,17,.18) 76%), linear-gradient(0deg, rgba(8,18,17,.8), transparent 52%), url("images/hero_bg.png") center/cover; transform: scale(1.02); }
.hero::after { content: ""; position: absolute; inset: 0; opacity: .16; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E"); }
.hero-inner { position: relative; z-index: 1; padding-bottom: clamp(5rem, 9vh, 8rem); }
.hero-copy { max-width: 940px; }
.hero h1 { max-width: 900px; }
.hero .lead { max-width: 675px; margin-top: 1.6rem; color: rgba(245,240,229,.8); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.story-index { position: absolute; z-index: 2; right: max(24px, calc((100vw - var(--max))/2)); bottom: 7rem; writing-mode: vertical-rl; transform: rotate(180deg); color: rgba(245,240,229,.6); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; min-height: 52px; padding: .85rem 1.25rem; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-size: .85rem; font-weight: 700; letter-spacing: .03em; cursor: pointer; transition: transform .2s, background .2s, border .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--gold); color: var(--ink); }
.button-primary:hover { background: var(--gold-light); }
.button-secondary { border-color: rgba(255,255,255,.5); color: var(--paper); background: rgba(255,255,255,.04); }
.button-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.button-ghost:hover { border-color: var(--rust); }
.button svg, .icon svg { width: 18px; height: 18px; }

.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.portrait-frame { position: relative; padding: 0 0 1.6rem 1.6rem; }
.portrait-frame::before { content: ""; position: absolute; inset: 1.6rem 1.6rem 0 0; border: 1px solid var(--gold); }
.portrait-frame img { position: relative; width: 100%; aspect-ratio: 4/5; object-fit: cover; filter: saturate(.84) contrast(1.05); box-shadow: var(--shadow); }
.copy-stack > * + * { margin-top: 1.35rem; }
.copy-stack .button { margin-top: 1.7rem; }
.dropcap::first-letter { float: left; margin: .08em .12em 0 0; color: var(--rust); font: 4.6rem/.7 var(--serif); }

.book-showcase { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 560px; background: var(--ink); color: var(--paper); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.book-art { display: grid; place-items: center; position: relative; padding: 4rem 2rem; background: radial-gradient(circle at 50% 35%, rgba(214,170,75,.25), transparent 46%), #0c1716; }
.book-art::before { content: "01"; position: absolute; left: 1.5rem; top: 1.15rem; color: var(--gold); font-size: .75rem; letter-spacing: .2em; }
.book-art img { width: min(68%, 285px); transform: rotate(-3deg); box-shadow: -18px 24px 45px rgba(0,0,0,.5); }
.book-copy { padding: clamp(3rem, 7vw, 6.5rem); display: flex; flex-direction: column; justify-content: center; }
.book-copy h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.book-copy p { margin: 1.4rem 0 2rem; color: rgba(245,240,229,.72); max-width: 560px; }
.tag { display: inline-flex; align-self: flex-start; padding: .45rem .7rem; border: 1px solid rgba(214,170,75,.4); border-radius: 999px; color: var(--gold-light); font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); }
.principle { min-height: 330px; padding: 2rem; display: flex; flex-direction: column; border-right: 1px solid var(--line); background: rgba(255,255,255,.22); }
.principle:last-child { border-right: 0; }
.principle-index { color: var(--rust); font-size: .7rem; letter-spacing: .18em; }
.principle h3 { margin-top: auto; }
.principle p { margin: 1rem 0 0; color: var(--muted); }

.newsletter { position: relative; overflow: hidden; background: var(--rust); color: var(--white); }
.newsletter::after { content: "LJM"; position: absolute; right: -1rem; bottom: -5rem; font: 18rem/1 var(--serif); opacity: .055; }
.newsletter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: end; }
.form-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: .75rem; }
.field { display: grid; gap: .45rem; }
.field label { font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.input { width: 100%; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--ink); min-height: 54px; padding: .8rem 1rem; }
textarea.input { min-height: 150px; resize: vertical; }
.newsletter .input { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.1); color: white; }
.newsletter .input::placeholder { color: rgba(255,255,255,.68); }
.form-note { margin: 1rem 0 0; font-size: .78rem; opacity: .72; }
.success-message { padding: 1rem; border: 1px solid rgba(255,255,255,.4); border-radius: 10px; }

.page-hero { min-height: 610px; padding: 160px 0 88px; display: flex; align-items: center; color: var(--paper); background: #0b1715; position: relative; isolation: isolate; overflow: hidden; border-bottom: 4px solid var(--gold); }
.page-hero::before { content: ""; position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(6,15,14,.98) 0%, rgba(6,15,14,.9) 37%, rgba(6,15,14,.56) 66%, rgba(6,15,14,.18) 100%), linear-gradient(0deg, rgba(6,15,14,.72), transparent 55%), var(--page-hero-image) 72% center/cover no-repeat; transform: scale(1.015); }
.page-hero::after { content: attr(data-index); position: absolute; z-index: -1; right: max(12px, calc((100vw - var(--max))/2)); bottom: -3.2rem; color: rgba(255,255,255,.09); font: 20rem/1 var(--serif); letter-spacing: -.08em; }
.page-hero-content { position: relative; }
.page-hero-content::before { content: ""; position: absolute; top: -2rem; left: -2rem; width: 84px; height: 84px; border-top: 1px solid rgba(240,215,145,.58); border-left: 1px solid rgba(240,215,145,.58); }
.page-hero h1 { max-width: 900px; font-size: clamp(3.65rem, 7vw, 7.2rem); text-shadow: 0 10px 35px rgba(0,0,0,.38); }
.page-hero-content > p:not(.eyebrow) { margin-top: 1.35rem; max-width: 690px; color: rgba(245,240,229,.82); font: clamp(1.05rem, 1.6vw, 1.3rem)/1.55 var(--serif); }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero-ornament { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; color: rgba(255,255,255,.58); font-size: .63rem; font-style: normal; letter-spacing: .22em; text-transform: uppercase; }
.page-hero-ornament span { width: 78px; height: 1px; background: var(--gold); }
.page-hero-ornament i { font-style: normal; }
.page-hero-portrait::before { background-position: 72% 33%; }
.page-hero-artwork::before { background-position: 80% 44%; filter: saturate(.82) contrast(1.06); }
.page-hero-workspace::before { background-position: 70% center; }
.page-hero-article::before { background-position: 72% center; filter: saturate(.72) contrast(1.08); }
.page-hero-landscape::before { background-position: center 52%; }

.bio-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 4rem; }
.bio-details p { margin-bottom: 1.3rem; }
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.timeline-item { padding: 2rem 1.4rem 0 0; border-top: 3px solid transparent; margin-top: -2px; }
.timeline-item:hover { border-color: var(--gold); }
.timeline-item h3 { font-size: 1.55rem; margin-bottom: .7rem; }
.timeline-item p { color: var(--muted); }
.quote { padding: clamp(3rem, 7vw, 6rem); background: var(--ink); color: var(--paper); border-radius: var(--radius); }
.quote blockquote { margin: 0; max-width: 900px; font: clamp(2rem, 4.4vw, 4.25rem)/1.16 var(--serif); }
.quote figcaption { margin-top: 2rem; color: var(--gold-light); text-transform: uppercase; font-size: .72rem; letter-spacing: .18em; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.editorial-card { background: var(--white); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: .3s; }
.editorial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.editorial-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; filter: saturate(.78); transition: .4s; }
.editorial-card:hover img { filter: saturate(1); transform: scale(1.02); }
.card-body { padding: 1.8rem; }
.card-date { color: var(--rust); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.card-body h3 { margin: .6rem 0 1rem; }
.text-link { display: inline-flex; gap: .55rem; align-items: center; color: var(--rust); text-decoration: none; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.text-link:hover { text-decoration: underline; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.filter { border: 1px solid var(--line); border-radius: 999px; padding: .7rem 1rem; color: var(--ink); background: transparent; cursor: pointer; }
.filter.active { background: var(--ink); color: var(--paper); }
.gallery-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 1rem; }
.gallery-item { position: relative; border: 0; padding: 0; background: none; cursor: zoom-in; overflow: hidden; border-radius: 14px; }
.gallery-item img { width: 100%; height: 520px; object-fit: cover; transition: .4s; }
.gallery-item:nth-child(2) img { object-fit: contain; background: var(--ink); }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-caption { position: absolute; inset: auto 0 0; padding: 1.5rem; color: white; text-align: left; background: linear-gradient(transparent, rgba(0,0,0,.85)); }
.gallery-item.hidden { display: none; }
.lightbox { display: none; position: fixed; z-index: 500; inset: 0; padding: 6vh 5vw; place-items: center; background: rgba(5,12,11,.95); color: white; }
.lightbox.open { display: grid; }
.lightbox img { max-height: 78vh; max-width: 85vw; object-fit: contain; }
.lightbox p { margin: 1rem 0 0; }
.lightbox-close { position: absolute; right: 24px; top: 18px; color: white; background: none; border: 0; font-size: 2.5rem; cursor: pointer; }

.player-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 1.4rem; align-items: start; }
.player { position: sticky; top: 110px; padding: 2rem; border-radius: var(--radius); color: var(--paper); background: linear-gradient(145deg, #1b302d, #0c1615); box-shadow: var(--shadow); }
.record-wrap { display: grid; place-items: center; padding: 1rem 0 2rem; }
.record { width: min(280px, 74vw); aspect-ratio: 1; border-radius: 50%; padding: 24%; background: repeating-radial-gradient(circle, #111 0 3px, #1f2423 4px 6px); box-shadow: 0 30px 50px rgba(0,0,0,.45); position: relative; }
.record.playing { animation: spin 8s linear infinite; }
.record img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.record::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--paper); inset: 50%; transform: translate(-50%,-50%); }
@keyframes spin { to { transform: rotate(360deg); } }
.track-meta { text-align: center; min-height: 74px; }
.track-meta h2 { font-size: 1.75rem; }
.track-meta p { margin: .5rem 0 0; color: var(--gold-light); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; }
.progress-wrap { display: grid; grid-template-columns: 40px 1fr 40px; gap: .65rem; align-items: center; margin: 1.5rem 0; font-size: .7rem; color: rgba(255,255,255,.65); }
input[type="range"] { accent-color: var(--gold); }
.player-controls { display: flex; justify-content: center; gap: .7rem; }
.player-button { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: white; background: transparent; cursor: pointer; }
.player-button.play { width: 58px; height: 58px; color: var(--ink); background: var(--gold); border-color: var(--gold); font-size: 1.2rem; }
.volume-row { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.volume-row input { flex: 1; }
.download { color: var(--gold-light); font-size: .75rem; text-decoration: none; }
.player-detail-link { width: 100%; margin-top: 1.35rem; border-color: rgba(255,255,255,.28); }
.playlist { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.playlist-head { padding: 1.5rem; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.playlist-head h2 { font-size: 2rem; }
.search { max-width: 230px; min-height: 44px; border: 1px solid var(--line); border-radius: 999px; padding: .6rem 1rem; background: var(--paper); }
.track { width: 100%; display: grid; grid-template-columns: 42px 58px minmax(0,1fr) auto; gap: 1rem; align-items: center; padding: .9rem 1.2rem; text-align: left; background: transparent; border: 0; border-bottom: 1px solid var(--line); cursor: pointer; color: var(--ink); }
.track:last-child { border-bottom: 0; }
.track:hover, .track.active { background: var(--paper); }
.track.active { box-shadow: inset 4px 0 var(--rust); }
.track-index { color: var(--rust); font-size: .75rem; }
.track img { width: 58px; height: 58px; border-radius: 9px; object-fit: cover; }
.track-title { overflow: hidden; }
.track-title strong { display: block; font-family: var(--serif); font-size: 1.15rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.track-title small { color: var(--muted); }
.track-action { color: var(--rust); font-weight: 700; }
.track-description { display: none; grid-column: 2 / -1; color: var(--muted); font-size: .88rem; line-height: 1.6; padding: 0 .5rem .8rem 0; }
.track.active .track-description { display: block; }

.song-page-directory { margin-top: clamp(4rem, 8vw, 7rem); }
.song-directory-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: end; margin-bottom: 2rem; }
.song-directory-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -1rem; }
.song-directory-heading h2 { font-size: clamp(2.4rem, 4.5vw, 4.5rem); }
.song-directory-heading > p:last-child { color: var(--muted); }
.song-directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.song-directory-card { display: grid; grid-template-columns: 42px 72px minmax(0,1fr); gap: 1rem; align-items: center; min-height: 105px; padding: 1rem; color: var(--ink); text-decoration: none; border: 1px solid var(--line); background: var(--white); transition: transform .2s, box-shadow .2s, border-color .2s; }
.song-directory-card:hover { transform: translateY(-3px); border-color: var(--gold); box-shadow: 0 15px 35px rgba(12,26,24,.1); }
.song-directory-card > span { color: var(--rust); font-size: .7rem; letter-spacing: .14em; }
.song-directory-card img { width: 72px; height: 72px; object-fit: cover; }
.song-directory-card strong { font-family: var(--serif); font-size: 1.05rem; line-height: 1.2; }
.song-directory-card small { grid-column: 3; color: var(--rust); font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.song-detail-section { overflow: hidden; }
.dedicated-song { display: grid; grid-template-columns: minmax(300px,.78fr) minmax(0,1.22fr); gap: clamp(3rem, 8vw, 8rem); align-items: center; }
.dedicated-song-art { position: relative; display: grid; place-items: center; padding: clamp(2rem, 5vw, 4.5rem); background: radial-gradient(circle at 50% 35%, rgba(214,170,75,.26), transparent 50%), var(--ink); box-shadow: var(--shadow); }
.dedicated-song-art::after { content: ""; position: absolute; inset: 1.1rem; border: 1px solid rgba(240,215,145,.26); pointer-events: none; }
.dedicated-song-art img { position: relative; z-index: 1; width: min(100%, 380px); aspect-ratio: 1; object-fit: cover; box-shadow: 0 24px 45px rgba(0,0,0,.42); }
.dedicated-song-art span { position: relative; z-index: 1; margin-top: 1.5rem; color: var(--gold-light); font-size: .68rem; letter-spacing: .18em; text-transform: uppercase; }
.dedicated-song-copy h2 { font-size: clamp(3rem, 6vw, 6rem); }
.dedicated-song-copy .lead { margin-top: 1.5rem; color: var(--muted); }
.chapter-audio { width: 100%; margin-top: 1.5rem; accent-color: var(--gold); }
.song-detail-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }
.qr-ready-note { margin-top: 2rem; padding-top: 1.35rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.qr-ready-note strong { color: var(--ink); text-transform: uppercase; letter-spacing: .1em; }
.qr-ready-note span { overflow-wrap: anywhere; }
.song-sequence { padding-block: clamp(3rem, 5vw, 5rem); }
.song-sequence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.song-sequence-grid a { display: grid; gap: .4rem; min-height: 130px; padding: 1.5rem; text-decoration: none; border: 1px solid var(--line); background: var(--paper); }
.song-sequence-grid a:last-child { text-align: right; }
.song-sequence-grid span { color: var(--rust); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.song-sequence-grid strong { align-self: end; font: 1.5rem/1.2 var(--serif); }

.contact-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 5rem; }
.contact-list { display: grid; gap: 1.5rem; margin-top: 2rem; }
.contact-item { padding-bottom: 1.25rem; border-bottom: 1px solid var(--line); }
.contact-item small { display: block; color: var(--rust); text-transform: uppercase; font-size: .68rem; letter-spacing: .14em; }
.contact-item a { font-family: var(--serif); font-size: 1.2rem; text-decoration: none; }
.contact-form { display: grid; gap: 1rem; padding: clamp(1.5rem, 4vw, 3rem); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-success { display: none; padding: 2rem; background: #edf4e9; border-radius: 12px; }

.empty-state { min-height: 390px; display: grid; place-items: center; text-align: center; padding: 3rem; border: 1px solid var(--line); background: var(--white); border-radius: var(--radius); }
.empty-state .stamp { width: 80px; height: 80px; display: grid; place-items: center; border: 1px solid var(--gold); border-radius: 50%; margin: 0 auto 1.5rem; color: var(--rust); font-family: var(--serif); font-size: 2rem; }
.empty-state p { color: var(--muted); }

.article { width: min(calc(100% - 40px), 840px); margin-inline: auto; }
.article-meta { color: var(--rust); font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; }
.article-image { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin: 2rem 0 3rem; border-radius: 14px; box-shadow: var(--shadow); }
.article-copy { font: 1.35rem/1.75 var(--serif); }
.article-back { margin-top: 3rem; }

.social-strip { display: flex; flex-wrap: wrap; gap: .65rem; }
.social-link { display: inline-flex; align-items: center; gap: .45rem; border: 1px solid var(--line); border-radius: 999px; padding: .7rem .9rem; color: inherit; text-decoration: none; font-size: .75rem; font-weight: 700; }
.social-link:hover { border-color: var(--gold); }
.section-dark .social-link { border-color: rgba(255,255,255,.22); }

.site-footer { background: #08110f; color: rgba(245,240,229,.7); padding: 5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .9fr .9fr; gap: 3rem; }
.site-footer h3, .site-footer h4 { color: var(--paper); }
.site-footer h3 { font-size: 1.8rem; }
.site-footer h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-light); }
.footer-blurb { max-width: 330px; margin-top: 1rem; }
.footer-links { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: .55rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 4rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; inset: 84px 0 0; display: none; align-content: start; padding: 2rem 20px; background: rgba(8,17,15,.98); overflow-y: auto; }
  .menu-open .nav-links { display: grid; }
  .nav-links a, .more-button { width: 100%; justify-content: space-between; padding: 1rem; font: 1.45rem var(--serif); border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-cta { margin-top: 1rem; justify-content: center!important; }
  .more-menu { position: static; background: transparent; border: 0; box-shadow: none; padding-left: 1rem; }
  .more-menu a { font: 1rem var(--sans); }
  .section-heading, .split, .newsletter-grid, .bio-details, .contact-grid, .player-layout { grid-template-columns: 1fr; }
  .book-showcase { grid-template-columns: 1fr; }
  .book-art { min-height: 430px; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 2rem 0; }
  .player { position: relative; top: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .song-directory-grid { grid-template-columns: 1fr 1fr; }
  .dedicated-song { grid-template-columns: 1fr; }
  .dedicated-song-art { max-width: 620px; width: 100%; margin-inline: auto; }
}

@media (max-width: 680px) {
  .container, .narrow, .article { width: min(calc(100% - 28px), var(--max)); }
  .brand-text small { display: none; }
  .hero { min-height: 720px; }
  .hero::before { background: linear-gradient(0deg, rgba(8,18,17,.98) 0%, rgba(8,18,17,.74) 72%, rgba(8,18,17,.3)), url("images/hero_bg.png") 64% center/cover; }
  .story-index { display: none; }
  .section { padding: 4.5rem 0; }
  .section-heading { margin-bottom: 2.2rem; }
  .principles, .cards, .gallery-grid, .timeline { grid-template-columns: 1fr; }
  .principle { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle:last-child { border-bottom: 0; }
  .book-art { min-height: 350px; padding: 2.5rem; }
  .form-row, .form-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 590px; padding: 130px 0 64px; align-items: end; }
  .page-hero::before { background: linear-gradient(0deg, rgba(6,15,14,.98) 0%, rgba(6,15,14,.77) 70%, rgba(6,15,14,.38) 100%), var(--page-hero-image) 72% center/cover no-repeat; }
  .page-hero::after { right: 12px; bottom: -1.2rem; font-size: 11rem; }
  .page-hero-content::before { top: -1.2rem; left: -.4rem; width: 54px; height: 54px; }
  .page-hero h1 { font-size: clamp(3rem, 14vw, 4.5rem); }
  .page-hero-content > p:not(.eyebrow) { font-size: 1.05rem; }
  .page-hero-ornament i { display: none; }
  .page-hero-artwork::before { background-position: 78% center; }
  .page-hero-portrait::before { background-position: 62% 32%; }
  .gallery-item img { height: 420px; }
  .playlist-head { align-items: stretch; flex-direction: column; }
  .search { max-width: none; }
  .track { grid-template-columns: 28px 52px minmax(0,1fr); gap: .7rem; padding-inline: .8rem; }
  .track-action { display: none; }
  .track-description { grid-column: 2 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .song-directory-heading, .song-directory-grid, .song-sequence-grid { grid-template-columns: 1fr; }
  .song-directory-heading .eyebrow { grid-column: auto; margin-bottom: -.5rem; }
  .song-sequence-grid a:last-child { text-align: left; }
  .dedicated-song-art { padding: 2rem; }
  .dedicated-song-copy h2 { font-size: 2.9rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto!important; animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  .reveal { opacity: 1; transform: none; }
}

/* Editorial homepage redesign, modeled on the supplied author-site composition. */
.site-header { height: 76px; }
.nav { height: 76px; max-width: 1440px; }
.brand-mark { display: none; }
.brand-text strong { color: var(--gold-light); font-size: 1.26rem; letter-spacing: .13em; text-transform: uppercase; }
.brand-text small { margin-top: .32rem; color: rgba(255,255,255,.82); font-size: .51rem; letter-spacing: .24em; }
.nav-links { gap: .05rem; }
.nav-links a { padding: .55rem .57rem; font: 500 .73rem/1 var(--sans); }
.button { min-height: 46px; padding: .72rem 1.35rem; border-radius: 2px; }

.heritage-hero { min-height: 620px; height: min(72vw, 760px); align-items: center; }
.heritage-hero::before { background: linear-gradient(90deg, rgba(5,13,12,.96) 0%, rgba(5,13,12,.78) 46%, rgba(5,13,12,.23) 75%), linear-gradient(0deg, rgba(5,13,12,.62), transparent 54%), url("images/grannys-porch-hero.jpg") center 52%/cover; }
.heritage-hero .hero-inner { padding-top: 98px; padding-bottom: 2rem; }
.heritage-hero .hero-copy { max-width: 760px; }
.heritage-hero h1 { max-width: 740px; font-size: clamp(3.25rem, 5.75vw, 6.25rem); line-height: .96; letter-spacing: -.035em; }
.heritage-hero h1 em { color: var(--gold-light); font-weight: 400; }
.heritage-hero .lead { max-width: 630px; margin-top: 1.2rem; font-family: var(--serif); font-size: clamp(1rem, 1.45vw, 1.25rem); line-height: 1.45; }
.heritage-hero .hero-actions { margin-top: 1.4rem; }
.heritage-hero .story-index { bottom: 6rem; max-height: 255px; line-height: 2; letter-spacing: .27em; color: rgba(255,255,255,.72); }

.home-author-band { position: relative; overflow: hidden; padding: clamp(2.5rem, 5vw, 5rem) 0; background: var(--paper); }
.home-author-band::after, .home-principles::after { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .16; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 150 150' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.7' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E"); }
.home-author-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .9fr 1.25fr .72fr; gap: clamp(2rem, 4vw, 4.8rem); align-items: center; }
.home-author-photo { position: relative; }
.home-author-photo::after { content: ""; position: absolute; inset: 10% -5% -4% 8%; z-index: -1; border: 1px solid rgba(154,68,46,.28); }
.home-author-photo img { width: 100%; aspect-ratio: 1.28/1; object-fit: cover; object-position: center 36%; filter: sepia(.14) saturate(.76) contrast(1.08); box-shadow: 0 18px 40px rgba(17,32,30,.15); }
.home-author-copy h2 { font-size: clamp(2.5rem, 4vw, 4rem); }
.home-author-copy > p:not(.eyebrow) { margin-top: 1rem; font-family: var(--serif); font-size: 1.05rem; line-height: 1.55; }
.home-author-copy .button { margin-top: .35rem; }
.home-script-quote { margin: 0; color: #3b403e; font: italic clamp(1.25rem, 2.1vw, 1.85rem)/1.45 "Libre Caslon Display", Georgia, serif; transform: rotate(-2deg); }
.home-script-quote cite { display: block; margin-top: 1.15rem; color: var(--rust); font-size: .9rem; text-align: right; }

.home-book-band { position: relative; overflow: hidden; padding: clamp(3rem, 6vw, 5.5rem) 0; color: var(--paper); background: #0a1715; }
.home-book-band::before { content: ""; position: absolute; inset: 0; opacity: .24; background: linear-gradient(90deg, rgba(5,13,12,.92), rgba(5,13,12,.55), rgba(5,13,12,.86)), url("images/gallery_behind_scenes.png") center 52%/cover; filter: saturate(.65); }
.home-book-grid { position: relative; display: grid; grid-template-columns: .78fr 1.4fr .72fr; gap: clamp(2rem, 5vw, 5.5rem); align-items: center; }
.home-book-cover { display: grid; place-items: center; }
.home-book-cover img { width: min(78%, 290px); max-height: 400px; object-fit: cover; transform: rotate(-2.3deg); box-shadow: -20px 24px 42px rgba(0,0,0,.55); }
.home-book-copy h2 { color: var(--gold-light); font-size: clamp(2.7rem, 4.5vw, 4.7rem); }
.home-book-copy > p:not(.eyebrow) { max-width: 570px; margin-top: .9rem; color: rgba(255,255,255,.78); font: 1.1rem/1.5 var(--serif); }
.home-book-copy .hero-actions { margin-top: 1.35rem; }
.home-book-quote { margin: 0; padding-left: 1.4rem; border-left: 2px solid var(--gold); color: var(--gold-light); font: italic clamp(1.25rem, 2vw, 1.8rem)/1.45 var(--serif); }

.home-principles { position: relative; overflow: hidden; padding: clamp(2.8rem, 5vw, 4.8rem) 0; text-align: center; background: var(--paper); }
.home-principles .container { position: relative; z-index: 1; }
.home-principles > .container > h2 { font-size: clamp(2rem, 3.5vw, 3.6rem); font-style: italic; }
.home-principle-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 2.2rem; }
.home-principle-grid article { display: grid; grid-template-columns: 58px 1fr; gap: 1.25rem; padding: .25rem 2.2rem; text-align: left; border-right: 1px solid var(--line); }
.home-principle-grid article:last-child { border: 0; }
.home-principle-grid span { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; color: white; background: linear-gradient(135deg, var(--gold-light), #9b7430); box-shadow: 0 8px 22px rgba(90,63,20,.2); font: 1rem var(--serif); }
.home-principle-grid h3 { font-size: 1.55rem; }
.home-principle-grid p { margin: .35rem 0 0; color: var(--muted); line-height: 1.45; }

.home-newsletter { position: relative; overflow: hidden; padding: 2.5rem 0; color: white; background: #08110f; }
.home-newsletter::before { content: ""; position: absolute; inset: 0; opacity: .2; background: linear-gradient(90deg, rgba(5,13,12,.95), rgba(5,13,12,.5), rgba(5,13,12,.88)), url("images/hero_bg.png") center 43%/cover; }
.home-newsletter-grid { position: relative; display: grid; grid-template-columns: .9fr 1.5fr; gap: 4rem; align-items: center; }
.home-newsletter h2 { font-size: clamp(2.15rem, 3.5vw, 3.5rem); }
.home-newsletter p { margin: .5rem 0 0; max-width: 520px; line-height: 1.45; color: rgba(255,255,255,.78); }
.home-newsletter .form-row { align-items: center; }
.home-newsletter .input { min-height: 46px; border-radius: 0; border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.95); color: var(--ink); }
.home-newsletter .form-note { color: rgba(255,255,255,.65); }

.home-find { padding: clamp(2.5rem, 5vw, 4.5rem) 0; background: var(--white); }
.home-find-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 2.6rem; align-items: center; }
.home-find-copy h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.home-find-copy > p:not(.eyebrow) { color: var(--muted); font-family: var(--serif); line-height: 1.5; }
.home-find-copy .social-strip { gap: .4rem; }
.home-find-copy .social-link { padding: .5rem .65rem; font-size: .65rem; }
.home-image-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: .38rem; }
.home-image-strip img { width: 100%; height: 210px; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.home-image-strip img:nth-child(5) { object-position: center 17%; }

.site-footer { padding: 3rem 0 1.2rem; }
.footer-grid { grid-template-columns: 1.25fr .65fr .75fr 1.15fr; gap: 2.4rem; }
.footer-bottom { margin-top: 2.6rem; }

@media (max-width: 1120px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav-links { position: fixed; inset: 76px 0 0; display: none; align-content: start; padding: 2rem 20px; background: rgba(8,17,15,.98); overflow-y: auto; }
  .menu-open .nav-links { display: grid; }
  .nav-links a { width: 100%; justify-content: space-between; padding: .9rem 1rem; font: 1.25rem var(--serif); border-bottom: 1px solid rgba(255,255,255,.1); }
  .home-author-grid, .home-book-grid { grid-template-columns: .85fr 1.15fr; }
  .home-script-quote, .home-book-quote { grid-column: 1 / -1; max-width: 760px; justify-self: center; text-align: center; }
  .home-script-quote cite { text-align: center; }
  .home-principle-grid article { padding-inline: 1.1rem; }
}

@media (max-width: 760px) {
  .site-header, .nav { height: 70px; }
  .nav-links { top: 70px; }
  .brand-text strong { font-size: .98rem; letter-spacing: .08em; }
  .heritage-hero { min-height: 690px; height: auto; align-items: end; }
  .heritage-hero::before { background: linear-gradient(0deg, rgba(5,13,12,.97) 0%, rgba(5,13,12,.73) 70%, rgba(5,13,12,.32)), url("images/grannys-porch-hero.jpg") 88% center/cover; }
  .heritage-hero .hero-inner { padding-top: 150px; padding-bottom: 3.5rem; }
  .heritage-hero h1 { font-size: clamp(2.85rem, 12vw, 4.2rem); }
  .home-author-grid, .home-book-grid, .home-newsletter-grid, .home-find-grid { grid-template-columns: 1fr; }
  .home-author-photo img { aspect-ratio: 16/10; }
  .home-script-quote, .home-book-quote { grid-column: auto; }
  .home-book-cover img { width: min(64%, 270px); }
  .home-principle-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .home-principle-grid article { padding: 0 0 1.5rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .home-principle-grid article:last-child { padding-bottom: 0; border-bottom: 0; }
  .home-newsletter-grid { gap: 1.5rem; }
  .home-image-strip { grid-template-columns: repeat(2, 1fr); }
  .home-image-strip img { height: 200px; }
  .home-image-strip img:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .brand-text small { font-size: .43rem; letter-spacing: .15em; }
  .heritage-hero .hero-actions, .home-book-copy .hero-actions { display: grid; }
  .heritage-hero .button, .home-book-copy .button { width: 100%; }
  .home-author-copy h2, .home-book-copy h2 { font-size: 2.65rem; }
  .home-image-strip img { height: 160px; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Honeypot field on forms: invisible to people, filled in by spam bots. */
.hp-field{position:absolute!important;left:-10000px!important;width:1px;height:1px;opacity:0;pointer-events:none}
.event-card img{aspect-ratio:16/10;object-fit:cover}

/* Mobile menu. Once the page scrolls, the header gets a frosted blur (backdrop-filter), and a
   blurred element becomes the box that position:fixed children are sized against. That
   squeezed the open menu into the 70px header strip, so the page showed through and over it.
   While the menu is open the header drops the blur, and the menu is a solid, full-screen panel. */
@media (max-width: 1120px) {
  body.menu-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: #101b1a; }
  body.menu-open .nav-links { height: calc(100dvh - 76px); bottom: auto; background: #08110f; }
}
@media (max-width: 760px) {
  body.menu-open .nav-links { height: calc(100dvh - 70px); }
}
