@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Cormorant+Garamond:wght@500;600&family=Satisfy&display=swap');

:root {
    --sc-parchment: #f7f0e3;
    --sc-parchment-deep: #efe4cf;
    --sc-ink: #0f2b3a;
    --sc-ink-soft: #1a3c52;
    --sc-blueprint: #274860;
    --sc-rust: #d47a27;
    --sc-sun: #f1c27d;
    --sc-muted: #5c5a57;
    --sc-line: rgba(15, 43, 58, 0.18);
    --sc-card: rgba(255, 255, 255, 0.75);
    --sc-shadow: rgba(15, 43, 58, 0.18);
    --sc-body-font: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --sc-display-font: 'Cormorant Garamond', 'Times New Roman', serif;
    --sc-script-font: 'Satisfy', 'Brush Script MT', cursive;
}

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

html,
body {
    min-height: 100%;
}

body {
    font-family: var(--sc-body-font);
    background-color: var(--sc-parchment);
    color: var(--sc-ink);
    line-height: 1.65;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.35), transparent 45%),
        radial-gradient(circle at 90% 10%, rgba(221, 165, 112, 0.25), transparent 35%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(239, 228, 207, 0.6) 45%, rgba(233, 220, 193, 0.8) 100%);
    background-attachment: fixed;
}

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

@keyframes noteDrift {
    0%   { transform: translate3d(0, 0, 0) rotate(-6deg); opacity: 0; }
    10%  { opacity: 0.8; }
    60%  { opacity: 0.7; }
    100% { transform: translate3d(40px, -120px, 0) rotate(8deg); opacity: 0; }
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible,
button:focus-visible {
    outline: 2px dashed var(--sc-rust);
    outline-offset: 3px;
}

img {
    max-width: 100%;
    display: block;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

.content-wrap {
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
    position: relative;
}

.section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(0deg, transparent 96%, rgba(0, 0, 0, 0.04) 100%);
    pointer-events: none;
    opacity: 0.25;
}

.section > .content-wrap > h2,
.section > .content-wrap > p:first-of-type {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 760px;
}

.section-light {
    background: rgba(255, 255, 255, 0.65);
}

.blueprint-grid {
    background-image:
        linear-gradient(0deg, var(--sc-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--sc-line) 1px, transparent 1px);
    background-size: 40px 40px;
}

.site-header {
    border-bottom: 1px solid rgba(15, 43, 58, 0.2);
    padding: 1.5rem 0 1rem;
    position: sticky;
    top: 0;
    backdrop-filter: blur(12px);
    background: rgba(247, 240, 227, 0.95);
    z-index: 50;
}

.site-header-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    width: min(1100px, 92vw);
    margin: 0 auto;
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-lockup img {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    border: 3px solid rgba(212, 122, 39, 0.6);
    box-shadow: 0 10px 25px rgba(15, 43, 58, 0.18);
    background: #fff;
}

.brand-text h1 {
    font-family: var(--sc-display-font);
    font-size: 1.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.brand-text .brand-script {
    font-family: var(--sc-script-font);
    font-size: 1.3rem;
    color: var(--sc-rust);
    letter-spacing: 0.05em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.site-nav a,
.nav-dropdown-toggle {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 500;
    color: var(--sc-blueprint);
    transition: background 0.3s, border-color 0.3s;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    border-color: var(--sc-rust);
    background: rgba(212, 122, 39, 0.08);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    border: 1px solid rgba(39, 72, 96, 0.3);
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    background: #fff;
    border: 1px solid rgba(39, 72, 96, 0.25);
    border-radius: 1rem;
    min-width: 220px;
    padding: 0.5rem 0;
    box-shadow: 0 15px 35px rgba(15, 43, 58, 0.2);
    display: none;
}

.nav-dropdown-menu.show {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.5rem 1.25rem;
    color: var(--sc-ink);
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a.active {
    background: rgba(212, 122, 39, 0.15);
}


.hero-songcraft {
    padding: 4.5rem 0 3rem;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.75rem;
    align-items: center;
    justify-items: center;
}

.hero-copy {
    width: 100%;
    max-width: 520px;
    justify-self: center;
    text-align: left;
}

.hero-copy h1 {
    font-family: var(--sc-display-font);
    font-size: clamp(2.7rem, 5vw, 4.1rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    background: linear-gradient(120deg, var(--sc-ink), var(--sc-rust), var(--sc-ink));
    background-size: 250% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerSweep 8s linear infinite;
}

.hero-tagline {
    font-family: var(--sc-script-font);
    font-size: 1.4rem;
    color: var(--sc-rust);
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, rgba(212, 122, 39, 0.4), var(--sc-rust), rgba(212, 122, 39, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerSweep 6s ease-in-out infinite;
}

.shimmer-text {
    background: linear-gradient(120deg, var(--sc-rust), var(--sc-sun), var(--sc-rust));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerSweep 7s linear infinite;
}

.hero-card {
    background: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(39, 72, 96, 0.2);
    box-shadow: 0 20px 50px rgba(15, 43, 58, 0.1);
}

.hero-visual {
    width: 100%;
    max-width: 540px;
    position: relative;
}

.hero-art {
    min-height: 320px;
    border-radius: 1.5rem;
    border: 3px solid rgba(212, 122, 39, 0.4);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-art::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 43, 58, 0.35), rgba(15, 43, 58, 0));
}

.hero-notes {
    position: absolute;
    inset: -10% -5% 0;
    pointer-events: none;
}

.hero-note {
    position: absolute;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: rgba(212, 122, 39, 0.85);
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
    animation: noteDrift 9s linear infinite;
}

.hero-note:nth-child(1) {
    left: 12%;
    bottom: 15%;
}

.hero-note:nth-child(2) {
    left: 25%;
    bottom: 0;
    animation-duration: 11s;
    animation-delay: 1s;
    color: rgba(15, 43, 58, 0.75);
}

.hero-note:nth-child(3) {
    right: 18%;
    bottom: 10%;
    animation-duration: 10s;
    animation-delay: 2.5s;
}

.hero-note:nth-child(4) {
    left: 40%;
    top: 10%;
    animation-duration: 8.5s;
    animation-delay: 1.8s;
    color: rgba(241, 194, 125, 0.8);
}

.hero-note:nth-child(5) {
    right: 8%;
    top: 0;
    animation-duration: 12s;
    animation-delay: 3.2s;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start;
}

.btn-primary,
.btn-secondary {
    border-radius: 999px;
    padding: 0.75rem 1.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.btn-primary {
    background: var(--sc-ink);
    color: var(--sc-parchment);
    box-shadow: 0 12px 25px rgba(15, 43, 58, 0.3);
}

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

.btn-secondary {
    background: transparent;
    border-color: var(--sc-rust);
    color: var(--sc-ink);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.card-panel {
    padding: 1.5rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(39, 72, 96, 0.25);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(15, 43, 58, 0.08);
}

.card-panel h3 {
    font-family: var(--sc-display-font);
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.card-panel p {
    color: var(--sc-muted);
    margin-bottom: 0.75rem;
}

.card-panel .link-arrow {
    color: var(--sc-rust);
    font-weight: 600;
}

.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    text-align: center;
}

.pillar {
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px dashed rgba(39, 72, 96, 0.4);
    background: rgba(247, 240, 227, 0.8);
}

.pillar h4 {
    font-family: var(--sc-display-font);
    font-size: 1.3rem;
}

.wave-divider {
    margin: 4rem auto;
    height: 120px;
    background-image: url('/assets/songcraftrecords2.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    border-radius: 2rem;
    border: 2px dashed rgba(39, 72, 96, 0.2);
}

#listen-page {
    position: fixed;
    inset: 0;
    background: rgba(15, 43, 58, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 200;
}

#listen-page.active {
    opacity: 1;
    pointer-events: auto;
}

#listen-page .listen-panel {
    background: rgba(247, 240, 227, 0.98);
    border-radius: 1.2rem;
    max-width: 700px;
    width: 100%;
    padding: 2rem;
    box-shadow: 0 40px 60px rgba(0, 0, 0, 0.35);
}

.listen-title {
    font-family: var(
